summaryrefslogtreecommitdiff
path: root/xmloff/source/style/xmlnumfi.cxx
blob: bfdf1671a12761a976ee3d914795b66fb0dadf73 (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
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

#include <svl/zforlist.hxx>

#include <svl/zformat.hxx>
#include <svl/numuno.hxx>
#include <i18nlangtag/languagetag.hxx>
#include <tools/color.hxx>
#include <osl/diagnose.h>
#include <rtl/ustrbuf.hxx>
#include <sal/log.hxx>

#include <sax/tools/converter.hxx>

#include <xmloff/xmlement.hxx>
#include <xmloff/xmlnumfi.hxx>
#include <xmloff/xmltkmap.hxx>
#include <xmloff/xmlnmspe.hxx>
#include <xmloff/xmlictxt.hxx>
#include <xmloff/xmlimp.hxx>
#include <xmloff/xmluconv.hxx>
#include <xmloff/nmspmap.hxx>
#include <xmloff/families.hxx>
#include <xmloff/xmltoken.hxx>
#include <xmloff/languagetagodf.hxx>

#include <memory>
#include <vector>

using namespace ::com::sun::star;
using namespace ::xmloff::token;

namespace {

struct SvXMLNumFmtEntry
{
    OUString   aName;
    sal_uInt32  nKey;
    bool        bRemoveAfterUse;

    SvXMLNumFmtEntry( const OUString& rN, sal_uInt32 nK, bool bR ) :
        aName(rN), nKey(nK), bRemoveAfterUse(bR) {}
};

}

class SvXMLNumImpData
{
    SvNumberFormatter*  pFormatter;
    std::unique_ptr<SvXMLTokenMap>      pStylesElemTokenMap;
    std::unique_ptr<SvXMLTokenMap>      pStyleElemTokenMap;
    std::unique_ptr<SvXMLTokenMap>      pStyleAttrTokenMap;
    std::unique_ptr<SvXMLTokenMap>      pStyleElemAttrTokenMap;
    std::unique_ptr<LocaleDataWrapper>  pLocaleData;
    std::vector<SvXMLNumFmtEntry> m_NameEntries;

    uno::Reference< uno::XComponentContext > m_xContext;

public:
    SvXMLNumImpData(
        SvNumberFormatter* pFmt,
        const uno::Reference<uno::XComponentContext>& rxContext );

    SvNumberFormatter*      GetNumberFormatter() const  { return pFormatter; }
    const SvXMLTokenMap&    GetStylesElemTokenMap();
    const SvXMLTokenMap&    GetStyleElemTokenMap();
    const SvXMLTokenMap&    GetStyleAttrTokenMap();
    const SvXMLTokenMap&    GetStyleElemAttrTokenMap();
    const LocaleDataWrapper&    GetLocaleData( LanguageType nLang );
    sal_uInt32              GetKeyForName( const OUString& rName );
    void                    AddKey( sal_uInt32 nKey, const OUString& rName, bool bRemoveAfterUse );
    void                    SetUsed( sal_uInt32 nKey );
    void                    RemoveVolatileFormats();
};

struct SvXMLNumberInfo
{
    sal_Int32   nDecimals           = -1;
    sal_Int32   nInteger            = -1;
    sal_Int32   nExpDigits          = -1;
    sal_Int32   nExpInterval        = -1;
    sal_Int32   nMinNumerDigits     = -1;
    sal_Int32   nMinDenomDigits     = -1;
    sal_Int32   nMaxNumerDigits     = -1;
    sal_Int32   nMaxDenomDigits     = -1;
    sal_Int32   nFracDenominator    = -1;
    sal_Int32   nMinDecimalDigits   = -1;
    sal_Int32   nZerosNumerDigits   = -1;
    sal_Int32   nZerosDenomDigits   = -1;
    bool        bGrouping           = false;
    bool        bDecReplace         = false;
    bool        bExpSign            = true;
    bool        bDecAlign           = false;
    double      fDisplayFactor      = 1.0;
    OUString    aIntegerFractionDelimiter;
    std::map<sal_Int32, OUString> m_EmbeddedElements;
};

namespace {

class SvXMLNumFmtElementContext : public SvXMLImportContext
{
    SvXMLNumFormatContext&  rParent;
    sal_uInt16              nType;
    OUStringBuffer          aContent;
    SvXMLNumberInfo         aNumInfo;
    LanguageType            nElementLang;
    bool                    bLong;
    bool                    bTextual;
    OUString                sCalendar;

public:
                SvXMLNumFmtElementContext( SvXMLImport& rImport, sal_uInt16 nPrfx,
                                    const OUString& rLName,
                                    SvXMLNumFormatContext& rParentContext, sal_uInt16 nNewType,
                                    const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList );

    virtual SvXMLImportContextRef CreateChildContext( sal_uInt16 nPrefix,
                                    const OUString& rLocalName,
                                    const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList ) override;
    virtual void Characters( const OUString& rChars ) override;
    virtual void EndElement() override;

    void    AddEmbeddedElement( sal_Int32 nFormatPos, const OUString& rContent );
};

class SvXMLNumFmtEmbeddedTextContext : public SvXMLImportContext
{
    SvXMLNumFmtElementContext&  rParent;
    OUStringBuffer         aContent;
    sal_Int32                   nTextPosition;

public:
                SvXMLNumFmtEmbeddedTextContext( SvXMLImport& rImport, sal_uInt16 nPrfx,
                                    const OUString& rLName,
                                    SvXMLNumFmtElementContext& rParentContext,
                                    const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList );

    virtual void Characters( const OUString& rChars ) override;
    virtual void EndElement() override;
};

class SvXMLNumFmtMapContext : public SvXMLImportContext
{
    SvXMLNumFormatContext&  rParent;
    OUString           sCondition;
    OUString           sName;

public:
                SvXMLNumFmtMapContext( SvXMLImport& rImport, sal_uInt16 nPrfx,
                                    const OUString& rLName,
                                    SvXMLNumFormatContext& rParentContext,
                                    const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList );

    virtual SvXMLImportContextRef CreateChildContext( sal_uInt16 nPrefix,
                                    const OUString& rLocalName,
                                    const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList ) override;
    virtual void Characters( const OUString& rChars ) override;
    virtual void EndElement() override;
};

class SvXMLNumFmtPropContext : public SvXMLImportContext
{
    SvXMLNumFormatContext&  rParent;
    Color                   m_nColor;
    bool                    bColSet;

public:
                SvXMLNumFmtPropContext( SvXMLImport& rImport, sal_uInt16 nPrfx,
                                    const OUString& rLName,
                                    SvXMLNumFormatContext& rParentContext,
                                    const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList );

    virtual void Characters( const OUString& rChars ) override;
    virtual void EndElement() override;
};

enum SvXMLStyleTokens
{
    XML_TOK_STYLE_TEXT,
    XML_TOK_STYLE_FILL_CHARACTER,
    XML_TOK_STYLE_NUMBER,
    XML_TOK_STYLE_SCIENTIFIC_NUMBER,
    XML_TOK_STYLE_FRACTION,
    XML_TOK_STYLE_CURRENCY_SYMBOL,
    XML_TOK_STYLE_DAY,
    XML_TOK_STYLE_MONTH,
    XML_TOK_STYLE_YEAR,
    XML_TOK_STYLE_ERA,
    XML_TOK_STYLE_DAY_OF_WEEK,
    XML_TOK_STYLE_WEEK_OF_YEAR,
    XML_TOK_STYLE_QUARTER,
    XML_TOK_STYLE_HOURS,
    XML_TOK_STYLE_AM_PM,
    XML_TOK_STYLE_MINUTES,
    XML_TOK_STYLE_SECONDS,
    XML_TOK_STYLE_BOOLEAN,
    XML_TOK_STYLE_TEXT_CONTENT,
    XML_TOK_STYLE_PROPERTIES,
    XML_TOK_STYLE_MAP
};

enum SvXMLStyleAttrTokens
{
    XML_TOK_STYLE_ATTR_NAME,
    XML_TOK_STYLE_ATTR_RFC_LANGUAGE_TAG,
    XML_TOK_STYLE_ATTR_LANGUAGE,
    XML_TOK_STYLE_ATTR_SCRIPT,
    XML_TOK_STYLE_ATTR_COUNTRY,
    XML_TOK_STYLE_ATTR_TITLE,
    XML_TOK_STYLE_ATTR_AUTOMATIC_ORDER,
    XML_TOK_STYLE_ATTR_FORMAT_SOURCE,
    XML_TOK_STYLE_ATTR_TRUNCATE_ON_OVERFLOW,
    XML_TOK_STYLE_ATTR_VOLATILE,
    XML_TOK_STYLE_ATTR_TRANSL_FORMAT,
    XML_TOK_STYLE_ATTR_TRANSL_LANGUAGE,
    XML_TOK_STYLE_ATTR_TRANSL_COUNTRY,
    XML_TOK_STYLE_ATTR_TRANSL_STYLE,
    XML_TOK_STYLE_ATTR_TRANSL_SPELLOUT
};

enum SvXMLStyleElemAttrTokens
{
    XML_TOK_ELEM_ATTR_DECIMAL_PLACES,
    XML_TOK_ELEM_ATTR_MIN_DECIMAL_PLACES,
    XML_TOK_ELEM_ATTR_MIN_INTEGER_DIGITS,
    XML_TOK_ELEM_ATTR_GROUPING,
    XML_TOK_ELEM_ATTR_DISPLAY_FACTOR,
    XML_TOK_ELEM_ATTR_DECIMAL_REPLACEMENT,
    XML_TOK_ELEM_ATTR_DENOMINATOR_VALUE,
    XML_TOK_ELEM_ATTR_MIN_EXPONENT_DIGITS,
    XML_TOK_ELEM_ATTR_EXPONENT_INTERVAL,
    XML_TOK_ELEM_ATTR_FORCED_EXPONENT_SIGN,
    XML_TOK_ELEM_ATTR_MIN_NUMERATOR_DIGITS,
    XML_TOK_ELEM_ATTR_MIN_DENOMINATOR_DIGITS,
    XML_TOK_ELEM_ATTR_MAX_NUMERATOR_DIGITS,
    XML_TOK_ELEM_ATTR_MAX_DENOMINATOR_VALUE,
    XML_TOK_ELEM_ATTR_ZEROS_NUMERATOR_DIGITS,
    XML_TOK_ELEM_ATTR_ZEROS_DENOMINATOR_DIGITS,
    XML_TOK_ELEM_ATTR_INTEGER_FRACTION_DELIMITER,
    XML_TOK_ELEM_ATTR_RFC_LANGUAGE_TAG,
    XML_TOK_ELEM_ATTR_LANGUAGE,
    XML_TOK_ELEM_ATTR_SCRIPT,
    XML_TOK_ELEM_ATTR_COUNTRY,
    XML_TOK_ELEM_ATTR_STYLE,
    XML_TOK_ELEM_ATTR_TEXTUAL,
    XML_TOK_ELEM_ATTR_CALENDAR
};

}

//  standard colors


#define XML_NUMF_COLORCOUNT     10

static const Color aNumFmtStdColors[XML_NUMF_COLORCOUNT] =
{
    COL_BLACK,
    COL_LIGHTBLUE,
    COL_LIGHTGREEN,
    COL_LIGHTCYAN,
    COL_LIGHTRED,
    COL_LIGHTMAGENTA,
    COL_BROWN,
    COL_GRAY,
    COL_YELLOW,
    COL_WHITE
};


//  token maps


// maps for SvXMLUnitConverter::convertEnum

static const SvXMLEnumMapEntry<bool> aStyleValueMap[] =
{
    { XML_SHORT,            false },
    { XML_LONG,             true },
    { XML_TOKEN_INVALID,    false }
};

static const SvXMLEnumMapEntry<bool> aFormatSourceMap[] =
{
    { XML_FIXED,            false },
    { XML_LANGUAGE,         true },
    { XML_TOKEN_INVALID,    false }
};

namespace {

struct SvXMLDefaultDateFormat
{
    NfIndexTableOffset          eFormat;
    SvXMLDateElementAttributes  eDOW;
    SvXMLDateElementAttributes  eDay;
    SvXMLDateElementAttributes  eMonth;
    SvXMLDateElementAttributes  eYear;
    SvXMLDateElementAttributes  eHours;
    SvXMLDateElementAttributes  eMins;
    SvXMLDateElementAttributes  eSecs;
    bool                        bSystem;
};

}

static const SvXMLDefaultDateFormat aDefaultDateFormats[] =
{
    // format                           day-of-week     day             month               year            hours           minutes         seconds         format-source

    { NF_DATE_SYSTEM_SHORT,             XML_DEA_NONE,   XML_DEA_ANY,    XML_DEA_ANY,        XML_DEA_ANY,    XML_DEA_NONE,   XML_DEA_NONE,   XML_DEA_NONE,   true },
    { NF_DATE_SYSTEM_LONG,              XML_DEA_ANY,    XML_DEA_ANY,    XML_DEA_ANY,        XML_DEA_ANY,    XML_DEA_NONE,   XML_DEA_NONE,   XML_DEA_NONE,   true },
    { NF_DATE_SYS_MMYY,                 XML_DEA_NONE,   XML_DEA_NONE,   XML_DEA_LONG,       XML_DEA_SHORT,  XML_DEA_NONE,   XML_DEA_NONE,   XML_DEA_NONE,   false },
    { NF_DATE_SYS_DDMMM,                XML_DEA_NONE,   XML_DEA_LONG,   XML_DEA_TEXTSHORT,  XML_DEA_NONE,   XML_DEA_NONE,   XML_DEA_NONE,   XML_DEA_NONE,   false },
    { NF_DATE_SYS_DDMMYYYY,             XML_DEA_NONE,   XML_DEA_LONG,   XML_DEA_LONG,       XML_DEA_LONG,   XML_DEA_NONE,   XML_DEA_NONE,   XML_DEA_NONE,   false },
    { NF_DATE_SYS_DDMMYY,               XML_DEA_NONE,   XML_DEA_LONG,   XML_DEA_LONG,       XML_DEA_SHORT,  XML_DEA_NONE,   XML_DEA_NONE,   XML_DEA_NONE,   false },
    { NF_DATE_SYS_DMMMYY,               XML_DEA_NONE,   XML_DEA_SHORT,  XML_DEA_TEXTSHORT,  XML_DEA_SHORT,  XML_DEA_NONE,   XML_DEA_NONE,   XML_DEA_NONE,   false },
    { NF_DATE_SYS_DMMMYYYY,             XML_DEA_NONE,   XML_DEA_SHORT,  XML_DEA_TEXTSHORT,  XML_DEA_LONG,   XML_DEA_NONE,   XML_DEA_NONE,   XML_DEA_NONE,   false },
    { NF_DATE_SYS_DMMMMYYYY,            XML_DEA_NONE,   XML_DEA_SHORT,  XML_DEA_TEXTLONG,   XML_DEA_LONG,   XML_DEA_NONE,   XML_DEA_NONE,   XML_DEA_NONE,   false },
    { NF_DATE_SYS_NNDMMMYY,             XML_DEA_SHORT,  XML_DEA_SHORT,  XML_DEA_TEXTSHORT,  XML_DEA_SHORT,  XML_DEA_NONE,   XML_DEA_NONE,   XML_DEA_NONE,   false },
    { NF_DATE_SYS_NNDMMMMYYYY,          XML_DEA_SHORT,  XML_DEA_SHORT,  XML_DEA_TEXTLONG,   XML_DEA_LONG,   XML_DEA_NONE,   XML_DEA_NONE,   XML_DEA_NONE,   false },
    { NF_DATE_SYS_NNNNDMMMMYYYY,        XML_DEA_LONG,   XML_DEA_SHORT,  XML_DEA_TEXTLONG,   XML_DEA_LONG,   XML_DEA_NONE,   XML_DEA_NONE,   XML_DEA_NONE,   false },
    { NF_DATETIME_SYS_DDMMYYYY_HHMM,    XML_DEA_NONE,   XML_DEA_ANY,    XML_DEA_ANY,        XML_DEA_LONG,   XML_DEA_ANY,    XML_DEA_ANY,    XML_DEA_NONE,   false },
    { NF_DATETIME_SYSTEM_SHORT_HHMM,    XML_DEA_NONE,   XML_DEA_ANY,    XML_DEA_ANY,        XML_DEA_ANY,    XML_DEA_ANY,    XML_DEA_ANY,    XML_DEA_NONE,   true },
    { NF_DATETIME_SYS_DDMMYYYY_HHMMSS,  XML_DEA_NONE,   XML_DEA_ANY,    XML_DEA_ANY,        XML_DEA_ANY,    XML_DEA_ANY,    XML_DEA_ANY,    XML_DEA_ANY,    false }
};


//  SvXMLNumImpData


SvXMLNumImpData::SvXMLNumImpData(
    SvNumberFormatter* pFmt,
    const uno::Reference<uno::XComponentContext>& rxContext )
:   pFormatter(pFmt),
    m_xContext(rxContext)
{
    SAL_WARN_IF( !rxContext.is(), "xmloff", "got no service manager" );
}

sal_uInt32 SvXMLNumImpData::GetKeyForName( const OUString& rName )
{
    for (const auto& rObj : m_NameEntries)
    {
        if (rObj.aName == rName)
            return rObj.nKey;              // found
    }
    return NUMBERFORMAT_ENTRY_NOT_FOUND;
}

void SvXMLNumImpData::AddKey( sal_uInt32 nKey, const OUString& rName, bool bRemoveAfterUse )
{
    if ( bRemoveAfterUse )
    {
        //  if there is already an entry for this key without the bRemoveAfterUse flag,
        //  clear the flag for this entry, too

        for (const auto& rObj : m_NameEntries)
        {
            if (rObj.nKey == nKey && !rObj.bRemoveAfterUse)
            {
                bRemoveAfterUse = false;        // clear flag for new entry
                break;
            }
        }
    }
    else
    {
        //  call SetUsed to clear the bRemoveAfterUse flag for other entries for this key
        SetUsed( nKey );
    }

    m_NameEntries.emplace_back(rName, nKey, bRemoveAfterUse);
}

void SvXMLNumImpData::SetUsed( sal_uInt32 nKey )
{
    for (auto& rObj : m_NameEntries)
    {
        if (rObj.nKey == nKey)
        {
            rObj.bRemoveAfterUse = false;      // used -> don't remove

            //  continue searching - there may be several entries for the same key
            //  (with different names), the format must not be deleted if any one of
            //  them is used
        }
    }
}

void SvXMLNumImpData::RemoveVolatileFormats()
{
    //  remove temporary (volatile) formats from NumberFormatter
    //  called at the end of each import (styles and content), so volatile formats
    //  from styles can't be used in content

    if ( !pFormatter )
        return;

    for (const auto& rObj : m_NameEntries)
    {
        if (rObj.bRemoveAfterUse )
        {
            const SvNumberformat* pFormat = pFormatter->GetEntry(rObj.nKey);
            if (pFormat && (pFormat->GetType() & SvNumFormatType::DEFINED))
                pFormatter->DeleteEntry(rObj.nKey);
        }
    }
}

const SvXMLTokenMap& SvXMLNumImpData::GetStylesElemTokenMap()
{
    if( !pStylesElemTokenMap )
    {
        static const SvXMLTokenMapEntry aStylesElemMap[] =
        {
            //  style elements
            { XML_NAMESPACE_NUMBER, XML_NUMBER_STYLE,      XML_TOK_STYLES_NUMBER_STYLE      },
            { XML_NAMESPACE_NUMBER, XML_CURRENCY_STYLE,    XML_TOK_STYLES_CURRENCY_STYLE    },
            { XML_NAMESPACE_NUMBER, XML_PERCENTAGE_STYLE,  XML_TOK_STYLES_PERCENTAGE_STYLE  },
            { XML_NAMESPACE_NUMBER, XML_DATE_STYLE,        XML_TOK_STYLES_DATE_STYLE        },
            { XML_NAMESPACE_NUMBER, XML_TIME_STYLE,        XML_TOK_STYLES_TIME_STYLE        },
            { XML_NAMESPACE_NUMBER, XML_BOOLEAN_STYLE,     XML_TOK_STYLES_BOOLEAN_STYLE     },
            { XML_NAMESPACE_NUMBER, XML_TEXT_STYLE,        XML_TOK_STYLES_TEXT_STYLE        },
            XML_TOKEN_MAP_END
        };

        pStylesElemTokenMap = std::make_unique<SvXMLTokenMap>( aStylesElemMap );
    }
    return *pStylesElemTokenMap;
}

const SvXMLTokenMap& SvXMLNumImpData::GetStyleElemTokenMap()
{
    if( !pStyleElemTokenMap )
    {
        static const SvXMLTokenMapEntry aStyleElemMap[] =
        {
            //  elements in a style
            { XML_NAMESPACE_LO_EXT, XML_TEXT,               XML_TOK_STYLE_TEXT              },
            { XML_NAMESPACE_NUMBER, XML_TEXT,               XML_TOK_STYLE_TEXT              },
            { XML_NAMESPACE_LO_EXT, XML_FILL_CHARACTER,     XML_TOK_STYLE_FILL_CHARACTER    },
            { XML_NAMESPACE_NUMBER, XML_FILL_CHARACTER,     XML_TOK_STYLE_FILL_CHARACTER    },
            { XML_NAMESPACE_NUMBER, XML_NUMBER,             XML_TOK_STYLE_NUMBER            },
            { XML_NAMESPACE_NUMBER, XML_SCIENTIFIC_NUMBER,  XML_TOK_STYLE_SCIENTIFIC_NUMBER },
            { XML_NAMESPACE_NUMBER, XML_FRACTION,           XML_TOK_STYLE_FRACTION          },
            { XML_NAMESPACE_NUMBER, XML_CURRENCY_SYMBOL,    XML_TOK_STYLE_CURRENCY_SYMBOL   },
            { XML_NAMESPACE_NUMBER, XML_DAY,                XML_TOK_STYLE_DAY               },
            { XML_NAMESPACE_NUMBER, XML_MONTH,              XML_TOK_STYLE_MONTH             },
            { XML_NAMESPACE_NUMBER, XML_YEAR,               XML_TOK_STYLE_YEAR              },
            { XML_NAMESPACE_NUMBER, XML_ERA,                XML_TOK_STYLE_ERA               },
            { XML_NAMESPACE_NUMBER, XML_DAY_OF_WEEK,        XML_TOK_STYLE_DAY_OF_WEEK       },
            { XML_NAMESPACE_NUMBER, XML_WEEK_OF_YEAR,       XML_TOK_STYLE_WEEK_OF_YEAR      },
            { XML_NAMESPACE_NUMBER, XML_QUARTER,            XML_TOK_STYLE_QUARTER           },
            { XML_NAMESPACE_NUMBER, XML_HOURS,              XML_TOK_STYLE_HOURS             },
            { XML_NAMESPACE_NUMBER, XML_AM_PM,              XML_TOK_STYLE_AM_PM             },
            { XML_NAMESPACE_NUMBER, XML_MINUTES,            XML_TOK_STYLE_MINUTES           },
            { XML_NAMESPACE_NUMBER, XML_SECONDS,            XML_TOK_STYLE_SECONDS           },
            { XML_NAMESPACE_NUMBER, XML_BOOLEAN,            XML_TOK_STYLE_BOOLEAN           },
            { XML_NAMESPACE_NUMBER, XML_TEXT_CONTENT,       XML_TOK_STYLE_TEXT_CONTENT      },
            { XML_NAMESPACE_STYLE,  XML_TEXT_PROPERTIES,    XML_TOK_STYLE_PROPERTIES        },
            { XML_NAMESPACE_STYLE,  XML_MAP,                XML_TOK_STYLE_MAP               },
            XML_TOKEN_MAP_END
        };

        pStyleElemTokenMap = std::make_unique<SvXMLTokenMap>( aStyleElemMap );
    }
    return *pStyleElemTokenMap;
}

const SvXMLTokenMap& SvXMLNumImpData::GetStyleAttrTokenMap()
{
    if( !pStyleAttrTokenMap )
    {
        static const SvXMLTokenMapEntry aStyleAttrMap[] =
        {
            //  attributes for a style
            { XML_NAMESPACE_STYLE,  XML_NAME,                  XML_TOK_STYLE_ATTR_NAME                  },
            { XML_NAMESPACE_NUMBER, XML_RFC_LANGUAGE_TAG,      XML_TOK_STYLE_ATTR_RFC_LANGUAGE_TAG,     },
            { XML_NAMESPACE_NUMBER, XML_LANGUAGE,              XML_TOK_STYLE_ATTR_LANGUAGE              },
            { XML_NAMESPACE_NUMBER, XML_SCRIPT,                XML_TOK_STYLE_ATTR_SCRIPT                },
            { XML_NAMESPACE_NUMBER, XML_COUNTRY,               XML_TOK_STYLE_ATTR_COUNTRY               },
            { XML_NAMESPACE_NUMBER, XML_TITLE,                 XML_TOK_STYLE_ATTR_TITLE                 },
            { XML_NAMESPACE_NUMBER, XML_AUTOMATIC_ORDER,       XML_TOK_STYLE_ATTR_AUTOMATIC_ORDER       },
            { XML_NAMESPACE_NUMBER, XML_FORMAT_SOURCE,         XML_TOK_STYLE_ATTR_FORMAT_SOURCE         },
            { XML_NAMESPACE_NUMBER, XML_TRUNCATE_ON_OVERFLOW,  XML_TOK_STYLE_ATTR_TRUNCATE_ON_OVERFLOW  },
            { XML_NAMESPACE_STYLE,  XML_VOLATILE,              XML_TOK_STYLE_ATTR_VOLATILE              },
            { XML_NAMESPACE_NUMBER, XML_TRANSLITERATION_FORMAT,     XML_TOK_STYLE_ATTR_TRANSL_FORMAT    },
            // not defined in ODF { XML_NAMESPACE_NUMBER, XML_TRANSLITERATION_RFC_LANGUAGE_TAG, XML_TOK_STYLE_ATTR_TRANSL_RFC_LANGUAGE_TAG   },
            { XML_NAMESPACE_NUMBER, XML_TRANSLITERATION_LANGUAGE,   XML_TOK_STYLE_ATTR_TRANSL_LANGUAGE  },
            // not defined in ODF { XML_NAMESPACE_NUMBER, XML_TRANSLITERATION_SCRIPT,     XML_TOK_STYLE_ATTR_TRANSL_SCRIPT    },
            { XML_NAMESPACE_NUMBER, XML_TRANSLITERATION_COUNTRY,    XML_TOK_STYLE_ATTR_TRANSL_COUNTRY   },
            { XML_NAMESPACE_NUMBER, XML_TRANSLITERATION_STYLE,      XML_TOK_STYLE_ATTR_TRANSL_STYLE     },
            { XML_NAMESPACE_LO_EXT, XML_TRANSLITERATION_SPELLOUT,    XML_TOK_STYLE_ATTR_TRANSL_SPELLOUT   },
            { XML_NAMESPACE_NUMBER, XML_TRANSLITERATION_SPELLOUT,    XML_TOK_STYLE_ATTR_TRANSL_SPELLOUT   },
            XML_TOKEN_MAP_END
        };

        pStyleAttrTokenMap = std::make_unique<SvXMLTokenMap>( aStyleAttrMap );
    }
    return *pStyleAttrTokenMap;
}

const SvXMLTokenMap& SvXMLNumImpData::GetStyleElemAttrTokenMap()
{
    if( !pStyleElemAttrTokenMap )
    {
        static const SvXMLTokenMapEntry aStyleElemAttrMap[] =
        {
            //  attributes for an element within a style
            { XML_NAMESPACE_NUMBER, XML_DECIMAL_PLACES,          XML_TOK_ELEM_ATTR_DECIMAL_PLACES       },
            { XML_NAMESPACE_LO_EXT, XML_MIN_DECIMAL_PLACES,      XML_TOK_ELEM_ATTR_MIN_DECIMAL_PLACES   },
            { XML_NAMESPACE_NUMBER, XML_MIN_DECIMAL_PLACES,      XML_TOK_ELEM_ATTR_MIN_DECIMAL_PLACES   },
            { XML_NAMESPACE_NUMBER, XML_MIN_INTEGER_DIGITS,      XML_TOK_ELEM_ATTR_MIN_INTEGER_DIGITS   },
            { XML_NAMESPACE_NUMBER, XML_GROUPING,                XML_TOK_ELEM_ATTR_GROUPING             },
            { XML_NAMESPACE_NUMBER, XML_DISPLAY_FACTOR,          XML_TOK_ELEM_ATTR_DISPLAY_FACTOR       },
            { XML_NAMESPACE_NUMBER, XML_DECIMAL_REPLACEMENT,     XML_TOK_ELEM_ATTR_DECIMAL_REPLACEMENT  },
            { XML_NAMESPACE_NUMBER, XML_DENOMINATOR_VALUE,       XML_TOK_ELEM_ATTR_DENOMINATOR_VALUE  },
            { XML_NAMESPACE_NUMBER, XML_MIN_EXPONENT_DIGITS,     XML_TOK_ELEM_ATTR_MIN_EXPONENT_DIGITS  },
            { XML_NAMESPACE_LO_EXT, XML_EXPONENT_INTERVAL,       XML_TOK_ELEM_ATTR_EXPONENT_INTERVAL    },
            { XML_NAMESPACE_NUMBER, XML_EXPONENT_INTERVAL,       XML_TOK_ELEM_ATTR_EXPONENT_INTERVAL    },
            { XML_NAMESPACE_LO_EXT, XML_FORCED_EXPONENT_SIGN,    XML_TOK_ELEM_ATTR_FORCED_EXPONENT_SIGN },
            { XML_NAMESPACE_NUMBER, XML_FORCED_EXPONENT_SIGN,    XML_TOK_ELEM_ATTR_FORCED_EXPONENT_SIGN },
            { XML_NAMESPACE_NUMBER, XML_MIN_NUMERATOR_DIGITS,    XML_TOK_ELEM_ATTR_MIN_NUMERATOR_DIGITS },
            { XML_NAMESPACE_NUMBER, XML_MIN_DENOMINATOR_DIGITS,  XML_TOK_ELEM_ATTR_MIN_DENOMINATOR_DIGITS },
            { XML_NAMESPACE_LO_EXT, XML_MAX_NUMERATOR_DIGITS,    XML_TOK_ELEM_ATTR_MAX_NUMERATOR_DIGITS },
            { XML_NAMESPACE_LO_EXT, XML_MAX_DENOMINATOR_VALUE,   XML_TOK_ELEM_ATTR_MAX_DENOMINATOR_VALUE },
            { XML_NAMESPACE_NUMBER, XML_MAX_DENOMINATOR_VALUE,   XML_TOK_ELEM_ATTR_MAX_DENOMINATOR_VALUE },
            { XML_NAMESPACE_LO_EXT, XML_ZEROS_NUMERATOR_DIGITS,  XML_TOK_ELEM_ATTR_ZEROS_NUMERATOR_DIGITS },
            { XML_NAMESPACE_NUMBER, XML_ZEROS_NUMERATOR_DIGITS,  XML_TOK_ELEM_ATTR_ZEROS_NUMERATOR_DIGITS },
            { XML_NAMESPACE_LO_EXT, XML_ZEROS_DENOMINATOR_DIGITS,XML_TOK_ELEM_ATTR_ZEROS_DENOMINATOR_DIGITS },
            { XML_NAMESPACE_NUMBER, XML_ZEROS_DENOMINATOR_DIGITS,XML_TOK_ELEM_ATTR_ZEROS_DENOMINATOR_DIGITS },
            { XML_NAMESPACE_LO_EXT, XML_INTEGER_FRACTION_DELIMITER, XML_TOK_ELEM_ATTR_INTEGER_FRACTION_DELIMITER },
            { XML_NAMESPACE_NUMBER, XML_INTEGER_FRACTION_DELIMITER, XML_TOK_ELEM_ATTR_INTEGER_FRACTION_DELIMITER },
            { XML_NAMESPACE_NUMBER, XML_RFC_LANGUAGE_TAG,        XML_TOK_ELEM_ATTR_RFC_LANGUAGE_TAG     },
            { XML_NAMESPACE_NUMBER, XML_LANGUAGE,                XML_TOK_ELEM_ATTR_LANGUAGE             },
            { XML_NAMESPACE_NUMBER, XML_SCRIPT,                  XML_TOK_ELEM_ATTR_SCRIPT               },
            { XML_NAMESPACE_NUMBER, XML_COUNTRY,                 XML_TOK_ELEM_ATTR_COUNTRY              },
            { XML_NAMESPACE_NUMBER, XML_STYLE,                   XML_TOK_ELEM_ATTR_STYLE                },
            { XML_NAMESPACE_NUMBER, XML_TEXTUAL,                 XML_TOK_ELEM_ATTR_TEXTUAL              },
            { XML_NAMESPACE_NUMBER, XML_CALENDAR,                XML_TOK_ELEM_ATTR_CALENDAR             },
            XML_TOKEN_MAP_END
        };

        pStyleElemAttrTokenMap = std::make_unique<SvXMLTokenMap>( aStyleElemAttrMap );
    }
    return *pStyleElemAttrTokenMap;
}

const LocaleDataWrapper& SvXMLNumImpData::GetLocaleData( LanguageType nLang )
{
    if ( !pLocaleData )
        pLocaleData = std::make_unique<LocaleDataWrapper>(
               pFormatter ? pFormatter->GetComponentContext() : m_xContext,
            LanguageTag( nLang ) );
    else
        pLocaleData->setLanguageTag( LanguageTag( nLang ) );
    return *pLocaleData;
}


//  SvXMLNumFmtMapContext


SvXMLNumFmtMapContext::SvXMLNumFmtMapContext( SvXMLImport& rImport,
                                    sal_uInt16 nPrfx, const OUString& rLName,
                                    SvXMLNumFormatContext& rParentContext,
                                    const uno::Reference<xml::sax::XAttributeList>& xAttrList ) :
    SvXMLImportContext( rImport, nPrfx, rLName ),
    rParent( rParentContext )
{
    sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
    for( sal_Int16 i=0; i < nAttrCount; i++ )
    {
        OUString sAttrName = xAttrList->getNameByIndex( i );
        OUString sValue = xAttrList->getValueByIndex( i );
        OUString aLocalName;
        sal_uInt16 nPrefix = rImport.GetNamespaceMap().GetKeyByAttrName( sAttrName, &aLocalName );
        if ( nPrefix == XML_NAMESPACE_STYLE )
        {
            if ( IsXMLToken( aLocalName, XML_CONDITION) )
                sCondition = sValue;
            else if ( IsXMLToken( aLocalName, XML_APPLY_STYLE_NAME) )
                sName = sValue;
        }
    }
}

SvXMLImportContextRef SvXMLNumFmtMapContext::CreateChildContext(
                                    sal_uInt16 /*nPrfx*/, const OUString& /*rLName*/,
                                    const uno::Reference<xml::sax::XAttributeList>& )
{
    // no elements supported - use default context
    return nullptr;
}

void SvXMLNumFmtMapContext::Characters( const OUString& )
{
}

void SvXMLNumFmtMapContext::EndElement()
{
    rParent.AddCondition( sCondition, sName );
}


//  SvXMLNumFmtPropContext


SvXMLNumFmtPropContext::SvXMLNumFmtPropContext( SvXMLImport& rImport,
                                    sal_uInt16 nPrfx, const OUString& rLName,
                                    SvXMLNumFormatContext& rParentContext,
                                    const uno::Reference<xml::sax::XAttributeList>& xAttrList ) :
    SvXMLImportContext( rImport, nPrfx, rLName ),
    rParent( rParentContext ),
    m_nColor( 0 ),
    bColSet( false )
{
    sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
    for( sal_Int16 i=0; i < nAttrCount; i++ )
    {
        OUString sAttrName = xAttrList->getNameByIndex( i );
        OUString sValue = xAttrList->getValueByIndex( i );
        OUString aLocalName;
        sal_uInt16 nPrefix = rImport.GetNamespaceMap().GetKeyByAttrName( sAttrName, &aLocalName );
        if ( nPrefix == XML_NAMESPACE_FO && IsXMLToken( aLocalName, XML_COLOR ) )
        {
            bColSet = ::sax::Converter::convertColor( m_nColor, sValue );
        }
    }
}

void SvXMLNumFmtPropContext::Characters( const OUString& )
{
}

void SvXMLNumFmtPropContext::EndElement()
{
    if (bColSet)
        rParent.AddColor( m_nColor );
}


//  SvXMLNumFmtEmbeddedTextContext


SvXMLNumFmtEmbeddedTextContext::SvXMLNumFmtEmbeddedTextContext( SvXMLImport& rImport,
                                    sal_uInt16 nPrfx, const OUString& rLName,
                                    SvXMLNumFmtElementContext& rParentContext,
                                    const uno::Reference<xml::sax::XAttributeList>& xAttrList ) :
    SvXMLImportContext( rImport, nPrfx, rLName ),
    rParent( rParentContext ),
    nTextPosition( 0 )
{
    sal_Int32 nAttrVal;

    sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
    for( sal_Int16 i=0; i < nAttrCount; i++ )
    {
        OUString sAttrName = xAttrList->getNameByIndex( i );
        OUString sValue = xAttrList->getValueByIndex( i );
        OUString aLocalName;
        sal_uInt16 nPrefix = rImport.GetNamespaceMap().GetKeyByAttrName( sAttrName, &aLocalName );
        if ( nPrefix == XML_NAMESPACE_NUMBER && IsXMLToken( aLocalName, XML_POSITION ) )
        {
            if (::sax::Converter::convertNumber( nAttrVal, sValue, 0 ))
                nTextPosition = nAttrVal;
        }
    }
}

void SvXMLNumFmtEmbeddedTextContext::Characters( const OUString& rChars )
{
    aContent.append( rChars );
}

void SvXMLNumFmtEmbeddedTextContext::EndElement()
{
    rParent.AddEmbeddedElement( nTextPosition, aContent.makeStringAndClear() );
}

static bool lcl_ValidChar( sal_Unicode cChar, const SvXMLNumFormatContext& rParent )
{
    sal_uInt16 nFormatType = rParent.GetType();

    // Treat space equal to non-breaking space separator.
    const sal_Unicode cNBSP = 0x00A0;
    sal_Unicode cTS;
    if ( ( nFormatType == XML_TOK_STYLES_NUMBER_STYLE ||
           nFormatType == XML_TOK_STYLES_CURRENCY_STYLE ||
           nFormatType == XML_TOK_STYLES_PERCENTAGE_STYLE ) &&
            (cChar == (cTS = rParent.GetLocaleData().getNumThousandSep()[0]) ||
             (cChar == ' ' && cTS == cNBSP)) )
    {
        //  #i22394# Extra occurrences of thousands separator must be quoted, so they
        //  aren't mis-interpreted as display-factor.
        //  This must be limited to the format types that can contain a number element,
        //  because the same character can be a date separator that should not be quoted
        //  in date formats.

        return false;   // force quotes
    }

    //  see ImpSvNumberformatScan::Next_Symbol
    if ( cChar == '-' )
        return true;   // all format types may content minus sign or delimiter
    if ( ( cChar == ' ' ||
           cChar == '/' ||
           cChar == '.' ||
           cChar == ',' ||
           cChar == ':' ||
           cChar == '\''   ) &&
         ( nFormatType == XML_TOK_STYLES_CURRENCY_STYLE ||
           nFormatType == XML_TOK_STYLES_DATE_STYLE ||
           nFormatType == XML_TOK_STYLES_TIME_STYLE ) ) // other formats do not require delimiter tdf#97837
        return true;

    //  percent sign must be used without quotes for percentage styles only
    if ( nFormatType == XML_TOK_STYLES_PERCENTAGE_STYLE && cChar == '%' )
        return true;

    //  don't put quotes around single parentheses (often used for negative numbers)
    if ( ( nFormatType == XML_TOK_STYLES_NUMBER_STYLE ||
           nFormatType == XML_TOK_STYLES_CURRENCY_STYLE ||
           nFormatType == XML_TOK_STYLES_PERCENTAGE_STYLE ) &&
         ( cChar == '(' || cChar == ')' ) )
        return true;

    return false;
}

static void lcl_EnquoteIfNecessary( OUStringBuffer& rContent, const SvXMLNumFormatContext& rParent )
{
    bool bQuote = true;
    sal_Int32 nLength = rContent.getLength();

    if ((nLength == 1 && lcl_ValidChar( rContent[0], rParent)) ||
            (nLength == 2 &&
             ((rContent[0] == ' ' && rContent[1] == '-') ||
              (rContent[1] == ' ' && lcl_ValidChar( rContent[0], rParent)))))
    {
        //  Don't quote single separator characters like space or percent,
        //  or separator characters followed by space (used in date formats).
        //  Or space followed by minus (used in currency formats) that would
        //  lead to almost duplicated formats with built-in formats just with
        //  the difference of quotes.
        bQuote = false;
    }
    else if ( rParent.GetType() == XML_TOK_STYLES_PERCENTAGE_STYLE && nLength > 1 )
    {
        //  the percent character in percentage styles must be left out of quoting
        //  (one occurrence is enough even if there are several percent characters in the string)

        OUString aString( rContent.getStr() );
        sal_Int32 nPos = aString.indexOf( '%' );
        if ( nPos >= 0 )
        {
            if ( nPos + 1 < nLength )
            {
                if ( nPos + 2 == nLength && lcl_ValidChar( rContent[nPos + 1], rParent ) )
                {
                    //  single character that doesn't need quoting
                }
                else
                {
                    //  quote text behind percent character
                    rContent.insert( nPos + 1, '"' );
                    rContent.append( '"' );
                }
            }
            if ( nPos > 0 )
            {
                if ( nPos == 1 && lcl_ValidChar( rContent[0], rParent ) )
                {
                    //  single character that doesn't need quoting
                }
                else
                {
                    //  quote text before percent character
                    rContent.insert( nPos, '"' );
                    rContent.insert( 0, '"' );
                }
            }
            bQuote = false;
        }
        // else: normal quoting (below)
    }

    if ( bQuote )
    {
        // #i55469# quotes in the string itself have to be escaped
        bool bEscape = ( rContent.indexOf( '"' ) >= 0 );
        if ( bEscape )
        {
            // A quote is turned into "\"" - a quote to end quoted text, an escaped quote,
            // and a quote to resume quoting.
            OUString aInsert(  "\"\\\""  );

            sal_Int32 nPos = 0;
            while ( nPos < rContent.getLength() )
            {
                if ( rContent[nPos] == '"' )
                {
                    rContent.insert( nPos, aInsert );
                    nPos += aInsert.getLength();
                }
                ++nPos;
            }
        }

        //  quote string literals
        rContent.insert( 0, '"' );
        rContent.append( '"' );

        // remove redundant double quotes at start or end
        if ( bEscape )
        {
            if ( rContent.getLength() > 2 &&
                 rContent[0] == '"' &&
                 rContent[1] == '"' )
            {
                rContent.remove(0, 2);
            }

            sal_Int32 nLen = rContent.getLength();
            if ( nLen > 2 &&
                 rContent[nLen - 1] == '"' &&
                 rContent[nLen - 2] == '"' )
            {
                rContent.truncate(nLen - 2);
            }
        }
    }
}


//  SvXMLNumFmtElementContext


SvXMLNumFmtElementContext::SvXMLNumFmtElementContext( SvXMLImport& rImport,
                                    sal_uInt16 nPrfx, const OUString& rLName,
                                    SvXMLNumFormatContext& rParentContext, sal_uInt16 nNewType,
                                    const uno::Reference<xml::sax::XAttributeList>& xAttrList ) :
    SvXMLImportContext( rImport, nPrfx, rLName ),
    rParent( rParentContext ),
    nType( nNewType ),
    nElementLang( LANGUAGE_SYSTEM ),
    bLong( false ),
    bTextual( false )
{
    LanguageTagODF aLanguageTagODF;
    sal_Int32 nAttrVal;
    bool bAttrBool(false);
    bool bVarDecimals = false;
    bool bIsMaxDenominator = false;
    double fAttrDouble;

    sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
    for( sal_Int16 i=0; i < nAttrCount; i++ )
    {
        OUString sAttrName = xAttrList->getNameByIndex( i );
        OUString sValue = xAttrList->getValueByIndex( i );
        OUString aLocalName;
        sal_uInt16 nPrefix = rImport.GetNamespaceMap().GetKeyByAttrName( sAttrName, &aLocalName );

        const SvXMLTokenMap& rTokenMap = rParent.GetData()->GetStyleElemAttrTokenMap();
        sal_uInt16 nToken = rTokenMap.Get( nPrefix, aLocalName );

        switch (nToken)
        {
            case XML_TOK_ELEM_ATTR_DECIMAL_PLACES:
                if (::sax::Converter::convertNumber( nAttrVal, sValue, 0 ))
                {
                    // fdo#58539 & gnome#627420: limit number of digits during import
                    aNumInfo.nDecimals = std::min<sal_Int32>(nAttrVal, NF_MAX_FORMAT_SYMBOLS);
                }
                break;
            case XML_TOK_ELEM_ATTR_MIN_DECIMAL_PLACES:
                if (::sax::Converter::convertNumber( nAttrVal, sValue, 0 ))
                    aNumInfo.nMinDecimalDigits = nAttrVal;
                break;
            case XML_TOK_ELEM_ATTR_MIN_INTEGER_DIGITS:
                if (::sax::Converter::convertNumber( nAttrVal, sValue, 0 ))
                    aNumInfo.nInteger = nAttrVal;
                break;
            case XML_TOK_ELEM_ATTR_GROUPING:
                if (::sax::Converter::convertBool( bAttrBool, sValue ))
                    aNumInfo.bGrouping = bAttrBool;
                break;
            case XML_TOK_ELEM_ATTR_DISPLAY_FACTOR:
                if (::sax::Converter::convertDouble( fAttrDouble, sValue ))
                    aNumInfo.fDisplayFactor = fAttrDouble;
                break;
            case XML_TOK_ELEM_ATTR_DECIMAL_REPLACEMENT:
                if ( sValue == " " )
                {
                    aNumInfo.bDecAlign = true; // space replacement for "?"
                    bVarDecimals = true;
                }
                else
                    if ( sValue.isEmpty() )
                        bVarDecimals = true;   // empty replacement string: variable decimals
                    else                                // all other strings
                        aNumInfo.bDecReplace = true;    // decimal replacement with dashes
                break;
            case XML_TOK_ELEM_ATTR_MIN_EXPONENT_DIGITS:
                if (::sax::Converter::convertNumber( nAttrVal, sValue, 0 ))
                    aNumInfo.nExpDigits = std::min<sal_Int32>(nAttrVal, NF_MAX_FORMAT_SYMBOLS);
                break;
            case XML_TOK_ELEM_ATTR_EXPONENT_INTERVAL:
                if (::sax::Converter::convertNumber( nAttrVal, sValue, 0 ))
                    aNumInfo.nExpInterval = nAttrVal;
                break;
            case XML_TOK_ELEM_ATTR_FORCED_EXPONENT_SIGN:
                if (::sax::Converter::convertBool( bAttrBool, sValue ))
                    aNumInfo.bExpSign = bAttrBool;
                break;
            case XML_TOK_ELEM_ATTR_MIN_NUMERATOR_DIGITS:
                if (::sax::Converter::convertNumber( nAttrVal, sValue, 0 ))
                    aNumInfo.nMinNumerDigits = nAttrVal;
                break;
            case XML_TOK_ELEM_ATTR_MIN_DENOMINATOR_DIGITS:
                if (::sax::Converter::convertNumber( nAttrVal, sValue, 0 ))
                    aNumInfo.nMinDenomDigits = nAttrVal;
                break;
            case XML_TOK_ELEM_ATTR_MAX_NUMERATOR_DIGITS:
                if (::sax::Converter::convertNumber( nAttrVal, sValue, 1 ))  // at least one '#'
                    aNumInfo.nMaxNumerDigits = nAttrVal;
                break;
            case XML_TOK_ELEM_ATTR_DENOMINATOR_VALUE:
                if (::sax::Converter::convertNumber( nAttrVal, sValue, 1 )) // 0 is not valid
                {
                    aNumInfo.nFracDenominator = nAttrVal;
                    bIsMaxDenominator = false;
                }
                break;
            case XML_TOK_ELEM_ATTR_MAX_DENOMINATOR_VALUE:  // part of ODF 1.3
                if (::sax::Converter::convertNumber( nAttrVal, sValue, 1 ) && aNumInfo.nFracDenominator <= 0)
                {   // if denominator value not yet defined
                    aNumInfo.nFracDenominator = nAttrVal;
                    bIsMaxDenominator = true;
                }
                break;
            case XML_TOK_ELEM_ATTR_ZEROS_NUMERATOR_DIGITS:
                if (::sax::Converter::convertNumber( nAttrVal, sValue, 0 ))
                    aNumInfo.nZerosNumerDigits = nAttrVal;
                break;
            case XML_TOK_ELEM_ATTR_ZEROS_DENOMINATOR_DIGITS:
                if (::sax::Converter::convertNumber( nAttrVal, sValue, 0 ))
                    aNumInfo.nZerosDenomDigits = nAttrVal;
                 break;
            case XML_TOK_ELEM_ATTR_INTEGER_FRACTION_DELIMITER:
                aNumInfo.aIntegerFractionDelimiter = sValue;
                break;
            case XML_TOK_ELEM_ATTR_RFC_LANGUAGE_TAG:
                aLanguageTagODF.maRfcLanguageTag = sValue;
                break;
            case XML_TOK_ELEM_ATTR_LANGUAGE:
                aLanguageTagODF.maLanguage = sValue;
                break;
            case XML_TOK_ELEM_ATTR_SCRIPT:
                aLanguageTagODF.maScript = sValue;
                break;
            case XML_TOK_ELEM_ATTR_COUNTRY:
                aLanguageTagODF.maCountry = sValue;
                break;
            case XML_TOK_ELEM_ATTR_STYLE:
                SvXMLUnitConverter::convertEnum( bLong, sValue, aStyleValueMap );
                break;
            case XML_TOK_ELEM_ATTR_TEXTUAL:
                if (::sax::Converter::convertBool( bAttrBool, sValue ))
                    bTextual = bAttrBool;
                break;
            case XML_TOK_ELEM_ATTR_CALENDAR:
                sCalendar = sValue;
                break;
        }
    }
    if ( aNumInfo.nMinDecimalDigits == -1)
    {
        if ( bVarDecimals || aNumInfo.bDecReplace )
            aNumInfo.nMinDecimalDigits = 0;
        else
            aNumInfo.nMinDecimalDigits = aNumInfo.nDecimals;
    }
    if ( aNumInfo.nZerosDenomDigits > 0 )
    {   // nMin = count of '0' and '?'
        if ( aNumInfo.nMinDenomDigits < aNumInfo.nZerosDenomDigits )
            aNumInfo.nMinDenomDigits = aNumInfo.nZerosDenomDigits;
    }
    else
        aNumInfo.nZerosDenomDigits = 0;
    if ( aNumInfo.nMinDenomDigits >= 0 )
        if ( aNumInfo.nMaxDenomDigits < aNumInfo.nMinDenomDigits )
            aNumInfo.nMaxDenomDigits = ( aNumInfo.nMinDenomDigits ? aNumInfo.nMinDenomDigits : 1 );
    if ( aNumInfo.nZerosNumerDigits > 0 )
    {
        if ( aNumInfo.nMinNumerDigits < aNumInfo.nZerosNumerDigits )
            aNumInfo.nMinNumerDigits = aNumInfo.nZerosNumerDigits;
    }
    else
        aNumInfo.nZerosNumerDigits = 0;
    if ( aNumInfo.nMinNumerDigits >= 0 )
        if ( aNumInfo.nMaxNumerDigits < aNumInfo.nMinNumerDigits )
            aNumInfo.nMaxNumerDigits = ( aNumInfo.nMinNumerDigits ? aNumInfo.nMinNumerDigits : 1 );
    if ( bIsMaxDenominator && aNumInfo.nFracDenominator > 0 )
    {
        aNumInfo.nMaxDenomDigits = floor( log10( aNumInfo.nFracDenominator ) ) + 1;
        aNumInfo.nFracDenominator = -1;  // Max denominator value only gives number of digits at denominator
    }
    if ( aNumInfo.nMaxDenomDigits > 0 )
    {
        if ( aNumInfo.nMinDenomDigits < 0 )
            aNumInfo.nMinDenomDigits = 0;
        else if ( aNumInfo.nMinDenomDigits > aNumInfo.nMaxDenomDigits )
            aNumInfo.nMinDenomDigits = aNumInfo.nMaxDenomDigits;
    }

    if ( !aLanguageTagODF.isEmpty() )
    {
        nElementLang = aLanguageTagODF.getLanguageTag().getLanguageType( false);
        if ( nElementLang == LANGUAGE_DONTKNOW )
            nElementLang = LANGUAGE_SYSTEM;         //! error handling for unknown locales?
    }

    if ( aNumInfo.aIntegerFractionDelimiter.isEmpty() )
        aNumInfo.aIntegerFractionDelimiter = " ";
}

SvXMLImportContextRef SvXMLNumFmtElementContext::CreateChildContext(
                                    sal_uInt16 nPrfx, const OUString& rLName,
                                    const uno::Reference<xml::sax::XAttributeList>& xAttrList )
{
    //  only number:number supports number:embedded-text child element

    if ( nType == XML_TOK_STYLE_NUMBER &&
         nPrfx == XML_NAMESPACE_NUMBER && IsXMLToken( rLName, XML_EMBEDDED_TEXT ) )
    {
        return new SvXMLNumFmtEmbeddedTextContext( GetImport(), nPrfx, rLName, *this, xAttrList );
    }
    return nullptr;
}

void SvXMLNumFmtElementContext::Characters( const OUString& rChars )
{
    aContent.append( rChars );
}

void SvXMLNumFmtElementContext::AddEmbeddedElement( sal_Int32 nFormatPos, const OUString& rContent )
{
    if (rContent.isEmpty())
        return;

    auto iterPair = aNumInfo.m_EmbeddedElements.emplace(nFormatPos, rContent);
    if (!iterPair.second)
        // there's already an element at this position - append text to existing element
        iterPair.first->second += rContent;
}

void SvXMLNumFmtElementContext::EndElement()
{
    bool bEffLong = bLong;
    switch (nType)
    {
        case XML_TOK_STYLE_TEXT:
            if ( rParent.HasLongDoW() &&
                 aContent.toString() == rParent.GetLocaleData().getLongDateDayOfWeekSep() )
            {
                //  skip separator constant after long day of week
                //  (NF_KEY_NNNN contains the separator)

                if ( rParent.ReplaceNfKeyword( NF_KEY_NNN, NF_KEY_NNNN ) )
                {
                    aContent.truncate();
                }

                rParent.SetHasLongDoW( false );     // only once
            }
            if ( !aContent.isEmpty() )
            {
                lcl_EnquoteIfNecessary( aContent, rParent );
                rParent.AddToCode( aContent.makeStringAndClear() );
            }
            break;

        case XML_TOK_STYLE_NUMBER:
            rParent.AddNumber( aNumInfo );
            break;

        case XML_TOK_STYLE_CURRENCY_SYMBOL:
            rParent.AddCurrency( aContent.makeStringAndClear(), nElementLang );
            break;

        case XML_TOK_STYLE_TEXT_CONTENT:
            rParent.AddToCode( '@');
            break;
        case XML_TOK_STYLE_FILL_CHARACTER:
            if ( !aContent.isEmpty() )
            {
                rParent.AddToCode( '*' );
                rParent.AddToCode( aContent[0] );
            }
            break;
        case XML_TOK_STYLE_BOOLEAN:
            // ignored - only default boolean format is supported
            break;

        case XML_TOK_STYLE_DAY:
            rParent.UpdateCalendar( sCalendar );
//! I18N doesn't provide SYSTEM or extended date information yet

            rParent.AddNfKeyword(
                sal::static_int_cast< sal_uInt16 >(
                    bEffLong ? NF_KEY_DD : NF_KEY_D ) );
            break;
        case XML_TOK_STYLE_MONTH:
            rParent.UpdateCalendar( sCalendar );
//! I18N doesn't provide SYSTEM or extended date information yet

            rParent.AddNfKeyword(
                sal::static_int_cast< sal_uInt16 >(
                    bTextual
                    ? ( bEffLong ? NF_KEY_MMMM : NF_KEY_MMM )
                    : ( bEffLong ? NF_KEY_MM : NF_KEY_M ) ) );
            break;
        case XML_TOK_STYLE_YEAR:
//! I18N doesn't provide SYSTEM or extended date information yet
            {
                // Y after G (era) is replaced by E for a secondary calendar.
                // Do not replace for default calendar.
                // Also replace Y by E if we're switching to the secondary
                // calendar of a locale if it is known to implicitly use E.
                bool bImplicitEC = (!sCalendar.isEmpty() &&
                        rParent.GetLocaleData().doesSecondaryCalendarUseEC( sCalendar));
                if (bImplicitEC || (!sCalendar.isEmpty() && rParent.HasEra()))
                {
                    // If E or EE is the first format keyword, passing
                    // bImplicitEC=true suppresses the superfluous calendar
                    // modifier for this format. This does not help for
                    // something like [~cal]DD/MM/EE but so far only YMD order
                    // is used with such calendars. Live with the modifier if
                    // other keywords precede this.
                    rParent.UpdateCalendar( sCalendar, bImplicitEC);
                    rParent.AddNfKeyword(
                            sal::static_int_cast< sal_uInt16 >(
                                bEffLong ? NF_KEY_EEC : NF_KEY_EC ) );
                }
                else
                {
                    rParent.UpdateCalendar( sCalendar );
                    rParent.AddNfKeyword(
                            sal::static_int_cast< sal_uInt16 >(
                                bEffLong ? NF_KEY_YYYY : NF_KEY_YY ) );
                }
            }
            break;
        case XML_TOK_STYLE_ERA:
            rParent.UpdateCalendar( sCalendar );
//! I18N doesn't provide SYSTEM or extended date information yet
            rParent.AddNfKeyword(
                sal::static_int_cast< sal_uInt16 >(
                    bEffLong ? NF_KEY_GGG : NF_KEY_G ) );
            //  HasEra flag is set
            break;
        case XML_TOK_STYLE_DAY_OF_WEEK:
            rParent.UpdateCalendar( sCalendar );
//! I18N doesn't provide SYSTEM or extended date information yet
            rParent.AddNfKeyword(
                sal::static_int_cast< sal_uInt16 >(
                    bEffLong ? NF_KEY_NNNN : NF_KEY_NN ) );
            break;
        case XML_TOK_STYLE_WEEK_OF_YEAR:
            rParent.UpdateCalendar( sCalendar );
            rParent.AddNfKeyword( NF_KEY_WW );
            break;
        case XML_TOK_STYLE_QUARTER:
            rParent.UpdateCalendar( sCalendar );
            rParent.AddNfKeyword(
                sal::static_int_cast< sal_uInt16 >(
                    bEffLong ? NF_KEY_QQ : NF_KEY_Q ) );
            break;
        case XML_TOK_STYLE_HOURS:
            rParent.AddNfKeyword(
                sal::static_int_cast< sal_uInt16 >(
                    bEffLong ? NF_KEY_HH : NF_KEY_H ) );
            break;
        case XML_TOK_STYLE_AM_PM:
            //! short/long?
            rParent.AddNfKeyword( NF_KEY_AMPM );
            break;
        case XML_TOK_STYLE_MINUTES:
            rParent.AddNfKeyword(
                sal::static_int_cast< sal_uInt16 >(
                    bEffLong ? NF_KEY_MMI : NF_KEY_MI ) );
            break;
        case XML_TOK_STYLE_SECONDS:
            rParent.AddNfKeyword(
                sal::static_int_cast< sal_uInt16 >(
                    bEffLong ? NF_KEY_SS : NF_KEY_S ) );
            if ( aNumInfo.nDecimals > 0 )
            {
                //  manually add the decimal places
                rParent.AddToCode(rParent.GetLocaleData().getNumDecimalSep());
                for (sal_Int32 i=0; i<aNumInfo.nDecimals; i++)
                {
                    rParent.AddToCode( '0');
                }
            }
            break;

        case XML_TOK_STYLE_FRACTION:
            {
                if ( aNumInfo.nInteger >= 0 )
                {
                    // add integer part only if min-integer-digits attribute is there
                    aNumInfo.nDecimals = 0;
                    rParent.AddNumber( aNumInfo );      // number without decimals
                    OUStringBuffer sIntegerFractionDelimiter = aNumInfo.aIntegerFractionDelimiter;
                    lcl_EnquoteIfNecessary( sIntegerFractionDelimiter, rParent );
                    rParent.AddToCode( sIntegerFractionDelimiter.makeStringAndClear() ); // default is ' '
                }

                //! build string and add at once

                sal_Int32 i;
                for (i=aNumInfo.nMaxNumerDigits; i > 0; i--)
                {
                    if ( i > aNumInfo.nMinNumerDigits )
                        rParent.AddToCode( '#' );
                    else if ( i > aNumInfo.nZerosNumerDigits )
                        rParent.AddToCode( '?' );
                    else
                        rParent.AddToCode( '0' );
                }
                rParent.AddToCode( '/' );
                if ( aNumInfo.nFracDenominator > 0 )
                {
                    rParent.AddToCode(  OUString::number( aNumInfo.nFracDenominator ) );
                }
                else
                {
                    for (i=aNumInfo.nMaxDenomDigits; i > 0 ; i--)
                    {
                        if ( i > aNumInfo.nMinDenomDigits )
                            rParent.AddToCode( '#' );
                        else if ( i > aNumInfo.nZerosDenomDigits )
                            rParent.AddToCode( '?' );
                        else
                            rParent.AddToCode( '0' );
                    }
                }
            }
            break;

        case XML_TOK_STYLE_SCIENTIFIC_NUMBER:
            {
                // exponential interval for engineering notation
                if( !aNumInfo.bGrouping && aNumInfo.nExpInterval > aNumInfo.nInteger )
                {
                    for (sal_Int32 i=aNumInfo.nInteger; i<aNumInfo.nExpInterval; i++)
                    {
                        rParent.AddToCode( '#' );
                    }
                }
                rParent.AddNumber( aNumInfo );      // simple number

                if ( aNumInfo.bExpSign )
                    rParent.AddToCode( "E+" );
                else
                    rParent.AddToCode( "E" );
                for (sal_Int32 i=0; i<aNumInfo.nExpDigits; i++)
                {
                    rParent.AddToCode( '0' );
                }
            }
            break;

        default:
            OSL_FAIL("invalid element ID");
    }
}

sal_uInt16 SvXMLNumFmtDefaults::GetDefaultDateFormat( SvXMLDateElementAttributes eDOW,
                SvXMLDateElementAttributes eDay, SvXMLDateElementAttributes eMonth,
                SvXMLDateElementAttributes eYear, SvXMLDateElementAttributes eHours,
                SvXMLDateElementAttributes eMins, SvXMLDateElementAttributes eSecs,
                bool bSystem )
{
    for (const auto & rEntry : aDefaultDateFormats)
    {
        if ( bSystem == rEntry.bSystem &&
            ( eDOW   == rEntry.eDOW   || ( rEntry.eDOW   == XML_DEA_ANY && eDOW   != XML_DEA_NONE ) ) &&
            ( eDay   == rEntry.eDay   || ( rEntry.eDay   == XML_DEA_ANY && eDay   != XML_DEA_NONE ) ) &&
            ( eMonth == rEntry.eMonth || ( rEntry.eMonth == XML_DEA_ANY && eMonth != XML_DEA_NONE ) ) &&
            ( eYear  == rEntry.eYear  || ( rEntry.eYear  == XML_DEA_ANY && eYear  != XML_DEA_NONE ) ) &&
            ( eHours == rEntry.eHours || ( rEntry.eHours == XML_DEA_ANY && eHours != XML_DEA_NONE ) ) &&
            ( eMins  == rEntry.eMins  || ( rEntry.eMins  == XML_DEA_ANY && eMins  != XML_DEA_NONE ) ) &&
            ( eSecs  == rEntry.eSecs  || ( rEntry.eSecs  == XML_DEA_ANY && eSecs  != XML_DEA_NONE ) ) )
        {
            return sal::static_int_cast< sal_uInt16 >(rEntry.eFormat);
        }
    }

    return NF_INDEX_TABLE_ENTRIES;  // invalid
}


//  SvXMLNumFormatContext


SvXMLNumFormatContext::SvXMLNumFormatContext( SvXMLImport& rImport,
                                    sal_uInt16 nPrfx, const OUString& rLName,
                                    SvXMLNumImpData* pNewData, sal_uInt16 nNewType,
                                    const uno::Reference<xml::sax::XAttributeList>& xAttrList,
                                    SvXMLStylesContext& rStyles ) :
    SvXMLStyleContext( rImport, nPrfx, rLName, xAttrList ),
    pData( pNewData ),
    pStyles( &rStyles ),
    aMyConditions(),
    nType( nNewType ),
    nKey(-1),
    nFormatLang( LANGUAGE_SYSTEM ),
    bAutoOrder( false ),
    bFromSystem( false ),
    bTruncate( true ),
    bAutoDec( false ),
    bAutoInt( false ),
    bHasExtraText( false ),
    bHasLongDoW( false ),
    bHasEra( false ),
    bHasDateTime( false ),
    bRemoveAfterUse( false ),
    eDateDOW( XML_DEA_NONE ),
    eDateDay( XML_DEA_NONE ),
    eDateMonth( XML_DEA_NONE ),
    eDateYear( XML_DEA_NONE ),
    eDateHours( XML_DEA_NONE ),
    eDateMins( XML_DEA_NONE ),
    eDateSecs( XML_DEA_NONE ),
    bDateNoDefault( false )
{
    LanguageTagODF aLanguageTagODF;
    css::i18n::NativeNumberXmlAttributes aNatNumAttr;
    OUString aSpellout;
    bool bAttrBool(false);

    sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
    for( sal_Int16 i=0; i < nAttrCount; i++ )
    {
        OUString sAttrName = xAttrList->getNameByIndex( i );
        OUString sValue = xAttrList->getValueByIndex( i );
        OUString aLocalName;
        sal_uInt16 nPrefix = rImport.GetNamespaceMap().GetKeyByAttrName( sAttrName, &aLocalName );

        const SvXMLTokenMap& rTokenMap = pData->GetStyleAttrTokenMap();
        sal_uInt16 nToken = rTokenMap.Get( nPrefix, aLocalName );
        switch (nToken)
        {
            case XML_TOK_STYLE_ATTR_NAME:
                break;
            case XML_TOK_STYLE_ATTR_RFC_LANGUAGE_TAG:
                aLanguageTagODF.maRfcLanguageTag = sValue;
                break;
            case XML_TOK_STYLE_ATTR_LANGUAGE:
                aLanguageTagODF.maLanguage = sValue;
                break;
            case XML_TOK_STYLE_ATTR_SCRIPT:
                aLanguageTagODF.maScript = sValue;
                break;
            case XML_TOK_STYLE_ATTR_COUNTRY:
                aLanguageTagODF.maCountry = sValue;
                break;
            case XML_TOK_STYLE_ATTR_TITLE:
                sFormatTitle = sValue;
                break;
            case XML_TOK_STYLE_ATTR_AUTOMATIC_ORDER:
                if (::sax::Converter::convertBool( bAttrBool, sValue ))
                    bAutoOrder = bAttrBool;
                break;
            case XML_TOK_STYLE_ATTR_FORMAT_SOURCE:
                SvXMLUnitConverter::convertEnum( bFromSystem, sValue, aFormatSourceMap );
                break;
            case XML_TOK_STYLE_ATTR_TRUNCATE_ON_OVERFLOW:
                if (::sax::Converter::convertBool( bAttrBool, sValue ))
                    bTruncate = bAttrBool;
                break;
            case XML_TOK_STYLE_ATTR_VOLATILE:
                //  volatile formats can be removed after importing
                //  if not used in other styles
                if (::sax::Converter::convertBool( bAttrBool, sValue ))
                    bRemoveAfterUse = bAttrBool;
                break;
            case XML_TOK_STYLE_ATTR_TRANSL_FORMAT:
                aNatNumAttr.Format = sValue;
                break;
            case XML_TOK_STYLE_ATTR_TRANSL_SPELLOUT:
                aSpellout = sValue;
                break;
            case XML_TOK_STYLE_ATTR_TRANSL_LANGUAGE:
                aNatNumAttr.Locale.Language = sValue;
                break;
            case XML_TOK_STYLE_ATTR_TRANSL_COUNTRY:
                aNatNumAttr.Locale.Country = sValue;
                break;
            case XML_TOK_STYLE_ATTR_TRANSL_STYLE:
                aNatNumAttr.Style = sValue;
                break;
        }
    }

    if (!aLanguageTagODF.isEmpty())
    {
        nFormatLang = aLanguageTagODF.getLanguageTag().getLanguageType( false);
        if ( nFormatLang == LANGUAGE_DONTKNOW )
            nFormatLang = LANGUAGE_SYSTEM;          //! error handling for unknown locales?
    }

    if ( !aNatNumAttr.Format.isEmpty() || !aSpellout.isEmpty() )
    {
        LanguageTag aLanguageTag( OUString(), aNatNumAttr.Locale.Language,
                    OUString(), aNatNumAttr.Locale.Country);
        aNatNumAttr.Locale = aLanguageTag.getLocale( false);

        // NatNum12 spell out formula (cardinal, ordinal, ordinal-feminine etc.)
        if ( !aSpellout.isEmpty() )
        {
            aFormatCode.append( "[NatNum12 " );
            aFormatCode.append( aSpellout );
        } else {
            SvNumberFormatter* pFormatter = pData->GetNumberFormatter();
            if ( !pFormatter ) return;

            sal_Int32 nNatNum = pFormatter->GetNatNum()->convertFromXmlAttributes( aNatNumAttr );
            aFormatCode.append( "[NatNum" );
            aFormatCode.append( nNatNum );
        }

        LanguageType eLang = aLanguageTag.getLanguageType( false );
        if ( eLang == LANGUAGE_DONTKNOW )
            eLang = LANGUAGE_SYSTEM;            //! error handling for unknown locales?
        if ( eLang != nFormatLang && eLang != LANGUAGE_SYSTEM )
        {
            aFormatCode.append( "][$-" );
            // language code in upper hex:
            aFormatCode.append(OUString::number(static_cast<sal_uInt16>(eLang), 16).toAsciiUpperCase());
        }
        aFormatCode.append( ']' );
    }
}

SvXMLNumFormatContext::SvXMLNumFormatContext( SvXMLImport& rImport,
                                    sal_uInt16 nPrfx, const OUString& rLName,
                                    const uno::Reference<xml::sax::XAttributeList>& xAttrList,
                                    const sal_Int32 nTempKey,
                                    SvXMLStylesContext& rStyles ) :
    SvXMLStyleContext( rImport, nPrfx, rLName, xAttrList, XmlStyleFamily::DATA_STYLE ),
    pData( nullptr ),
    pStyles( &rStyles ),
    aMyConditions(),
    nType( 0 ),
    nKey(nTempKey),
    nFormatLang( LANGUAGE_SYSTEM ),
    bAutoOrder( false ),
    bFromSystem( false ),
    bTruncate( true ),
    bAutoDec( false ),
    bAutoInt( false ),
    bHasExtraText( false ),
    bHasLongDoW( false ),
    bHasEra( false ),
    bHasDateTime( false ),
    bRemoveAfterUse( false ),
    eDateDOW( XML_DEA_NONE ),
    eDateDay( XML_DEA_NONE ),
    eDateMonth( XML_DEA_NONE ),
    eDateYear( XML_DEA_NONE ),
    eDateHours( XML_DEA_NONE ),
    eDateMins( XML_DEA_NONE ),
    eDateSecs( XML_DEA_NONE ),
    bDateNoDefault( false )
{
    SetAttribute(XML_NAMESPACE_STYLE, GetXMLToken(XML_NAME), rLName);
}

SvXMLNumFormatContext::~SvXMLNumFormatContext()
{
}

SvXMLImportContextRef SvXMLNumFormatContext::CreateChildContext(
                                    sal_uInt16 nPrfx, const OUString& rLName,
                                    const uno::Reference<xml::sax::XAttributeList>& xAttrList )
{
    SvXMLImportContext* pContext = nullptr;

    const SvXMLTokenMap& rTokenMap = pData->GetStyleElemTokenMap();
    sal_uInt16 nToken = rTokenMap.Get( nPrfx, rLName );
    switch (nToken)
    {
        case XML_TOK_STYLE_TEXT:
        case XML_TOK_STYLE_FILL_CHARACTER:
        case XML_TOK_STYLE_NUMBER:
        case XML_TOK_STYLE_SCIENTIFIC_NUMBER:
        case XML_TOK_STYLE_FRACTION:
        case XML_TOK_STYLE_CURRENCY_SYMBOL:
        case XML_TOK_STYLE_DAY:
        case XML_TOK_STYLE_MONTH:
        case XML_TOK_STYLE_YEAR:
        case XML_TOK_STYLE_ERA:
        case XML_TOK_STYLE_DAY_OF_WEEK:
        case XML_TOK_STYLE_WEEK_OF_YEAR:
        case XML_TOK_STYLE_QUARTER:
        case XML_TOK_STYLE_HOURS:
        case XML_TOK_STYLE_AM_PM:
        case XML_TOK_STYLE_MINUTES:
        case XML_TOK_STYLE_SECONDS:
        case XML_TOK_STYLE_BOOLEAN:
        case XML_TOK_STYLE_TEXT_CONTENT:
            pContext = new SvXMLNumFmtElementContext( GetImport(), nPrfx, rLName,
                                                        *this, nToken, xAttrList );
            break;

        case XML_TOK_STYLE_PROPERTIES:
            pContext = new SvXMLNumFmtPropContext( GetImport(), nPrfx, rLName,
                                                        *this, xAttrList );
            break;
        case XML_TOK_STYLE_MAP:
            {
                //  SvXMLNumFmtMapContext::EndElement adds to aMyConditions,
                //  so there's no need for an extra flag
                pContext = new SvXMLNumFmtMapContext( GetImport(), nPrfx, rLName,
                                                            *this, xAttrList );
            }
            break;
    }

    if( !pContext )
    {
        SAL_WARN("xmloff.core", "No context for unknown-element " << rLName);
        pContext = new SvXMLImportContext(GetImport(), nPrfx, rLName);
    }

    return pContext;
}

sal_Int32 SvXMLNumFormatContext::GetKey()
{
    if (nKey > -1)
    {
        if (bRemoveAfterUse)
        {
            //  format is used -> don't remove
            bRemoveAfterUse = false;
            if (pData)
                pData->SetUsed(nKey);

            //  Add to import's list of keys now - CreateAndInsert didn't add
            //  the style if bRemoveAfterUse was set.
            GetImport().AddNumberStyle( nKey, GetName() );
        }
        return nKey;
    }
    else
    {
        // reset bRemoveAfterUse before CreateAndInsert, so AddKey is called without bRemoveAfterUse set
        bRemoveAfterUse = false;
        CreateAndInsert(true);
        return nKey;
    }
}

sal_Int32 SvXMLNumFormatContext::PrivateGetKey()
{
    //  used for map elements in CreateAndInsert - don't reset bRemoveAfterUse flag

    if (nKey > -1)
        return nKey;
    else
    {
        CreateAndInsert(true);
        return nKey;
    }
}

sal_Int32 SvXMLNumFormatContext::CreateAndInsert( css::uno::Reference< css::util::XNumberFormatsSupplier > const & xFormatsSupplier )
{
    if (nKey <= -1)
    {
        SvNumberFormatter* pFormatter = nullptr;
        SvNumberFormatsSupplierObj* pObj =
                        comphelper::getUnoTunnelImplementation<SvNumberFormatsSupplierObj>( xFormatsSupplier );
        if (pObj)
            pFormatter = pObj->GetNumberFormatter();

        if ( pFormatter )
            return CreateAndInsert( pFormatter );
        else
            return -1;
    }
    else
        return nKey;
}

void SvXMLNumFormatContext::CreateAndInsert(bool /*bOverwrite*/)
{
    if (nKey <= -1)
        CreateAndInsert(pData->GetNumberFormatter());
}

sal_Int32 SvXMLNumFormatContext::CreateAndInsert(SvNumberFormatter* pFormatter)
{
    if (!pFormatter)
    {
        OSL_FAIL("no number formatter");
        return -1;
    }

    sal_uInt32 nIndex = NUMBERFORMAT_ENTRY_NOT_FOUND;

    for (size_t i = 0; i < aMyConditions.size(); i++)
    {
        SvXMLNumFormatContext* pStyle = const_cast<SvXMLNumFormatContext*>( static_cast<const SvXMLNumFormatContext *>(pStyles->FindStyleChildContext(
            XmlStyleFamily::DATA_STYLE, aMyConditions[i].sMapName)));
        if (this == pStyle)
        {
            SAL_INFO("xmloff.style", "invalid style:map references containing style");
            pStyle = nullptr;
        }
        if (pStyle)
        {
            if (pStyle->PrivateGetKey() > -1)     // don't reset pStyle's bRemoveAfterUse flag
                AddCondition(i);
        }
    }

    if ( aFormatCode.isEmpty() )
    {
        //  insert empty format as empty string (with quotes)
        //  #93901# this check has to be done before inserting the conditions
        aFormatCode.append("\"\"");    // ""
    }

    aFormatCode.insert( 0, aConditions.makeStringAndClear() );
    OUString sFormat = aFormatCode.makeStringAndClear();

    //  test special cases

    if ( bAutoDec )         // automatic decimal places
    {
        //  #99391# adjust only if the format contains no text elements, no conditions
        //  and no color definition (detected by the '[' at the start)

        if ( nType == XML_TOK_STYLES_NUMBER_STYLE && !bHasExtraText &&
                aMyConditions.empty() && sFormat.toChar() != '[' )
            nIndex = pFormatter->GetStandardIndex( nFormatLang );
    }
    if ( bAutoInt )         // automatic integer digits
    {
        //! only if two decimal places was set?

        if ( nType == XML_TOK_STYLES_NUMBER_STYLE && !bHasExtraText &&
                aMyConditions.empty() && sFormat.toChar() != '[' )
            nIndex = pFormatter->GetFormatIndex( NF_NUMBER_SYSTEM, nFormatLang );
    }

    //  boolean is always the builtin boolean format
    //  (no other boolean formats are implemented)
    if ( nType == XML_TOK_STYLES_BOOLEAN_STYLE )
        nIndex = pFormatter->GetFormatIndex( NF_BOOLEAN, nFormatLang );

    //  check for default date formats
    if ( nType == XML_TOK_STYLES_DATE_STYLE && bAutoOrder && !bDateNoDefault )
    {
        NfIndexTableOffset eFormat = static_cast<NfIndexTableOffset>(SvXMLNumFmtDefaults::GetDefaultDateFormat(
            eDateDOW, eDateDay, eDateMonth, eDateYear,
            eDateHours, eDateMins, eDateSecs, bFromSystem ));
        if ( eFormat < NF_INDEX_TABLE_RESERVED_START )
        {
            //  #109651# if a date format has the automatic-order attribute and
            //  contains exactly the elements of one of the default date formats,
            //  use that default format, with the element order and separators
            //  from the current locale settings

            nIndex = pFormatter->GetFormatIndex( eFormat, nFormatLang );
        }
    }

    if ( nIndex == NUMBERFORMAT_ENTRY_NOT_FOUND && !sFormat.isEmpty() )
    {
        //  insert by format string

        OUString aFormatStr( sFormat );
        nIndex = pFormatter->GetEntryKey( aFormatStr, nFormatLang );
        if ( nIndex == NUMBERFORMAT_ENTRY_NOT_FOUND )
        {
            sal_Int32  nErrPos = 0;
            SvNumFormatType l_nType = SvNumFormatType::ALL;
            bool bOk = pFormatter->PutEntry( aFormatStr, nErrPos, l_nType, nIndex, nFormatLang );
            if ( !bOk && nErrPos == 0 && aFormatStr != sFormat )
            {
                //  if the string was modified by PutEntry, look for an existing format
                //  with the modified string
                nIndex = pFormatter->GetEntryKey( aFormatStr, nFormatLang );
                if ( nIndex != NUMBERFORMAT_ENTRY_NOT_FOUND )
                    bOk = true;
            }
            if (!bOk)
                nIndex = NUMBERFORMAT_ENTRY_NOT_FOUND;
        }
    }

//! I18N doesn't provide SYSTEM or extended date information yet
    if ( nIndex != NUMBERFORMAT_ENTRY_NOT_FOUND && !bAutoOrder )
    {
        //  use fixed-order formats instead of SYS... if bAutoOrder is false
        //  (only if the format strings are equal for the locale)

        NfIndexTableOffset eOffset = pFormatter->GetIndexTableOffset( nIndex );
        if ( eOffset == NF_DATE_SYS_DMMMYYYY )
        {
            sal_uInt32 nNewIndex = pFormatter->GetFormatIndex( NF_DATE_DIN_DMMMYYYY, nFormatLang );
            const SvNumberformat* pOldEntry = pFormatter->GetEntry( nIndex );
            const SvNumberformat* pNewEntry = pFormatter->GetEntry( nNewIndex );
            if ( pOldEntry && pNewEntry && pOldEntry->GetFormatstring() == pNewEntry->GetFormatstring() )
                nIndex = nNewIndex;
        }
        else if ( eOffset == NF_DATE_SYS_DMMMMYYYY )
        {
            sal_uInt32 nNewIndex = pFormatter->GetFormatIndex( NF_DATE_DIN_DMMMMYYYY, nFormatLang );
            const SvNumberformat* pOldEntry = pFormatter->GetEntry( nIndex );
            const SvNumberformat* pNewEntry = pFormatter->GetEntry( nNewIndex );
            if ( pOldEntry && pNewEntry && pOldEntry->GetFormatstring() == pNewEntry->GetFormatstring() )
                nIndex = nNewIndex;
        }
    }

    if ((nIndex != NUMBERFORMAT_ENTRY_NOT_FOUND) && !sFormatTitle.isEmpty())
    {
        SvNumberformat* pFormat = const_cast<SvNumberformat*>(pFormatter->GetEntry( nIndex ));
        if (pFormat)
        {
            pFormat->SetComment(sFormatTitle);
        }
    }

    if ( nIndex == NUMBERFORMAT_ENTRY_NOT_FOUND )
    {
        OSL_FAIL("invalid number format");
        nIndex = pFormatter->GetStandardIndex( nFormatLang );
    }

    pData->AddKey( nIndex, GetName(), bRemoveAfterUse );
    nKey = nIndex;

    //  Add to import's list of keys (shared between styles and content import)
    //  only if not volatile - formats are removed from NumberFormatter at the
    //  end of each import (in SvXMLNumFmtHelper dtor).
    //  If bRemoveAfterUse is reset later in GetKey, AddNumberStyle is called there.

    if (!bRemoveAfterUse)
        GetImport().AddNumberStyle( nKey, GetName() );

    return nKey;
}

const LocaleDataWrapper& SvXMLNumFormatContext::GetLocaleData() const
{
    return pData->GetLocaleData( nFormatLang );
}

void SvXMLNumFormatContext::AddToCode( sal_Unicode c )
{
    aFormatCode.append( c );
    bHasExtraText = true;
}

void SvXMLNumFormatContext::AddToCode( const OUString& rString )
{
    aFormatCode.append( rString );
    bHasExtraText = true;
}

void SvXMLNumFormatContext::AddNumber( const SvXMLNumberInfo& rInfo )
{
    SvNumberFormatter* pFormatter = pData->GetNumberFormatter();
    if (!pFormatter)
        return;

    //  store special conditions
    bAutoDec = ( rInfo.nDecimals < 0 );
    bAutoInt = ( rInfo.nInteger < 0 );

    sal_uInt16 nPrec = 0;
    sal_uInt16 nLeading = 0;
    if ( rInfo.nDecimals >= 0 )                     //  < 0 : Default
        nPrec = static_cast<sal_uInt16>(rInfo.nDecimals);
    if ( rInfo.nInteger >= 0 )                      //  < 0 : Default
        nLeading = static_cast<sal_uInt16>(rInfo.nInteger);

    if ( bAutoDec )
    {
        if ( nType == XML_TOK_STYLES_CURRENCY_STYLE )
        {
            //  for currency formats, "automatic decimals" is used for the automatic
            //  currency format with (fixed) decimals from the locale settings

            const LocaleDataWrapper& rLoc = pData->GetLocaleData( nFormatLang );
            nPrec = rLoc.getCurrDigits();
        }
        else
        {
            //  for other types, "automatic decimals" means dynamic determination of
            //  decimals, as achieved with the "general" keyword

            aFormatCode.append( pFormatter->GetStandardName( nFormatLang ) );
            return;
        }
    }
    if ( bAutoInt )
    {
        //!...
    }

    sal_uInt16 nGenPrec = nPrec;
    if ( rInfo.nMinDecimalDigits >= 0 )
        nGenPrec = rInfo.nMinDecimalDigits;
    if ( rInfo.bDecReplace )
        nGenPrec = 0;               // generate format without decimals...

    bool bGrouping = rInfo.bGrouping;
    size_t const nEmbeddedCount = rInfo.m_EmbeddedElements.size();
    if ( nEmbeddedCount )
        bGrouping = false;      // grouping and embedded characters can't be used together

    sal_uInt32 nStdIndex = pFormatter->GetStandardIndex( nFormatLang );
    OUStringBuffer aNumStr = pFormatter->GenerateFormat( nStdIndex, nFormatLang,
                                                         bGrouping, false, nGenPrec, nLeading );

    if ( rInfo.nExpDigits >= 0 && nLeading == 0 && !bGrouping && nEmbeddedCount == 0 )
    {
        // #i43959# For scientific numbers, "#" in the integer part forces a digit,
        // so it has to be removed if nLeading is 0 (".00E+0", not "#.00E+0").

        aNumStr.stripStart('#');
    }

    if ( bGrouping && rInfo.nExpInterval > rInfo.nInteger )
    {
        sal_Int32 nIndex = 0;
        sal_Int32 nDigits = rInfo.nInteger;
        sal_Int32 nIntegerEnd = aNumStr.indexOf( pFormatter->GetNumDecimalSep() );
        if ( nIntegerEnd < 0 )
            nIntegerEnd = aNumStr.getLength();
        while ( nIndex >= 0 && nIndex < nIntegerEnd )
        {
            if ( ( nIndex = aNumStr.indexOf( '#', nIndex ) ) >= 0 )
            {
                nDigits ++;
                nIndex ++;
            }
            else
                nIndex = -1;
        }
        while ( rInfo.nExpInterval > nDigits )
        {
            nDigits++;
            aNumStr.insert( 0, '#' );
        }
    }

    if ( nEmbeddedCount )
    {
        //  insert embedded strings into number string
        //  only the integer part is supported
        //  nZeroPos is the string position where format position 0 is inserted

        sal_Int32 nZeroPos = aNumStr.indexOf( pData->GetLocaleData( nFormatLang ).getNumDecimalSep() );
        if ( nZeroPos < 0 )
        {
            nZeroPos = aNumStr.getLength();
        }

        // m_EmbeddedElements is sorted - last entry has the largest position (leftmost)
        sal_Int32 const nLastFormatPos = rInfo.m_EmbeddedElements.rbegin()->first;
        if ( nLastFormatPos >= nZeroPos )
        {
            //  add '#' characters so all embedded texts are really embedded in digits
            //  (there always has to be a digit before the leftmost embedded text)

            sal_Int32 nAddCount = nLastFormatPos + 1 - nZeroPos;
            for(sal_Int32 index = 0; index < nAddCount; ++index)
            {
                aNumStr.insert(0, '#');
            }
            nZeroPos = nZeroPos + nAddCount;
        }

        // m_EmbeddedElements is sorted with ascending positions - loop is from right to left
        for (auto const& it : rInfo.m_EmbeddedElements)
        {
            sal_Int32 const nFormatPos = it.first;
            sal_Int32 nInsertPos = nZeroPos - nFormatPos;
            if ( nFormatPos >= 0 && nInsertPos >= 0 )
            {
                //  #107805# always quote embedded strings - even space would otherwise
                //  be recognized as thousands separator in French.

                aNumStr.insert(nInsertPos, '"');
                aNumStr.insert(nInsertPos, it.second);
                aNumStr.insert(nInsertPos, '"');
            }
        }
    }

    aFormatCode.append( aNumStr.makeStringAndClear() );

    if ( ( rInfo.bDecReplace || rInfo.nMinDecimalDigits < rInfo.nDecimals ) && nPrec )     // add decimal replacement (dashes)
    {
        //  add dashes for explicit decimal replacement, # or ? for variable decimals
        sal_Unicode cAdd = rInfo.bDecReplace ? '-' : ( rInfo.bDecAlign ? '?': '#' );

        if ( rInfo.nMinDecimalDigits == 0 )
            aFormatCode.append( pData->GetLocaleData( nFormatLang ).getNumDecimalSep() );
        for ( sal_uInt16 i=rInfo.nMinDecimalDigits; i<nPrec; i++)
            aFormatCode.append( cAdd );
    }

    //  add extra thousands separators for display factor

    if ( rInfo.fDisplayFactor != 1.0 && rInfo.fDisplayFactor > 0.0 )
    {
        //  test for 1.0 is just for optimization - nSepCount would be 0

        //  one separator for each factor of 1000
        sal_Int32 nSepCount = static_cast<sal_Int32>(::rtl::math::round( log10(rInfo.fDisplayFactor) / 3.0 ));
        if ( nSepCount > 0 )
        {
            OUString aSep = pData->GetLocaleData( nFormatLang ).getNumThousandSep();
            for ( sal_Int32 i=0; i<nSepCount; i++ )
                aFormatCode.append( aSep );
        }
    }
}

void SvXMLNumFormatContext::AddCurrency( const OUString& rContent, LanguageType nLang )
{
    bool bAutomatic = false;
    OUString aSymbol = rContent;
    if ( aSymbol.isEmpty())
    {
        SvNumberFormatter* pFormatter = pData->GetNumberFormatter();
        if ( pFormatter )
        {
            pFormatter->ChangeIntl( nFormatLang );
            OUString sCurString, sDummy;
            pFormatter->GetCompatibilityCurrency( sCurString, sDummy );
            aSymbol = sCurString;

            bAutomatic = true;
        }
    }
    else if ( nLang == LANGUAGE_SYSTEM && aSymbol == "CCC" )
    {
        //  "CCC" is used for automatic long symbol
        bAutomatic = true;
    }

    if ( bAutomatic )
    {
        //  remove unnecessary quotes before automatic symbol (formats like "-(0DM)")
        //  otherwise the currency symbol isn't recognized (#94048#)

        sal_Int32 nLength = aFormatCode.getLength();
        if ( nLength > 1 && aFormatCode[nLength - 1] == '"' )
        {
            //  find start of quoted string
            //  When SvXMLNumFmtElementContext::EndElement creates escaped quotes,
            //  they must be handled here, too.

            sal_Int32 nFirst = nLength - 2;
            while ( nFirst >= 0 && aFormatCode[nFirst] != '"' )
                --nFirst;
            if ( nFirst >= 0 )
            {
                //  remove both quotes from aFormatCode
                OUString aOld = aFormatCode.makeStringAndClear();
                if ( nFirst > 0 )
                    aFormatCode.append( aOld.copy( 0, nFirst ) );
                if ( nLength > nFirst + 2 )
                    aFormatCode.append( aOld.copy( nFirst + 1, nLength - nFirst - 2 ) );
            }
        }
    }

    if (!bAutomatic)
        aFormatCode.append( "[$" );            // intro for "new" currency symbols

    aFormatCode.append( aSymbol );

    if (!bAutomatic)
    {
        if ( nLang != LANGUAGE_SYSTEM )
        {
            //  '-' sign and language code in hex:
            aFormatCode.append("-").append(OUString(OUString::number(sal_uInt16(nLang), 16)).toAsciiUpperCase());
        }

        aFormatCode.append( ']' );    // end of "new" currency symbol
    }
}

void SvXMLNumFormatContext::AddNfKeyword( sal_uInt16 nIndex )
{
    SvNumberFormatter* pFormatter = pData->GetNumberFormatter();
    if (!pFormatter)
        return;

    if ( nIndex == NF_KEY_G || nIndex == NF_KEY_GG || nIndex == NF_KEY_GGG )
        bHasEra = true;

    if ( nIndex == NF_KEY_NNNN )
    {
        nIndex = NF_KEY_NNN;
        bHasLongDoW = true;         // to remove string constant with separator
    }

    OUString sKeyword = pFormatter->GetKeyword( nFormatLang, nIndex );

    if ( nIndex == NF_KEY_H  || nIndex == NF_KEY_HH  ||
         nIndex == NF_KEY_MI || nIndex == NF_KEY_MMI ||
         nIndex == NF_KEY_S  || nIndex == NF_KEY_SS )
    {
        if ( !bTruncate && !bHasDateTime )
        {
            //  with truncate-on-overflow = false, add "[]" to first time part
            aFormatCode.append("[").append(sKeyword).append("]");
        }
        else
        {
            aFormatCode.append( sKeyword );
        }
        bHasDateTime = true;
    }
    else
    {
        aFormatCode.append( sKeyword );
    }
    //  collect the date elements that the format contains, to recognize default date formats
    switch ( nIndex )
    {
        case NF_KEY_NN:     eDateDOW = XML_DEA_SHORT;       break;
        case NF_KEY_NNN:
        case NF_KEY_NNNN:   eDateDOW = XML_DEA_LONG;        break;
        case NF_KEY_D:      eDateDay = XML_DEA_SHORT;       break;
        case NF_KEY_DD:     eDateDay = XML_DEA_LONG;        break;
        case NF_KEY_M:      eDateMonth = XML_DEA_SHORT;     break;
        case NF_KEY_MM:     eDateMonth = XML_DEA_LONG;      break;
        case NF_KEY_MMM:    eDateMonth = XML_DEA_TEXTSHORT; break;
        case NF_KEY_MMMM:   eDateMonth = XML_DEA_TEXTLONG;  break;
        case NF_KEY_YY:     eDateYear = XML_DEA_SHORT;      break;
        case NF_KEY_YYYY:   eDateYear = XML_DEA_LONG;       break;
        case NF_KEY_H:      eDateHours = XML_DEA_SHORT;     break;
        case NF_KEY_HH:     eDateHours = XML_DEA_LONG;      break;
        case NF_KEY_MI:     eDateMins = XML_DEA_SHORT;      break;
        case NF_KEY_MMI:    eDateMins = XML_DEA_LONG;       break;
        case NF_KEY_S:      eDateSecs = XML_DEA_SHORT;      break;
        case NF_KEY_SS:     eDateSecs = XML_DEA_LONG;       break;
        case NF_KEY_AP:
        case NF_KEY_AMPM:   break;          // AM/PM may or may not be in date/time formats -> ignore by itself
        default:
            bDateNoDefault = true;      // any other element -> no default format
    }
}

static bool lcl_IsAtEnd( OUStringBuffer& rBuffer, const OUString& rToken )
{
    sal_Int32 nBufLen = rBuffer.getLength();
    sal_Int32 nTokLen = rToken.getLength();

    if ( nTokLen > nBufLen )
        return false;

    sal_Int32 nStartPos = nBufLen - nTokLen;
    for ( sal_Int32 nTokPos = 0; nTokPos < nTokLen; nTokPos++ )
        if ( rToken[ nTokPos ] != rBuffer[nStartPos + nTokPos] )
            return false;

    return true;
}

bool SvXMLNumFormatContext::ReplaceNfKeyword( sal_uInt16 nOld, sal_uInt16 nNew )
{
    //  replaces one keyword with another if it is found at the end of the code

    SvNumberFormatter* pFormatter = pData->GetNumberFormatter();
    if (!pFormatter)
        return false;

    OUString sOldStr = pFormatter->GetKeyword( nFormatLang, nOld );
    if ( lcl_IsAtEnd( aFormatCode, sOldStr ) )
    {
        // remove old keyword
        aFormatCode.setLength( aFormatCode.getLength() - sOldStr.getLength() );

        // add new keyword
        OUString sNewStr = pFormatter->GetKeyword( nFormatLang, nNew );
        aFormatCode.append( sNewStr );

        return true;    // changed
    }
    return false;       // not found
}

void SvXMLNumFormatContext::AddCondition( const sal_Int32 nIndex )
{
    OUString rApplyName = aMyConditions[nIndex].sMapName;
    OUString rCondition = aMyConditions[nIndex].sCondition;
    SvNumberFormatter* pFormatter = pData->GetNumberFormatter();
    sal_uInt32 l_nKey = pData->GetKeyForName( rApplyName );

    OUString sRealCond;
    if ( pFormatter && l_nKey != NUMBERFORMAT_ENTRY_NOT_FOUND &&
            rCondition.startsWith("value()", &sRealCond) )
    {
        //! test for valid conditions
        //! test for default conditions

        bool bDefaultCond = false;

        //! collect all conditions first and adjust default to >=0, >0 or <0 depending on count
        //! allow blanks in conditions
        if ( aConditions.isEmpty() && aMyConditions.size() == 1 && sRealCond == ">=0" )
            bDefaultCond = true;

        if ( nType == XML_TOK_STYLES_TEXT_STYLE && static_cast<size_t>(nIndex) == aMyConditions.size() - 1 )
        {
            //  The last condition in a number format with a text part can only
            //  be "all other numbers", the condition string must be empty.
            bDefaultCond = true;
        }

        if (!bDefaultCond)
        {
            // Convert != to <>
            sal_Int32 nPos = sRealCond.indexOf( "!=" );
            if ( nPos >= 0 )
            {
                sRealCond = sRealCond.replaceAt( nPos, 2, "<>" );
            }

            nPos = sRealCond.indexOf( '.' );
            if ( nPos >= 0 )
            {
                // #i8026# #103991# localize decimal separator
                const OUString& rDecSep = GetLocaleData().getNumDecimalSep();
                if ( rDecSep.getLength() > 1 || rDecSep[0] != '.' )
                {
                    sRealCond = sRealCond.replaceAt( nPos, 1, rDecSep );
                }
            }
            aConditions.append("[").append(sRealCond).append("]");
        }

        const SvNumberformat* pFormat = pFormatter->GetEntry(l_nKey);
        if ( pFormat )
            aConditions.append( pFormat->GetFormatstring() );

        aConditions.append( ';' );
    }
}

void SvXMLNumFormatContext::AddCondition( const OUString& rCondition, const OUString& rApplyName )
{
    MyCondition aCondition;
    aCondition.sCondition = rCondition;
    aCondition.sMapName = rApplyName;
    aMyConditions.push_back(aCondition);
}

void SvXMLNumFormatContext::AddColor( Color const nColor )
{
    SvNumberFormatter* pFormatter = pData->GetNumberFormatter();
    if (!pFormatter)
        return;

    OUStringBuffer aColName;
    for ( sal_uInt16 i=0; i<XML_NUMF_COLORCOUNT; i++ )
        if (nColor == aNumFmtStdColors[i])
        {
            aColName = pFormatter->GetKeyword( nFormatLang, sal::static_int_cast< sal_uInt16 >(NF_KEY_FIRSTCOLOR + i) );
            break;
        }

    if ( !aColName.isEmpty() )
    {
        aColName.insert( 0, '[' );
        aColName.append( ']' );
        aFormatCode.insert( 0, aColName.makeStringAndClear() );
    }
}

void SvXMLNumFormatContext::UpdateCalendar( const OUString& rNewCalendar, bool bImplicitSecondaryCalendarEC )
{
    if ( rNewCalendar != sCalendar )
    {
        sCalendar = rNewCalendar;
        if ( !sCalendar.isEmpty() && !bImplicitSecondaryCalendarEC )
        {
            aFormatCode.append( "[~" );            // intro for calendar code
            aFormatCode.append( sCalendar );
            aFormatCode.append( ']' );    // end of calendar code
        }
    }
}

bool SvXMLNumFormatContext::IsSystemLanguage() const
{
    return nFormatLang == LANGUAGE_SYSTEM;
}


//  SvXMLNumFmtHelper


SvXMLNumFmtHelper::SvXMLNumFmtHelper(
    const uno::Reference<util::XNumberFormatsSupplier>& rSupp,
    const uno::Reference<uno::XComponentContext>& rxContext )
{
    SAL_WARN_IF( !rxContext.is(), "xmloff", "got no service manager" );

    SvNumberFormatter* pFormatter = nullptr;
    SvNumberFormatsSupplierObj* pObj =
                    comphelper::getUnoTunnelImplementation<SvNumberFormatsSupplierObj>( rSupp );
    if (pObj)
        pFormatter = pObj->GetNumberFormatter();

    pData = std::make_unique<SvXMLNumImpData>( pFormatter, rxContext );
}

SvXMLNumFmtHelper::SvXMLNumFmtHelper(
    SvNumberFormatter* pNumberFormatter,
    const uno::Reference<uno::XComponentContext>& rxContext )
{
    SAL_WARN_IF( !rxContext.is(), "xmloff", "got no service manager" );

    pData = std::make_unique<SvXMLNumImpData>( pNumberFormatter, rxContext );
}

SvXMLNumFmtHelper::~SvXMLNumFmtHelper()
{
    //  remove temporary (volatile) formats from NumberFormatter
    pData->RemoveVolatileFormats();
}

SvXMLStyleContext*  SvXMLNumFmtHelper::CreateChildContext( SvXMLImport& rImport,
                sal_uInt16 nPrefix, const OUString& rLocalName,
                const uno::Reference<xml::sax::XAttributeList>& xAttrList,
                SvXMLStylesContext& rStyles )
{
    SvXMLStyleContext* pContext = nullptr;

    const SvXMLTokenMap& rTokenMap = pData->GetStylesElemTokenMap();
    sal_uInt16 nToken = rTokenMap.Get( nPrefix, rLocalName );
    switch (nToken)
    {
        case XML_TOK_STYLES_NUMBER_STYLE:
        case XML_TOK_STYLES_CURRENCY_STYLE:
        case XML_TOK_STYLES_PERCENTAGE_STYLE:
        case XML_TOK_STYLES_DATE_STYLE:
        case XML_TOK_STYLES_TIME_STYLE:
        case XML_TOK_STYLES_BOOLEAN_STYLE:
        case XML_TOK_STYLES_TEXT_STYLE:
            pContext = new SvXMLNumFormatContext( rImport, nPrefix, rLocalName,
                                                    pData.get(), nToken, xAttrList, rStyles );
            break;
    }

    // return NULL if not a data style, caller must handle other elements
    return pContext;
}

const SvXMLTokenMap& SvXMLNumFmtHelper::GetStylesElemTokenMap()
{
    return pData->GetStylesElemTokenMap();
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
+#: basicprint.src#RID_PRINTDLG_STRLIST.2.itemlist.text
+msgid "All ~Pages"
+msgstr ""
+
+#: basicprint.src#RID_PRINTDLG_STRLIST.3.itemlist.text
+msgid "Pa~ges"
+msgstr "Сторінки"
+
+#: brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_PB_NEW.pushbutton.text
+msgid "New"
+msgstr "Створити"
+
+#: brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_PB_DEL.pushbutton.text
+msgctxt "brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_PB_DEL.pushbutton.text"
+msgid "Delete"
+msgstr "Видалити"
+
+#: brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_CHKB_ACTIVE.checkbox.text
+msgctxt "brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_CHKB_ACTIVE.checkbox.text"
+msgid "Active"
+msgstr "Активувати"
+
+#: brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_FT_PASS.fixedtext.text
+msgid "Pass Count:"
+msgstr "Пропусків:"
+
+#: brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_FT_BRKPOINTS.fixedtext.text
+msgid "Breakpoints"
+msgstr "Точки зупинки"
+
+#: brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.modaldialog.text
+msgctxt "brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.modaldialog.text"
+msgid "Manage Breakpoints"
+msgstr "Точки зупинки"
+
+#: objdlg.src#RID_BASICIDE_OBJCAT.RID_TB_TOOLBOX.TBITEM_SHOW.toolboxitem.text
+msgid "Show"
+msgstr "Показати"
+
+#: objdlg.src#RID_BASICIDE_OBJCAT.dockingwindow.text
+msgid "Object Catalog"
+msgstr ""
+
+#: objdlg.src#RID_STR_TLB_MACROS.string.text
+#, fuzzy
+msgid "Objects Tree"
+msgstr "Об'єкти"
+
+#: moptions.src#RID_MACROOPTIONS.RID_FT_DESCR.fixedtext.text
+msgctxt "moptions.src#RID_MACROOPTIONS.RID_FT_DESCR.fixedtext.text"
+msgid "Description"
+msgstr "Опис"
+
+#: moptions.src#RID_MACROOPTIONS.RID_FL_HELP.fixedline.text
+msgid "Help information"
+msgstr "Довідкова інформація"
+
+#: moptions.src#RID_MACROOPTIONS.RID_FT_HELPID.fixedtext.text
+msgid "Help ID"
+msgstr "ID довідки"
+
+#: moptions.src#RID_MACROOPTIONS.RID_FT_HELPNAME.fixedtext.text
+msgid "Help file name"
+msgstr "Назва файлу довідки"
+
+#: moptions.src#RID_MACROOPTIONS.modaldialog.text
+msgctxt "moptions.src#RID_MACROOPTIONS.modaldialog.text"
+msgid "Description"
+msgstr "Опис"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_TXT_MACROSIN.fixedtext.text
+msgid "Existing macros ~in:"
+msgstr "Існуючі макроси ~в:"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_TXT_MACRONAME.fixedtext.text
+msgid "~Macro name"
+msgstr "~Назва макросу"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_TXT_MACROFROM.fixedtext.text
+msgid "Macro ~from"
+msgstr "Макрос ~з"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_TXT_SAVEMACRO.fixedtext.text
+msgid "Save m~acro in"
+msgstr "Зберегти м~акрос у"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_TXT_DESCRIPTION.fixedtext.text
+msgid "De~scription"
+msgstr "~Опис"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_RUN.pushbutton.text
+msgid "R~un"
+msgstr "Ви~конати"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_CLOSE.cancelbutton.text
+msgctxt "macrodlg.src#RID_MACROCHOOSER.RID_PB_CLOSE.cancelbutton.text"
+msgid "Close"
+msgstr "Закрити"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_ASSIGN.pushbutton.text
+msgid "~Assign..."
+msgstr "П~ризначити..."
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_EDIT.pushbutton.text
+msgctxt "macrodlg.src#RID_MACROCHOOSER.RID_PB_EDIT.pushbutton.text"
+msgid "~Edit"
+msgstr "~Редагувати"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_NEWLIB.pushbutton.text
+msgid "New ~Library"
+msgstr "Нова ~бібліотека"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_NEWMOD.pushbutton.text
+msgid "New M~odule"
+msgstr "Новий ~модуль"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_DEL.pushbutton.text
+msgctxt "macrodlg.src#RID_MACROCHOOSER.RID_PB_DEL.pushbutton.text"
+msgid "~Delete"
+msgstr "В~идалити"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_ORG.pushbutton.text
+msgid "~Organizer..."
+msgstr "К~ерування..."
+
+#: macrodlg.src#RID_MACROCHOOSER.modaldialog.text
+msgid "%PRODUCTNAME Basic Macros"
+msgstr "Макрос %PRODUCTNAME Basic"
+
+#: macrodlg.src#RID_STR_STDMACRONAME.string.text
+msgid "Macro"
+msgstr "Макрос"
+
+#: macrodlg.src#RID_STR_BTNDEL.string.text
+msgctxt "macrodlg.src#RID_STR_BTNDEL.string.text"
+msgid "~Delete"
+msgstr "В~идалити"
+
+#: macrodlg.src#RID_STR_BTNNEW.string.text
+msgid "~New"
+msgstr "~Створити"
+
+#: macrodlg.src#RID_STR_CLOSE.string.text
+msgctxt "macrodlg.src#RID_STR_CLOSE.string.text"
+msgid "Close"
+msgstr "Закрити"
+
+#: macrodlg.src#RID_STR_CHOOSE.string.text
+msgid "Choose"
+msgstr "Вибрати"
+
+#: macrodlg.src#RID_STR_RUN.string.text
+msgid "Run"
+msgstr "Виконати"
+
+#: macrodlg.src#RID_STR_RECORD.string.text
+msgid "~Save"
+msgstr "З~берегти"
diff --git a/source/uk/basctl/source/dlged.po b/source/uk/basctl/source/dlged.po
new file mode 100644
index 00000000000..68d7bd9578d
--- /dev/null
+++ b/source/uk/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: 2011-04-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "Можливі мови"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.PB_ADD_LANG.pushbutton.text
+msgid "Add..."
+msgstr "Додати..."
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.PB_DEL_LANG.pushbutton.text
+msgid "Delete"
+msgstr "Видалити"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.PB_MAKE_DEFAULT.pushbutton.text
+msgid "Default"
+msgstr "Типова"
+
+#: 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 "Типова мова, що використовується за відсутності локалізації для поточної мови інтерфейсу. Окрім того, всі повідомлення типової мови будуть скопійовані у ресурси локалізації мов, що додаються надалі."
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.PB_CLOSE.okbutton.text
+msgid "~Close"
+msgstr "~Закрити"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.STR_DEF_LANG.string.text
+msgid "[Default Language]"
+msgstr "[Типова мова]"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.STR_DELETE.string.text
+msgid "~Delete"
+msgstr "В~идалити"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.STR_CREATE_LANG.string.text
+msgid "<Press 'Add' to create language resources>"
+msgstr "<Натисніть \"Додати\" для створення мовних ресурсів>"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.modaldialog.text
+msgid "Manage User Interface Languages [$1]"
+msgstr "Керування мовами інтерфейсу користувача [$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 ""
+"Ви хочете видалити ресурси обраних мов. Всі повідомлення інтерфейсу користувача для цієї мови будуть видалені.\n"
+"\n"
+"Видалити ресурси обраних мов?"
+
+#: managelang.src#RID_QRYBOX_LANGUAGE.querybox.title
+msgid "Delete Language Resources"
+msgstr "Видалити мовні ресурси"
+
+#: managelang.src#RID_DLG_SETDEF_LANGUAGE.FT_DEF_LANGUAGE.fixedtext.text
+msgid "Default language"
+msgstr "Типова мова"
+
+#: 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 "Виберіть мову, яка буде типово використовуватись для інтерфейсу користувача. Всі наявні повідомлення будуть призначені ресурсам, що створені для обраної мови."
+
+#: managelang.src#RID_DLG_SETDEF_LANGUAGE.STR_ADDLANG_TITLE.string.text
+msgid "Add User Interface Languages"
+msgstr "Додати мову інтерфейсу користувача"
+
+#: managelang.src#RID_DLG_SETDEF_LANGUAGE.STR_ADDLANG_LABEL.string.text
+msgid "Available Languages"
+msgstr "Доступні мови"
+
+#: 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 "Виберіть мову, яку буде додано. Для цієї мови у бібліотеці будуть створені ресурси. Повідомлення поточної мови будуть скопійовані у ресурси обраної мови."
+
+#: managelang.src#RID_DLG_SETDEF_LANGUAGE.modaldialog.text
+msgid "Set Default User Interface Language"
+msgstr "Встановити типову мову для інтерфейсу користувача"
+
+#: dlgresid.src#RID_STR_BRWTITLE_PROPERTIES.string.text
+msgid "Properties: "
+msgstr "Властивості:"
+
+#: dlgresid.src#RID_STR_BRWTITLE_NO_PROPERTIES.string.text
+msgid "No Control marked"
+msgstr "Жоден елемент керування не виділений"
+
+#: dlgresid.src#RID_STR_BRWTITLE_MULTISELECT.string.text
+msgid "Multiselection"
+msgstr "Груповий вибір"
diff --git a/source/uk/basic/source/classes.po b/source/uk/basic/source/classes.po
new file mode 100644
index 00000000000..1252c36e8c8
--- /dev/null
+++ b/source/uk/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: 2011-04-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: sb.src#RID_BASIC_START.SbERR_SYNTAX___ERRCODE_RES_MASK.string.text
+msgid "Syntax error."
+msgstr "Синтаксична помилка."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_GOSUB___ERRCODE_RES_MASK.string.text
+msgid "Return without Gosub."
+msgstr "Повернення без Gosub."
+
+#: sb.src#RID_BASIC_START.SbERR_REDO_FROM_START___ERRCODE_RES_MASK.string.text
+msgid "Incorrect entry; please retry."
+msgstr "Некоректний запис; будь-ласка повторіть."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_ARGUMENT___ERRCODE_RES_MASK.string.text
+msgid "Invalid procedure call."
+msgstr "Неправильний виклик процедури."
+
+#: sb.src#RID_BASIC_START.SbERR_MATH_OVERFLOW___ERRCODE_RES_MASK.string.text
+msgid "Overflow."
+msgstr "Переповнення."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_MEMORY___ERRCODE_RES_MASK.string.text
+msgid "Not enough memory."
+msgstr "Не достатньо пам'яті."
+
+#: sb.src#RID_BASIC_START.SbERR_ALREADY_DIM___ERRCODE_RES_MASK.string.text
+msgid "Array already dimensioned."
+msgstr "Розмірність масиву вже задано."
+
+#: sb.src#RID_BASIC_START.SbERR_OUT_OF_RANGE___ERRCODE_RES_MASK.string.text
+msgid "Index out of defined range."
+msgstr "Індекс за межами визначеного діапазону."
+
+#: sb.src#RID_BASIC_START.SbERR_DUPLICATE_DEF___ERRCODE_RES_MASK.string.text
+msgid "Duplicate definition."
+msgstr "Спроба перевизначення."
+
+#: sb.src#RID_BASIC_START.SbERR_ZERODIV___ERRCODE_RES_MASK.string.text
+msgid "Division by zero."
+msgstr "Ділення на нуль."
+
+#: sb.src#RID_BASIC_START.SbERR_VAR_UNDEFINED___ERRCODE_RES_MASK.string.text
+msgid "Variable not defined."
+msgstr "Змінна не визначена."
+
+#: sb.src#RID_BASIC_START.SbERR_CONVERSION___ERRCODE_RES_MASK.string.text
+msgid "Data type mismatch."
+msgstr "Несумісні типи даних."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_PARAMETER___ERRCODE_RES_MASK.string.text
+msgid "Invalid parameter."
+msgstr "Неправильний параметр."
+
+#: sb.src#RID_BASIC_START.SbERR_USER_ABORT___ERRCODE_RES_MASK.string.text
+msgid "Process interrupted by user."
+msgstr "Процес перервано користувачем."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_RESUME___ERRCODE_RES_MASK.string.text
+msgid "Resume without error."
+msgstr "Без помилок."
+
+#: sb.src#RID_BASIC_START.SbERR_STACK_OVERFLOW___ERRCODE_RES_MASK.string.text
+msgid "Not enough stack memory."
+msgstr "Недостатній розмір стеку."
+
+#: sb.src#RID_BASIC_START.SbERR_PROC_UNDEFINED___ERRCODE_RES_MASK.string.text
+msgid "Sub-procedure or function procedure not defined."
+msgstr "Підпроцедура або функція не визначена."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_DLL_LOAD___ERRCODE_RES_MASK.string.text
+msgid "Error loading DLL file."
+msgstr "Помилка завантаження файлу DLL."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_DLL_CALL___ERRCODE_RES_MASK.string.text
+msgid "Wrong DLL call convention."
+msgstr "Неправильна послідовність параметрів виклику (call convention) DLL."
+
+#: sb.src#RID_BASIC_START.SbERR_INTERNAL_ERROR___ERRCODE_RES_MASK.string.text
+msgid "Internal error $(ARG1)."
+msgstr "Внутрішня помилка $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_CHANNEL___ERRCODE_RES_MASK.string.text
+msgid "Invalid file name or file number."
+msgstr "Неправильна назва файлу або номер файлу."
+
+#: sb.src#RID_BASIC_START.SbERR_FILE_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "File not found."
+msgstr "Файл не знайдено."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_FILE_MODE___ERRCODE_RES_MASK.string.text
+msgid "Incorrect file mode."
+msgstr "Некоректний режим файлу."
+
+#: sb.src#RID_BASIC_START.SbERR_FILE_ALREADY_OPEN___ERRCODE_RES_MASK.string.text
+msgid "File already open."
+msgstr "Файл вже відкритий."
+
+#: sb.src#RID_BASIC_START.SbERR_IO_ERROR___ERRCODE_RES_MASK.string.text
+msgid "Device I/O error."
+msgstr "Помилка пристрою вводу/виводу."
+
+#: sb.src#RID_BASIC_START.SbERR_FILE_EXISTS___ERRCODE_RES_MASK.string.text
+msgid "File already exists."
+msgstr "Файл вже існує."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_RECORD_LENGTH___ERRCODE_RES_MASK.string.text
+msgid "Incorrect record length."
+msgstr "Некоректна довжина запису даних."
+
+#: sb.src#RID_BASIC_START.SbERR_DISK_FULL___ERRCODE_RES_MASK.string.text
+msgid "Disk or hard drive full."
+msgstr "Диск заповнений."
+
+#: sb.src#RID_BASIC_START.SbERR_READ_PAST_EOF___ERRCODE_RES_MASK.string.text
+msgid "Reading exceeds EOF."
+msgstr "Читання вийшло за межі файлу (EOF)."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_RECORD_NUMBER___ERRCODE_RES_MASK.string.text
+msgid "Incorrect record number."
+msgstr "Некоректний номер запису."
+
+#: sb.src#RID_BASIC_START.SbERR_TOO_MANY_FILES___ERRCODE_RES_MASK.string.text
+msgid "Too many files."
+msgstr "Надто багато файлів."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_DEVICE___ERRCODE_RES_MASK.string.text
+msgid "Device not available."
+msgstr "Пристрій недоступний."
+
+#: sb.src#RID_BASIC_START.SbERR_ACCESS_DENIED___ERRCODE_RES_MASK.string.text
+msgid "Access denied."
+msgstr "Доступ заборонено."
+
+#: sb.src#RID_BASIC_START.SbERR_NOT_READY___ERRCODE_RES_MASK.string.text
+msgid "Disk not ready."
+msgstr "Диск не готовий."
+
+#: sb.src#RID_BASIC_START.SbERR_NOT_IMPLEMENTED___ERRCODE_RES_MASK.string.text
+msgid "Not implemented."
+msgstr "Не реалізовано."
+
+#: sb.src#RID_BASIC_START.SbERR_DIFFERENT_DRIVE___ERRCODE_RES_MASK.string.text
+msgid "Renaming on different drives impossible."
+msgstr "Перейменування на різних дисках неможливе."
+
+#: sb.src#RID_BASIC_START.SbERR_ACCESS_ERROR___ERRCODE_RES_MASK.string.text
+msgid "Path/File access error."
+msgstr "Помилка доступу до файлу."
+
+#: sb.src#RID_BASIC_START.SbERR_PATH_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "Path not found."
+msgstr "Шлях не знайдено."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_OBJECT___ERRCODE_RES_MASK.string.text
+msgid "Object variable not set."
+msgstr "Змінна не встановлена."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_PATTERN___ERRCODE_RES_MASK.string.text
+msgid "Invalid string pattern."
+msgstr "Неправильний зразок рядку."
+
+#: sb.src#RID_BASIC_START.SBERR_IS_NULL___ERRCODE_RES_MASK.string.text
+msgid "Use of zero not permitted."
+msgstr "Вживання нуля не дозволено."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_ERROR___ERRCODE_RES_MASK.string.text
+msgid "DDE Error."
+msgstr "Помилка DDE."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_WAITINGACK___ERRCODE_RES_MASK.string.text
+msgid "Awaiting response to DDE connection."
+msgstr "Очікування відповіді при підключенні через DDE."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_OUTOFCHANNELS___ERRCODE_RES_MASK.string.text
+msgid "No DDE channels available."
+msgstr "Немає вільних каналів DDE."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_NO_RESPONSE___ERRCODE_RES_MASK.string.text
+msgid "No application responded to DDE connect initiation."
+msgstr "Жодна програма не відповіла на спробу встановити з'єднання 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 "Надто багато програм відповіло на спробу встановити з'єднання DDE."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_CHANNEL_LOCKED___ERRCODE_RES_MASK.string.text
+msgid "DDE channel locked."
+msgstr "Канал DDE заблокований."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_NOTPROCESSED___ERRCODE_RES_MASK.string.text
+msgid "External application cannot execute DDE operation."
+msgstr "Зовнішня програма не може виконувати операцію DDE."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_TIMEOUT___ERRCODE_RES_MASK.string.text
+msgid "Timeout while waiting for DDE response."
+msgstr "Затримка під час очікування на відповідь DDE."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_USER_INTERRUPT___ERRCODE_RES_MASK.string.text
+msgid "User pressed ESCAPE during DDE operation."
+msgstr "Користувач натиснув ESCAPE під час операції DDE."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_BUSY___ERRCODE_RES_MASK.string.text
+msgid "External application busy."
+msgstr "Зовнішня програма зайнята."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_NO_DATA___ERRCODE_RES_MASK.string.text
+msgid "DDE operation without data."
+msgstr "Операція DDE без даних."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_WRONG_DATA_FORMAT___ERRCODE_RES_MASK.string.text
+msgid "Data are in wrong format."
+msgstr "Дані у неправильному форматі."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_PARTNER_QUIT___ERRCODE_RES_MASK.string.text
+msgid "External application has been terminated."
+msgstr "Зовнішня програма була закрита."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_CONV_CLOSED___ERRCODE_RES_MASK.string.text
+msgid "DDE connection interrupted or modified."
+msgstr "Зв'язок через DDE перервано."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_NO_CHANNEL___ERRCODE_RES_MASK.string.text
+msgid "DDE method invoked with no channel open."
+msgstr "Метод DDE викликаний без наявності каналу DDE."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_INVALID_LINK___ERRCODE_RES_MASK.string.text
+msgid "Invalid DDE link format."
+msgstr "Неправильний формат зв'язку через DDE."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_QUEUE_OVERFLOW___ERRCODE_RES_MASK.string.text
+msgid "DDE message has been lost."
+msgstr "Повідомлення DDE втрачено."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_LINK_ALREADY_EST___ERRCODE_RES_MASK.string.text
+msgid "Paste link already performed."
+msgstr "Зв'язок для вставки вже виконаною."
+
+#: 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 "Режим зв'язку не може бути встановлений через неправильний заголовок."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_DLL_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "DDE requires the DDEML.DLL file."
+msgstr "Для DDE потрібен файл DDEML.DLL."
+
+#: sb.src#RID_BASIC_START.SbERR_CANNOT_LOAD___ERRCODE_RES_MASK.string.text
+msgid "Module cannot be loaded; invalid format."
+msgstr "Не вдається завантажити модуль; неправильний формат"
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_INDEX___ERRCODE_RES_MASK.string.text
+msgid "Invalid object index."
+msgstr "Неправильний індекс об'єкту."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_ACTIVE_OBJECT___ERRCODE_RES_MASK.string.text
+msgid "Object is not available."
+msgstr "Об'єкт недоступний."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_PROP_VALUE___ERRCODE_RES_MASK.string.text
+msgid "Incorrect property value."
+msgstr "Неправильне значення властивості."
+
+#: sb.src#RID_BASIC_START.SbERR_PROP_READONLY___ERRCODE_RES_MASK.string.text
+msgid "This property is read-only."
+msgstr "Властивість лише для читання."
+
+#: sb.src#RID_BASIC_START.SbERR_PROP_WRITEONLY___ERRCODE_RES_MASK.string.text
+msgid "This property is write only."
+msgstr "Властивість лише для запису."
+
+#: sb.src#RID_BASIC_START.SbERR_INVALID_OBJECT___ERRCODE_RES_MASK.string.text
+msgid "Invalid object reference."
+msgstr "Неправильне посилання на об'єкт."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_METHOD___ERRCODE_RES_MASK.string.text
+msgid "Property or method not found: $(ARG1)."
+msgstr "Властивість або метод не знайдено."
+
+#: sb.src#RID_BASIC_START.SbERR_NEEDS_OBJECT___ERRCODE_RES_MASK.string.text
+msgid "Object required."
+msgstr "Вимагається об'єкт."
+
+#: sb.src#RID_BASIC_START.SbERR_INVALID_USAGE_OBJECT___ERRCODE_RES_MASK.string.text
+msgid "Invalid use of an object."
+msgstr "Неправильне використання об'єкту."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_OLE___ERRCODE_RES_MASK.string.text
+msgid "OLE Automation is not supported by this object."
+msgstr "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 "Об'єкт не підтримує цю властивість або метод."
+
+#: sb.src#RID_BASIC_START.SbERR_OLE_ERROR___ERRCODE_RES_MASK.string.text
+msgid "OLE Automation Error."
+msgstr "Помилка OLE."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_ACTION___ERRCODE_RES_MASK.string.text
+msgid "This action is not supported by given object."
+msgstr "Ця дія не підтримується даним об'єктом."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_NAMED_ARGS___ERRCODE_RES_MASK.string.text
+msgid "Named arguments are not supported by given object."
+msgstr "Названі аргументи не підтримуються даним об'єктом."
+
+#: 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 "Поточні регіональні параметри не підтримуються даним об'єктом."
+
+#: sb.src#RID_BASIC_START.SbERR_NAMED_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "Named argument not found."
+msgstr "Вказаний аргумент не знайдено."
+
+#: sb.src#RID_BASIC_START.SbERR_NOT_OPTIONAL___ERRCODE_RES_MASK.string.text
+msgid "Argument is not optional."
+msgstr "Аргумент є обов'язковим."
+
+#: 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 "Неправильна кількість аргументів."
+
+#: sb.src#RID_BASIC_START.SbERR_NOT_A_COLL___ERRCODE_RES_MASK.string.text
+msgid "Object is not a list."
+msgstr "Об'єкт не є списком."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_ORDINAL___ERRCODE_RES_MASK.string.text
+msgid "Invalid ordinal number."
+msgstr "Неправильний порядковий номер."
+
+#: sb.src#RID_BASIC_START.SbERR_DLLPROC_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "Specified DLL function not found."
+msgstr "Функція у DLL не знайдена."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_CLIPBD_FORMAT___ERRCODE_RES_MASK.string.text
+msgid "Invalid clipboard format."
+msgstr "Неправильний формат буферу обміну."
+
+#: sb.src#RID_BASIC_START.SbERR_PROPERTY_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "Object does not have this property."
+msgstr "Об'єкт не має цієї властивості."
+
+#: sb.src#RID_BASIC_START.SbERR_METHOD_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "Object does not have this method."
+msgstr "Об'єкт не має цього методу."
+
+#: sb.src#RID_BASIC_START.SbERR_ARG_MISSING___ERRCODE_RES_MASK.string.text
+msgid "Required argument lacking."
+msgstr "Відсутній обов'язковий аргумент."
+
+#: 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 "Неправильна кількість аргументів."
+
+#: sb.src#RID_BASIC_START.SbERR_METHOD_FAILED___ERRCODE_RES_MASK.string.text
+msgid "Error executing a method."
+msgstr "Помилка виконання методу."
+
+#: sb.src#RID_BASIC_START.SbERR_SETPROP_FAILED___ERRCODE_RES_MASK.string.text
+msgid "Unable to set property."
+msgstr "Неможливо встановити властивість."
+
+#: sb.src#RID_BASIC_START.SbERR_GETPROP_FAILED___ERRCODE_RES_MASK.string.text
+msgid "Unable to determine property."
+msgstr "Неможливо визначити властивість."
+
+#: sb.src#RID_BASIC_START.SbERR_UNEXPECTED___ERRCODE_RES_MASK.string.text
+msgid "Unexpected symbol: $(ARG1)."
+msgstr "Неочікуваний символ: $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_EXPECTED___ERRCODE_RES_MASK.string.text
+msgid "Expected: $(ARG1)."
+msgstr "Очікується: $(ARG1)"
+
+#: sb.src#RID_BASIC_START.SbERR_SYMBOL_EXPECTED___ERRCODE_RES_MASK.string.text
+msgid "Symbol expected."
+msgstr "Очікуваний символ."
+
+#: sb.src#RID_BASIC_START.SbERR_VAR_EXPECTED___ERRCODE_RES_MASK.string.text
+msgid "Variable expected."
+msgstr "Очікувана змінна."
+
+#: sb.src#RID_BASIC_START.SbERR_LABEL_EXPECTED___ERRCODE_RES_MASK.string.text
+msgid "Label expected."
+msgstr "Очікується позначка."
+
+#: sb.src#RID_BASIC_START.SbERR_LVALUE_EXPECTED___ERRCODE_RES_MASK.string.text
+msgid "Value cannot be applied."
+msgstr "Неможливо застосувати значення."
+
+#: sb.src#RID_BASIC_START.SbERR_VAR_DEFINED___ERRCODE_RES_MASK.string.text
+msgid "Variable $(ARG1) already defined."
+msgstr "Змінна $(ARG1) вже визначена."
+
+#: sb.src#RID_BASIC_START.SbERR_PROC_DEFINED___ERRCODE_RES_MASK.string.text
+msgid "Sub procedure or function procedure $(ARG1) already defined."
+msgstr "Підпроцедуру або функцію $(ARG1) вже визначено"
+
+#: sb.src#RID_BASIC_START.SbERR_LABEL_DEFINED___ERRCODE_RES_MASK.string.text
+msgid "Label $(ARG1) already defined."
+msgstr "Позначка $(ARG1) вже визначена."
+
+#: sb.src#RID_BASIC_START.SbERR_UNDEF_VAR___ERRCODE_RES_MASK.string.text
+msgid "Variable $(ARG1) not found."
+msgstr "Змінну $(ARG1) не знайдено."
+
+#: sb.src#RID_BASIC_START.SbERR_UNDEF_ARRAY___ERRCODE_RES_MASK.string.text
+msgid "Array or procedure $(ARG1) not found."
+msgstr "Масив або процедуру $(ARG1) не знайдено."
+
+#: sb.src#RID_BASIC_START.SbERR_UNDEF_PROC___ERRCODE_RES_MASK.string.text
+msgid "Procedure $(ARG1) not found."
+msgstr "Процедуру $(ARG1) не знайдено."
+
+#: sb.src#RID_BASIC_START.SbERR_UNDEF_LABEL___ERRCODE_RES_MASK.string.text
+msgid "Label $(ARG1) undefined."
+msgstr "Позначка $(ARG1) не визначена."
+
+#: sb.src#RID_BASIC_START.SbERR_UNDEF_TYPE___ERRCODE_RES_MASK.string.text
+msgid "Unknown data type $(ARG1)."
+msgstr "Невідомий тип даних $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_EXIT___ERRCODE_RES_MASK.string.text
+msgid "Exit $(ARG1) expected."
+msgstr "Очікується Exit $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_BLOCK___ERRCODE_RES_MASK.string.text
+msgid "Statement block still open: $(ARG1) missing."
+msgstr "Блок інструкцій досі відкритий: $(ARG1) відсутній."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_BRACKETS___ERRCODE_RES_MASK.string.text
+msgid "Parentheses do not match."
+msgstr "Непарні круглі дужки."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_DECLARATION___ERRCODE_RES_MASK.string.text
+msgid "Symbol $(ARG1) already defined differently."
+msgstr "Символ $(ARG1) вже був визначений."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_PARAMETERS___ERRCODE_RES_MASK.string.text
+msgid "Parameters do not correspond to procedure."
+msgstr "Параметри не відповідають процедурі."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_CHAR_IN_NUMBER___ERRCODE_RES_MASK.string.text
+msgid "Invalid character in number."
+msgstr "Неприпустимий символ у числі."
+
+#: sb.src#RID_BASIC_START.SbERR_MUST_HAVE_DIMS___ERRCODE_RES_MASK.string.text
+msgid "Array must be dimensioned."
+msgstr "Необхідно вказати розмірність масиву."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_IF___ERRCODE_RES_MASK.string.text
+msgid "Else/Endif without If."
+msgstr "Else/Endif без If."
+
+#: sb.src#RID_BASIC_START.SbERR_NOT_IN_SUBR___ERRCODE_RES_MASK.string.text
+msgid "$(ARG1) not allowed within a procedure."
+msgstr "$(ARG1) в середині процедури неприпустимий."
+
+#: sb.src#RID_BASIC_START.SbERR_NOT_IN_MAIN___ERRCODE_RES_MASK.string.text
+msgid "$(ARG1) not allowed outside a procedure."
+msgstr "$(ARG1) поза процедурою неприпустимий."
+
+#: sb.src#RID_BASIC_START.SbERR_WRONG_DIMS___ERRCODE_RES_MASK.string.text
+msgid "Dimension specifications do not match."
+msgstr "Специфікації розмірності не відповідають одне одному."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_OPTION___ERRCODE_RES_MASK.string.text
+msgid "Unknown option: $(ARG1)."
+msgstr "Невідомий параметр: $(ARG1)"
+
+#: sb.src#RID_BASIC_START.SbERR_CONSTANT_REDECLARED___ERRCODE_RES_MASK.string.text
+msgid "Constant $(ARG1) redefined."
+msgstr "Константа $(ARG1) визначена знову."
+
+#: sb.src#RID_BASIC_START.SbERR_PROG_TOO_LARGE___ERRCODE_RES_MASK.string.text
+msgid "Program too large."
+msgstr "Програма занадто велика."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_STRINGS_ARRAYS___ERRCODE_RES_MASK.string.text
+msgid "Strings or arrays not permitted."
+msgstr "Рядки або масиви неприпустимі."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_EXCEPTION___ERRCODE_RES_MASK.string.text
+msgid "An exception occurred $(ARG1)."
+msgstr "Сталося виключення $(ARG1)."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_ARRAY_FIX___ERRCODE_RES_MASK.string.text
+msgid "This array is fixed or temporarily locked."
+msgstr ""
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_STRING_OVERFLOW___ERRCODE_RES_MASK.string.text
+msgid "Out of string space."
+msgstr ""
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_EXPR_TOO_COMPLEX___ERRCODE_RES_MASK.string.text
+msgid "Expression Too Complex."
+msgstr ""
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_OPER_NOT_PERFORM___ERRCODE_RES_MASK.string.text
+msgid "Can't perform requested operation."
+msgstr ""
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_TOO_MANY_DLL___ERRCODE_RES_MASK.string.text
+msgid "Too many DLL application clients."
+msgstr ""
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_LOOP_NOT_INIT___ERRCODE_RES_MASK.string.text
+msgid "For loop not initialized."
+msgstr ""
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_COMPAT___ERRCODE_RES_MASK.string.text
+msgid "$(ARG1)"
+msgstr ""
+
+#: sb.src#IDS_SBERR_TERMINATED.string.text
+msgid "The macro running has been interrupted"
+msgstr "Виконання макросу перервано"
+
+#: sb.src#IDS_SBERR_STOREREF.string.text
+msgid "Reference will not be saved: "
+msgstr "Посилання не буде збережено:"
+
+#: sb.src#ERRCODE_BASMGR_LIBLOAD___ERRCODE_RES_MASK.string.text
+msgid "Error loading library '$(ARG1)'."
+msgstr "Помилка при завантаженні бібліотеки '$(ARG1)'"
+
+#: sb.src#ERRCODE_BASMGR_LIBSAVE___ERRCODE_RES_MASK.string.text
+msgid "Error saving library: '$(ARG1)'."
+msgstr "Помилка при збереженні бібліотеки: '$(ARG1)'"
+
+#: sb.src#ERRCODE_BASMGR_MGROPEN___ERRCODE_RES_MASK.string.text
+msgid "The BASIC from the file '$(ARG1)' could not be initialized."
+msgstr "Неможливо ініціалізувати BASIC у файлі '$(ARG1)'."
+
+#: sb.src#ERRCODE_BASMGR_MGRSAVE___ERRCODE_RES_MASK.string.text
+msgid "Error saving BASIC: '$(ARG1)'."
+msgstr "Помилка збереження BASIC: '$(ARG1)'"
+
+#: sb.src#ERRCODE_BASMGR_REMOVELIB___ERRCODE_RES_MASK.string.text
+msgid "Error removing library."
+msgstr "Помилка видалення бібліотеки."
+
+#: sb.src#ERRCODE_BASMGR_UNLOADLIB___ERRCODE_RES_MASK.string.text
+msgid "The library could not be removed from memory."
+msgstr "Не вдається видалити бібліотеку з пам'яті."
diff --git a/source/uk/basic/source/sbx.po b/source/uk/basic/source/sbx.po
new file mode 100644
index 00000000000..70d840a0362
--- /dev/null
+++ b/source/uk/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-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: format.src#STR_BASICKEY_FORMAT_ON.string.text
+msgid "On"
+msgstr "Увім"
+
+#: format.src#STR_BASICKEY_FORMAT_OFF.string.text
+msgid "Off"
+msgstr "Вимк"
+
+#: format.src#STR_BASICKEY_FORMAT_TRUE.string.text
+msgid "True"
+msgstr "True"
+
+#: format.src#STR_BASICKEY_FORMAT_FALSE.string.text
+msgid "False"
+msgstr "False"
+
+#: format.src#STR_BASICKEY_FORMAT_YES.string.text
+msgid "Yes"
+msgstr "Так"
+
+#: format.src#STR_BASICKEY_FORMAT_NO.string.text
+msgid "No"
+msgstr "Ні"
+
+#: format.src#STR_BASICKEY_FORMAT_CURRENCY.string.text
+msgid "@0.00 $;@(0.00 $)"
+msgstr "@0.00 $;@(0.00 $)"
diff --git a/source/uk/chart2/source/controller/dialogs.po b/source/uk/chart2/source/controller/dialogs.po
new file mode 100644
index 00000000000..01c42ad4d5e
--- /dev/null
+++ b/source/uk/chart2/source/controller/dialogs.po
@@ -0,0 +1,1831 @@
+#. 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-05-15 15:21+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\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 "З накопиченням вздовж ~вертикали"
+
+#: tp_TitleRotation.src#TP_ALIGNMENT.FT_DEGREES.fixedtext.text
+msgctxt "tp_TitleRotation.src#TP_ALIGNMENT.FT_DEGREES.fixedtext.text"
+msgid "~Degrees"
+msgstr "~Градуси"
+
+#: tp_TitleRotation.src#TP_ALIGNMENT.FL_ALIGN.fixedline.text
+msgctxt "tp_TitleRotation.src#TP_ALIGNMENT.FL_ALIGN.fixedline.text"
+msgid "Text orientation"
+msgstr ""
+
+#: tp_TitleRotation.src#TP_ALIGNMENT.FT_TEXTDIR.fixedtext.text
+msgctxt "tp_TitleRotation.src#TP_ALIGNMENT.FT_TEXTDIR.fixedtext.text"
+msgid "Te~xt direction"
+msgstr "Напрямок тексту"
+
+#: Strings_ChartTypes.src#STR_TYPE_COLUMN.string.text
+msgid "Column"
+msgstr "Гістограма"
+
+#: Strings_ChartTypes.src#STR_TYPE_BAR.string.text
+msgid "Bar"
+msgstr "Лінійчата"
+
+#: Strings_ChartTypes.src#STR_TYPE_AREA.string.text
+msgctxt "Strings_ChartTypes.src#STR_TYPE_AREA.string.text"
+msgid "Area"
+msgstr "Область"
+
+#: Strings_ChartTypes.src#STR_TYPE_PIE.string.text
+msgid "Pie"
+msgstr "Кругова"
+
+#: Strings_ChartTypes.src#STR_PIE_EXPLODED.string.text
+msgid "Exploded Pie Chart"
+msgstr "Розділена кругова"
+
+#: Strings_ChartTypes.src#STR_DONUT_EXPLODED.string.text
+msgid "Exploded Donut Chart"
+msgstr "Розділена вкладена кругова"
+
+#: Strings_ChartTypes.src#STR_DONUT.string.text
+msgid "Donut"
+msgstr "Вкладена кругова"
+
+#: Strings_ChartTypes.src#STR_TYPE_LINE.string.text
+msgctxt "Strings_ChartTypes.src#STR_TYPE_LINE.string.text"
+msgid "Line"
+msgstr "Лінія"
+
+#: Strings_ChartTypes.src#STR_TYPE_XY.string.text
+msgid "XY (Scatter)"
+msgstr "Діаграма XY"
+
+#: Strings_ChartTypes.src#STR_POINTS_AND_LINES.string.text
+msgid "Points and Lines"
+msgstr "Лінії та точки"
+
+#: Strings_ChartTypes.src#STR_POINTS_ONLY.string.text
+msgid "Points Only"
+msgstr "Лише точки"
+
+#: Strings_ChartTypes.src#STR_LINES_ONLY.string.text
+msgid "Lines Only"
+msgstr "Лише лінії"
+
+#: Strings_ChartTypes.src#STR_LINES_3D.string.text
+msgid "3D Lines"
+msgstr "Тривимірні лінії"
+
+#: Strings_ChartTypes.src#STR_TYPE_COMBI_COLUMN_LINE.string.text
+msgid "Column and Line"
+msgstr "Стовпчик та лінія"
+
+#: Strings_ChartTypes.src#STR_LINE_COLUMN.string.text
+msgid "Columns and Lines"
+msgstr "Стовпчики та лінії"
+
+#: Strings_ChartTypes.src#STR_LINE_STACKEDCOLUMN.string.text
+msgid "Stacked Columns and Lines"
+msgstr "Стовпчики та лінії з накопиченням"
+
+#: Strings_ChartTypes.src#STR_TYPE_NET.string.text
+msgid "Net"
+msgstr "Сітчаста"
+
+#: Strings_ChartTypes.src#STR_TYPE_STOCK.string.text
+msgid "Stock"
+msgstr "Біржова"
+
+#: Strings_ChartTypes.src#STR_STOCK_1.string.text
+msgid "Stock Chart 1"
+msgstr "Бари"
+
+#: Strings_ChartTypes.src#STR_STOCK_2.string.text
+msgid "Stock Chart 2"
+msgstr "Японські свічки"
+
+#: Strings_ChartTypes.src#STR_STOCK_3.string.text
+msgid "Stock Chart 3"
+msgstr "Бари з об'ємом"
+
+#: Strings_ChartTypes.src#STR_STOCK_4.string.text
+msgid "Stock Chart 4"
+msgstr "Японські свічки з об'ємом"
+
+#: Strings_ChartTypes.src#STR_NORMAL.string.text
+msgid "Normal"
+msgstr "Звичайна"
+
+#: Strings_ChartTypes.src#STR_STACKED.string.text
+msgid "Stacked"
+msgstr "З накопиченням"
+
+#: Strings_ChartTypes.src#STR_PERCENT.string.text
+msgid "Percent Stacked"
+msgstr "Відсоткова з накопиченням"
+
+#: Strings_ChartTypes.src#STR_DEEP.string.text
+msgctxt "Strings_ChartTypes.src#STR_DEEP.string.text"
+msgid "Deep"
+msgstr "У глибину"
+
+#: Strings_ChartTypes.src#STR_FILLED.string.text
+msgid "Filled"
+msgstr "Заповнення"
+
+#: Strings_ChartTypes.src#STR_TYPE_BUBBLE.string.text
+msgid "Bubble"
+msgstr ""
+
+#: Strings_ChartTypes.src#STR_BUBBLE_1.string.text
+msgid "Bubble Chart"
+msgstr ""
+
+#: Strings.src#STR_DLG_CHART_WIZARD.string.text
+msgid "Chart Wizard"
+msgstr "Майстер діаграм"
+
+#: Strings.src#STR_DLG_SMOOTH_LINE_PROPERTIES.string.text
+msgid "Smooth Lines"
+msgstr "Згладжування ліній"
+
+#: Strings.src#STR_DLG_NUMBERFORMAT_FOR_PERCENTAGE_VALUE.string.text
+msgid "Number Format for Percentage Value"
+msgstr "Формат чисел для значень у відсотках"
+
+#: Strings.src#STR_PAGE_CHARTTYPE.string.text
+msgid "Chart Type"
+msgstr "Тип діаграми"
+
+#: Strings.src#STR_PAGE_DATA_RANGE.string.text
+msgid "Data Range"
+msgstr "Діапазон даних"
+
+#: Strings.src#STR_PAGE_CHART_ELEMENTS.string.text
+msgid "Chart Elements"
+msgstr "Елементи діаграм"
+
+#: Strings.src#STR_PAGE_CHART_LOCATION.string.text
+msgid "Chart Location"
+msgstr "Розташування діаграм"
+
+#: Strings.src#STR_PAGE_LINE.string.text
+msgctxt "Strings.src#STR_PAGE_LINE.string.text"
+msgid "Line"
+msgstr "Лінія"
+
+#: Strings.src#STR_PAGE_BORDER.string.text
+msgid "Borders"
+msgstr "Обрамлення"
+
+#: Strings.src#STR_PAGE_AREA.string.text
+msgctxt "Strings.src#STR_PAGE_AREA.string.text"
+msgid "Area"
+msgstr "Область"
+
+#: Strings.src#STR_PAGE_TRANSPARENCY.string.text
+msgid "Transparency"
+msgstr "Прозорість"
+
+#: Strings.src#STR_PAGE_FONT.string.text
+msgctxt "Strings.src#STR_PAGE_FONT.string.text"
+msgid "Font"
+msgstr ""
+
+#: Strings.src#STR_PAGE_FONT_EFFECTS.string.text
+msgctxt "Strings.src#STR_PAGE_FONT_EFFECTS.string.text"
+msgid "Font Effects"
+msgstr "Ефекти шрифту"
+
+#: Strings.src#STR_PAGE_NUMBERS.string.text
+msgid "Numbers"
+msgstr "Числа"
+
+#: Strings.src#STR_PAGE_POSITION.string.text
+msgctxt "Strings.src#STR_PAGE_POSITION.string.text"
+msgid "Position"
+msgstr "Позиція"
+
+#: Strings.src#STR_BUTTON_UP.string.text
+msgid "Up"
+msgstr "вгору"
+
+#: Strings.src#STR_BUTTON_DOWN.string.text
+msgid "Down"
+msgstr "вниз"
+
+#: Strings.src#STR_PAGE_LAYOUT.string.text
+msgid "Layout"
+msgstr "Розмітка"
+
+#: Strings.src#STR_PAGE_OPTIONS.string.text
+msgid "Options"
+msgstr "Параметри"
+
+#: Strings.src#STR_PAGE_SCALE.string.text
+msgctxt "Strings.src#STR_PAGE_SCALE.string.text"
+msgid "Scale"
+msgstr "Масштаб"
+
+#: Strings.src#STR_PAGE_POSITIONING.string.text
+msgid "Positioning"
+msgstr "Позиціювання"
+
+#: Strings.src#STR_PAGE_TRENDLINE_TYPE.string.text
+msgid "Type"
+msgstr "Тип"
+
+#: Strings.src#STR_PAGE_XERROR_BARS.string.text
+#, fuzzy
+msgctxt "Strings.src#STR_PAGE_XERROR_BARS.string.text"
+msgid "X Error Bars"
+msgstr "Штрихи помилок Y"
+
+#: Strings.src#STR_PAGE_YERROR_BARS.string.text
+#, fuzzy
+msgctxt "Strings.src#STR_PAGE_YERROR_BARS.string.text"
+msgid "Y Error Bars"
+msgstr "Штрихи помилок Y"
+
+#: Strings.src#STR_PAGE_ZERROR_BARS.string.text
+#, fuzzy
+msgctxt "Strings.src#STR_PAGE_ZERROR_BARS.string.text"
+msgid "Z Error Bars"
+msgstr "Штрихи помилок Y"
+
+#: Strings.src#STR_PAGE_ALIGNMENT.string.text
+msgctxt "Strings.src#STR_PAGE_ALIGNMENT.string.text"
+msgid "Alignment"
+msgstr "Вирівнювання"
+
+#: Strings.src#STR_PAGE_PERSPECTIVE.string.text
+msgid "Perspective"
+msgstr "Перспектива"
+
+#: Strings.src#STR_PAGE_APPEARANCE.string.text
+msgid "Appearance"
+msgstr "Зовнішній вигляд"
+
+#: Strings.src#STR_PAGE_ILLUMINATION.string.text
+msgid "Illumination"
+msgstr "Освітлення"
+
+#: Strings.src#STR_PAGE_ASIAN.string.text
+msgctxt "Strings.src#STR_PAGE_ASIAN.string.text"
+msgid "Asian Typography"
+msgstr ""
+
+#: Strings.src#STR_OBJECT_AVERAGE_LINE_WITH_PARAMETERS.string.text
+msgid "Mean value line with value %AVERAGE_VALUE and standard deviation %STD_DEVIATION"
+msgstr "Лінія арифметичного середнього зі значенням %AVERAGE_VALUE та стандартним відхиленням %STD_DEVIATION"
+
+#: Strings.src#STR_OBJECT_AXIS.string.text
+msgid "Axis"
+msgstr "Вісь"
+
+#: Strings.src#STR_OBJECT_AXIS_X.string.text
+msgid "X Axis"
+msgstr "Вісь X"
+
+#: Strings.src#STR_OBJECT_AXIS_Y.string.text
+msgid "Y Axis"
+msgstr "Вісь Y"
+
+#: Strings.src#STR_OBJECT_AXIS_Z.string.text
+msgid "Z Axis"
+msgstr "Вісь Z"
+
+#: Strings.src#STR_OBJECT_SECONDARY_X_AXIS.string.text
+msgid "Secondary X Axis"
+msgstr "Додаткові осі Y"
+
+#: Strings.src#STR_OBJECT_SECONDARY_Y_AXIS.string.text
+msgid "Secondary Y Axis"
+msgstr "Додаткові осі Y"
+
+#: Strings.src#STR_OBJECT_AXES.string.text
+#, fuzzy
+msgctxt "Strings.src#STR_OBJECT_AXES.string.text"
+msgid "Axes"
+msgstr "Вісі"
+
+#: Strings.src#STR_OBJECT_GRIDS.string.text
+msgctxt "Strings.src#STR_OBJECT_GRIDS.string.text"
+msgid "Grids"
+msgstr "Сітки"
+
+#: Strings.src#STR_OBJECT_GRID.string.text
+msgid "Grid"
+msgstr "Сітка"
+
+#: Strings.src#STR_OBJECT_GRID_MAJOR_X.string.text
+msgid "X Axis Major Grid"
+msgstr "Основна сітка осі X"
+
+#: Strings.src#STR_OBJECT_GRID_MAJOR_Y.string.text
+msgid "Y Axis Major Grid"
+msgstr "Основна сітка осі Y"
+
+#: Strings.src#STR_OBJECT_GRID_MAJOR_Z.string.text
+msgid "Z Axis Major Grid"
+msgstr "Основна сітка осі Z"
+
+#: Strings.src#STR_OBJECT_GRID_MINOR_X.string.text
+msgid "X Axis Minor Grid"
+msgstr "Додаткова сітка осі X"
+
+#: Strings.src#STR_OBJECT_GRID_MINOR_Y.string.text
+msgid "Y Axis Minor Grid"
+msgstr "Додаткова сітка осі Y"
+
+#: Strings.src#STR_OBJECT_GRID_MINOR_Z.string.text
+msgid "Z Axis Minor Grid"
+msgstr "Додаткова сітка осі Z"
+
+#: Strings.src#STR_OBJECT_LEGEND.string.text
+msgid "Legend"
+msgstr "Легенда"
+
+#: Strings.src#STR_OBJECT_TITLE.string.text
+msgid "Title"
+msgstr "Заголовок"
+
+#: Strings.src#STR_OBJECT_TITLES.string.text
+msgid "Titles"
+msgstr "Заголовки"
+
+#: Strings.src#STR_OBJECT_TITLE_MAIN.string.text
+msgid "Main Title"
+msgstr "Головний заголовок"
+
+#: Strings.src#STR_OBJECT_TITLE_SUB.string.text
+msgid "Subtitle"
+msgstr "Підзаголовок"
+
+#: Strings.src#STR_OBJECT_TITLE_X_AXIS.string.text
+msgid "X Axis Title"
+msgstr "Заголовок осі X"
+
+#: Strings.src#STR_OBJECT_TITLE_Y_AXIS.string.text
+msgid "Y Axis Title"
+msgstr "Заголовок осі Y"
+
+#: Strings.src#STR_OBJECT_TITLE_Z_AXIS.string.text
+msgid "Z Axis Title"
+msgstr "Заголовок осі Z"
+
+#: Strings.src#STR_OBJECT_TITLE_SECONDARY_X_AXIS.string.text
+msgid "Secondary X Axis Title"
+msgstr "Вторинний заголовок осі X"
+
+#: Strings.src#STR_OBJECT_TITLE_SECONDARY_Y_AXIS.string.text
+msgid "Secondary Y Axis Title"
+msgstr "Вторинний заголовок осі Y"
+
+#: Strings.src#STR_OBJECT_LABEL.string.text
+msgid "Label"
+msgstr "Підпис"
+
+#: Strings.src#STR_OBJECT_DATALABELS.string.text
+msgid "Data Labels"
+msgstr "Підписи даних"
+
+#: Strings.src#STR_OBJECT_DATAPOINT.string.text
+msgid "Data Point"
+msgstr "Точка даних"
+
+#: Strings.src#STR_OBJECT_DATAPOINTS.string.text
+msgid "Data Points"
+msgstr "Точки даних"
+
+#: Strings.src#STR_OBJECT_LEGEND_SYMBOL.string.text
+msgid "Legend Key"
+msgstr "Позначка легенди"
+
+#: Strings.src#STR_OBJECT_DATASERIES.string.text
+msgctxt "Strings.src#STR_OBJECT_DATASERIES.string.text"
+msgid "Data Series"
+msgstr "Ряд даних"
+
+#: Strings.src#STR_OBJECT_DATASERIES_PLURAL.string.text
+msgctxt "Strings.src#STR_OBJECT_DATASERIES_PLURAL.string.text"
+msgid "Data Series"
+msgstr "Ряд даних"
+
+#: Strings.src#STR_OBJECT_CURVE.string.text
+msgid "Trend Line"
+msgstr "Лінія тенденції"
+
+#: Strings.src#STR_OBJECT_CURVES.string.text
+msgid "Trend Lines"
+msgstr "Лінія тенденції"
+
+#: Strings.src#STR_OBJECT_CURVE_WITH_PARAMETERS.string.text
+msgid "Trend line %FORMULA with accuracy R² = %RSQUARED"
+msgstr "Лінія тенденції %FORMULA з точністю R² = %RSQUARED"
+
+#: Strings.src#STR_OBJECT_AVERAGE_LINE.string.text
+msgid "Mean Value Line"
+msgstr "Лінія середнього значення"
+
+#: Strings.src#STR_OBJECT_CURVE_EQUATION.string.text
+msgctxt "Strings.src#STR_OBJECT_CURVE_EQUATION.string.text"
+msgid "Equation"
+msgstr "Рівняння"
+
+#: Strings.src#STR_OBJECT_ERROR_BARS_X.string.text
+#, fuzzy
+msgctxt "Strings.src#STR_OBJECT_ERROR_BARS_X.string.text"
+msgid "X Error Bars"
+msgstr "Штрихи помилок Y"
+
+#: Strings.src#STR_OBJECT_ERROR_BARS_Y.string.text
+#, fuzzy
+msgctxt "Strings.src#STR_OBJECT_ERROR_BARS_Y.string.text"
+msgid "Y Error Bars"
+msgstr "Штрихи помилок Y"
+
+#: Strings.src#STR_OBJECT_ERROR_BARS_Z.string.text
+#, fuzzy
+msgctxt "Strings.src#STR_OBJECT_ERROR_BARS_Z.string.text"
+msgid "Z Error Bars"
+msgstr "Штрихи помилок Y"
+
+#: Strings.src#STR_OBJECT_STOCK_LOSS.string.text
+msgid "Stock Loss"
+msgstr ""
+
+#: Strings.src#STR_OBJECT_STOCK_GAIN.string.text
+msgid "Stock Gain"
+msgstr ""
+
+#: Strings.src#STR_OBJECT_PAGE.string.text
+msgid "Chart Area"
+msgstr "Область діаграми"
+
+#: Strings.src#STR_OBJECT_DIAGRAM.string.text
+msgid "Chart"
+msgstr "Діаграма"
+
+#: Strings.src#STR_OBJECT_DIAGRAM_WALL.string.text
+msgid "Chart Wall"
+msgstr "Область побудови діаграми"
+
+#: Strings.src#STR_OBJECT_DIAGRAM_FLOOR.string.text
+msgid "Chart Floor"
+msgstr "Основа діаграми"
+
+#: Strings.src#STR_OBJECT_SHAPE.string.text
+msgid "Drawing Object"
+msgstr ""
+
+#: Strings.src#STR_TIP_SELECT_RANGE.string.text
+msgid "Select data range"
+msgstr "Виберіть діапазон даних"
+
+#: Strings.src#STR_TIP_CHOOSECOLOR.string.text
+msgid "Select a color using the color dialog"
+msgstr "Виберіть колір у палітрі кольорів"
+
+#: Strings.src#STR_TIP_LIGHTSOURCE_X.string.text
+msgid "Light Source %LIGHTNUMBER"
+msgstr "Джерело світла %LIGHTNUMBER"
+
+#: Strings.src#STR_TIP_DATASERIES.string.text
+msgid "Data Series '%SERIESNAME'"
+msgstr "Ряд даних \"%SERIESNAME\""
+
+#: Strings.src#STR_TIP_DATAPOINT_INDEX.string.text
+msgid "Data Point %POINTNUMBER"
+msgstr "Точка даних %POINTNUMBER"
+
+#: Strings.src#STR_TIP_DATAPOINT_VALUES.string.text
+msgid "Values: %POINTVALUES"
+msgstr "Значення: %POINTVALUES"
+
+#: Strings.src#STR_TIP_DATAPOINT.string.text
+msgid "Data Point %POINTNUMBER, data series %SERIESNUMBER, values: %POINTVALUES"
+msgstr "Точка даних %POINTNUMBER, ряд даних %SERIESNUMBER, значення: %POINTVALUES"
+
+#: Strings.src#STR_STATUS_DATAPOINT_MARKED.string.text
+msgid "Data point %POINTNUMBER in data series %SERIESNUMBER selected, values: %POINTVALUES"
+msgstr "Виділено точку даних %POINTNUMBER у ряду даних %SERIESNUMBER, значення: %POINTVALUES"
+
+#: Strings.src#STR_STATUS_OBJECT_MARKED.string.text
+msgid "%OBJECTNAME selected"
+msgstr "Виділено: %OBJECTNAME"
+
+#: Strings.src#STR_STATUS_PIE_SEGMENT_EXPLODED.string.text
+msgid "Pie exploded by %PERCENTVALUE percent"
+msgstr "Розбиття на сектори за %PERCENTVALUE відсотками"
+
+#: Strings.src#STR_OBJECT_FOR_SERIES.string.text
+msgid "%OBJECTNAME for Data Series '%SERIESNAME'"
+msgstr ""
+
+#: Strings.src#STR_OBJECT_FOR_ALL_SERIES.string.text
+msgid "%OBJECTNAME for all Data Series"
+msgstr ""
+
+#: Strings.src#STR_ACTION_EDIT_CHARTTYPE.string.text
+msgid "Edit chart type"
+msgstr "Змінити тип діаграми"
+
+#: Strings.src#STR_ACTION_EDIT_DATA_RANGES.string.text
+msgid "Edit data ranges"
+msgstr "Змінити діапазон даних"
+
+#: Strings.src#STR_ACTION_EDIT_3D_VIEW.string.text
+msgid "Edit 3D view"
+msgstr "Змінити тривимірний вигляд"
+
+#: Strings.src#STR_ACTION_EDIT_CHART_DATA.string.text
+msgid "Edit chart data"
+msgstr "Змінити дані діаграми"
+
+#: Strings.src#STR_ACTION_TOGGLE_LEGEND.string.text
+msgid "Legend on/off"
+msgstr "Показати/сховати легенду"
+
+#: Strings.src#STR_ACTION_TOGGLE_GRID_HORZ.string.text
+msgid "Horizontal grid on/off"
+msgstr "Показати/сховати горизонтальну сітку"
+
+#: Strings.src#STR_ACTION_SCALE_TEXT.string.text
+msgid "Scale Text"
+msgstr "Масштаб текстів"
+
+#: Strings.src#STR_ACTION_REARRANGE_CHART.string.text
+msgid "Automatic Layout"
+msgstr "Автоматична розмітка"
+
+#: Strings.src#STR_ACTION_NOTPOSSIBLE.string.text
+msgid "This function cannot be completed with the selected objects."
+msgstr "Цю операцію неможливо виконати над виділеними об'єктами."
+
+#: Strings.src#STR_ACTION_EDIT_TEXT.string.text
+#, fuzzy
+msgid "Edit text"
+msgstr "Редагування тексту %1"
+
+#: Strings.src#STR_COLUMN_LABEL.string.text
+msgid "Column %COLUMNNUMBER"
+msgstr "Стовпчик %COLUMNNUMBER"
+
+#: Strings.src#STR_ROW_LABEL.string.text
+msgid "Row %ROWNUMBER"
+msgstr "Рядок %ROWNUMBER"
+
+#: Strings.src#STR_DATA_ROLE_LABEL.string.text
+msgid "Name"
+msgstr "Назва"
+
+#: Strings.src#STR_DATA_ROLE_X.string.text
+msgid "X-Values"
+msgstr "Значення X"
+
+#: Strings.src#STR_DATA_ROLE_Y.string.text
+msgid "Y-Values"
+msgstr "Значення Y"
+
+#: Strings.src#STR_DATA_ROLE_SIZE.string.text
+msgid "Bubble Sizes"
+msgstr ""
+
+#: Strings.src#STR_DATA_ROLE_X_ERROR.string.text
+msgid "X-Error-Bars"
+msgstr "Штрихи помилок X"
+
+#: Strings.src#STR_DATA_ROLE_X_ERROR_POSITIVE.string.text
+msgid "Positive X-Error-Bars"
+msgstr "Додатні штрихи помилок X"
+
+#: Strings.src#STR_DATA_ROLE_X_ERROR_NEGATIVE.string.text
+msgid "Negative X-Error-Bars"
+msgstr "Від'ємні штрихи помилок X"
+
+#: Strings.src#STR_DATA_ROLE_Y_ERROR.string.text
+msgid "Y-Error-Bars"
+msgstr "Штрихи помилок Y"
+
+#: Strings.src#STR_DATA_ROLE_Y_ERROR_POSITIVE.string.text
+msgid "Positive Y-Error-Bars"
+msgstr "Додатні штрихи помилок Y"
+
+#: Strings.src#STR_DATA_ROLE_Y_ERROR_NEGATIVE.string.text
+msgid "Negative Y-Error-Bars"
+msgstr "Від'ємні штрихи помилок Y"
+
+#: Strings.src#STR_DATA_ROLE_FIRST.string.text
+msgid "Open Values"
+msgstr "Відкриття"
+
+#: Strings.src#STR_DATA_ROLE_LAST.string.text
+msgid "Close Values"
+msgstr "Закриття"
+
+#: Strings.src#STR_DATA_ROLE_MIN.string.text
+msgid "Low Values"
+msgstr "Мінімум"
+
+#: Strings.src#STR_DATA_ROLE_MAX.string.text
+msgid "High Values"
+msgstr "Максимум"
+
+#: Strings.src#STR_DATA_ROLE_CATEGORIES.string.text
+msgid "Categories"
+msgstr "Категорії"
+
+#: Strings.src#STR_DATA_UNNAMED_SERIES.string.text
+msgid "Unnamed Series"
+msgstr "Неназвані ряди"
+
+#: Strings.src#STR_DATA_UNNAMED_SERIES_WITH_INDEX.string.text
+msgid "Unnamed Series %NUMBER"
+msgstr "Неназвані ряди %NUMBER"
+
+#: Strings.src#STR_DATA_SELECT_RANGE_FOR_SERIES.string.text
+msgid "Select Range for %VALUETYPE of %SERIESNAME"
+msgstr "Виберіть діапазон для %VALUETYPE у %SERIESNAME"
+
+#: Strings.src#STR_DATA_SELECT_RANGE_FOR_CATEGORIES.string.text
+msgid "Select Range for Categories"
+msgstr "Виберіть діапазон для категорій"
+
+#: Strings.src#STR_DATA_SELECT_RANGE_FOR_DATALABELS.string.text
+msgid "Select Range for data labels"
+msgstr "Виділіть діапазон для надписів даних"
+
+#: Strings.src#STR_DATA_SELECT_RANGE_FOR_POSITIVE_ERRORBARS.string.text
+msgid "Select Range for Positive Error Bars"
+msgstr "Виділіть діапазон додатних штрихів помилок"
+
+#: Strings.src#STR_DATA_SELECT_RANGE_FOR_NEGATIVE_ERRORBARS.string.text
+msgid "Select Range for Negative Error Bars"
+msgstr "Виділіть діапазон від'ємних штрихів помилок"
+
+#: Strings.src#STR_DATA_EDITOR_INCORRECT_INPUT.string.text
+msgid ""
+"Your last input is incorrect.\n"
+"Ignore this change and close the dialog?"
+msgstr ""
+"Останні введені дані - некоректні.\n"
+"Ігнорувати зміни та закрити діалогове вікно?"
+
+#: Strings.src#STR_TEXT_DIRECTION_LTR.string.text
+msgid "Left-to-right"
+msgstr "Зліва направо"
+
+#: Strings.src#STR_TEXT_DIRECTION_RTL.string.text
+msgid "Right-to-left"
+msgstr "Справа наліво"
+
+#: Strings.src#STR_TEXT_DIRECTION_SUPER.string.text
+msgid "Use superordinate object settings"
+msgstr "Успадковувати від батьківського об'єкту"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.CB_AXIS_LABEL_SCHOW_DESCR.checkbox.text
+msgid "Sho~w labels"
+msgstr "П~оказати підписи"
+
+#: 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 ""
+
+#: 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 "З накопиченням по ~вертикали"
+
+#: 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 "~Градуси"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.FL_AXIS_LABEL_TEXTFLOW.fixedline.text
+msgid "Text flow"
+msgstr "На сторінці"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.CB_AXIS_LABEL_TEXTOVERLAP.checkbox.text
+msgid "O~verlap"
+msgstr "~Перекриття"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.CB_AXIS_LABEL_TEXTBREAK.checkbox.text
+msgid "~Break"
+msgstr "~Розрив"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.FL_AXIS_LABEL_ORDER.fixedline.text
+msgid "Order"
+msgstr "Послідовність"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.RB_AXIS_LABEL_SIDEBYSIDE.radiobutton.text
+msgid "~Tile"
+msgstr "~Мозаїка"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.RB_AXIS_LABEL_UPDOWN.radiobutton.text
+msgid "St~agger odd"
+msgstr "Зи~ґзаґом (непарні вище))"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.RB_AXIS_LABEL_DOWNUP.radiobutton.text
+msgid "Stagger ~even"
+msgstr "~Зиґзаґом (парні вище))"
+
+#: 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 "~Автоматично"
+
+#: 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 "Напрямок тексту"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.FT_CAPTION_FOR_WIZARD.fixedtext.text
+msgid "Customize data ranges for individual data series"
+msgstr "Налаштувати діапазони даних для кожного ряду даних"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.FT_SERIES.fixedtext.text
+msgid "Data ~series"
+msgstr "Р~яд даних"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.FT_ROLE.fixedtext.text
+msgid "~Data ranges"
+msgstr "Діапазон ~даних"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.FT_RANGE.fixedtext.text
+msgid "Ran~ge for %VALUETYPE"
+msgstr "Діапа~зон для: %VALUETYPE"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.FT_CATEGORIES.fixedtext.text
+msgid "~Categories"
+msgstr "~Категорії"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.FT_DATALABELS.fixedtext.text
+msgid "Data ~labels"
+msgstr "~Підписи даних"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.BTN_ADD.pushbutton.text
+msgid "~Add"
+msgstr "~Додати"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.BTN_REMOVE.pushbutton.text
+msgid "~Remove"
+msgstr "В~идалити"
+
+#: tp_ChartType.src#TP_CHARTTYPE.FT_CHARTTYPE.fixedtext.text
+msgid "Choose a chart type"
+msgstr "Виберіть тип діаграми"
+
+#: tp_ChartType.src#TP_CHARTTYPE.CB_X_AXIS_CATEGORIES.checkbox.text
+msgid "X axis with Categories"
+msgstr "Вісь X з категоріями"
+
+#: tp_ChartType.src#TP_CHARTTYPE.CB_3D_LOOK.checkbox.text
+msgid "~3D Look"
+msgstr "~Тривимірний вигляд"
+
+#: tp_ChartType.src#TP_CHARTTYPE.CB_STACKED.checkbox.text
+msgid "~Stack series"
+msgstr "~Ряди з накопиченням"
+
+#: tp_ChartType.src#TP_CHARTTYPE.RB_STACK_Y.radiobutton.text
+msgid "On top"
+msgstr "Згори"
+
+#: tp_ChartType.src#TP_CHARTTYPE.RB_STACK_Y_PERCENT.radiobutton.text
+msgid "Percent"
+msgstr "Відсотки"
+
+#: tp_ChartType.src#TP_CHARTTYPE.RB_STACK_Z.radiobutton.text
+msgctxt "tp_ChartType.src#TP_CHARTTYPE.RB_STACK_Z.radiobutton.text"
+msgid "Deep"
+msgstr "У глибину"
+
+#: tp_ChartType.src#TP_CHARTTYPE.CB_SPLINES.checkbox.text
+msgid "S~mooth lines"
+msgstr "Зглад~жування ліній"
+
+#: tp_ChartType.src#TP_CHARTTYPE.PB_SPLINE_DIALOG.pushbutton.text
+msgid "Properties..."
+msgstr "Властивості..."
+
+#: tp_ChartType.src#TP_CHARTTYPE.CB_XVALUE_SORTING.checkbox.text
+msgid "~Sort by X values"
+msgstr "~Сортувати за значенням X"
+
+#: tp_ChartType.src#DLG_SPLINE_PROPERTIES.RB_SPLINES_CUBIC.radiobutton.text
+msgid "Cubic spline"
+msgstr "Кубічний сплайн"
+
+#: tp_ChartType.src#DLG_SPLINE_PROPERTIES.RB_SPLINES_B.radiobutton.text
+msgid "B-Spline"
+msgstr "B-сплайн"
+
+#: tp_ChartType.src#DLG_SPLINE_PROPERTIES.FT_SPLINE_RESOLUTION.fixedtext.text
+msgid "~Resolution"
+msgstr "~Роздільна здатність"
+
+#: tp_ChartType.src#DLG_SPLINE_PROPERTIES.FT_SPLINE_ORDER.fixedtext.text
+msgid "~Degree of polynomials"
+msgstr ""
+
+#: tp_RangeChooser.src#TP_RANGECHOOSER.FT_CAPTION_FOR_WIZARD.fixedtext.text
+msgid "Choose a data range"
+msgstr "Виберіть діапазон даних"
+
+#: tp_RangeChooser.src#TP_RANGECHOOSER.FT_RANGE.fixedtext.text
+msgid "~Data range"
+msgstr "~Діапазон даних"
+
+#: tp_RangeChooser.src#TP_RANGECHOOSER.RB_DATAROWS.radiobutton.text
+msgid "Data series in ~rows"
+msgstr "Ряди даних у ~рядках"
+
+#: tp_RangeChooser.src#TP_RANGECHOOSER.RB_DATACOLS.radiobutton.text
+msgid "Data series in ~columns"
+msgstr "Ряди даних у ~стовпчиках"
+
+#: tp_RangeChooser.src#TP_RANGECHOOSER.CB_FIRST_ROW_ASLABELS.checkbox.text
+msgid "~First row as label"
+msgstr "~Перший рядок як підпис"
+
+#: tp_RangeChooser.src#TP_RANGECHOOSER.CB_FIRST_COLUMN_ASLABELS.checkbox.text
+msgid "F~irst column as label"
+msgstr "П~ерший стовпчик як підпис"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.1.fixedline.text
+msgid "Align data series to"
+msgstr "Вирівняти ряд даних за"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.RBT_OPT_AXIS_1.radiobutton.text
+msgid "Primary Y axis"
+msgstr "Основна вісь Y"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.RBT_OPT_AXIS_2.radiobutton.text
+msgid "Secondary Y axis"
+msgstr "Додаткові осі Y"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.GB_BAR.fixedline.text
+msgid "Settings"
+msgstr "Параметри"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.FT_OVERLAP.fixedtext.text
+msgid "~Overlap"
+msgstr "~Перетин"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.FT_GAP.fixedtext.text
+msgid "~Spacing"
+msgstr "~Інтервал"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.CB_CONNECTOR.checkbox.text
+msgid "Connection lines"
+msgstr "З'єднувальні лінії"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.CB_BARS_SIDE_BY_SIDE.checkbox.text
+msgid "Show ~bars side by side"
+msgstr "Показати ~смуги поруч"
+
+#: 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 ""
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.FT_MISSING_VALUES.fixedtext.text
+msgid "Plot missing values"
+msgstr ""
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.RB_DONT_PAINT.radiobutton.text
+msgid "~Leave gap"
+msgstr ""
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.RB_ASSUME_ZERO.radiobutton.text
+msgid "~Assume zero"
+msgstr ""
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.RB_CONTINUE_LINE.radiobutton.text
+msgid "~Continue line"
+msgstr ""
+
+#: 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 ""
+
+#: tp_3D_SceneGeometry.src#CUSTOMUNITTEXT_DEGREE.#define.text
+msgid " degrees"
+msgstr " градусів"
+
+#: tp_3D_SceneGeometry.src#TP_3D_SCENEGEOMETRY.CBX_RIGHT_ANGLED_AXES.checkbox.text
+msgid "~Right-angled axes"
+msgstr "~Аксонометричні осі"
+
+#: tp_3D_SceneGeometry.src#TP_3D_SCENEGEOMETRY.FT_X_ROTATION.fixedtext.text
+msgid "~X rotation"
+msgstr "Поворот вздовж осі ~X"
+
+#: tp_3D_SceneGeometry.src#TP_3D_SCENEGEOMETRY.FT_Y_ROTATION.fixedtext.text
+msgid "~Y rotation"
+msgstr "Поворот вздовж осі ~Y"
+
+#: tp_3D_SceneGeometry.src#TP_3D_SCENEGEOMETRY.FT_Z_ROTATION.fixedtext.text
+msgid "~Z rotation"
+msgstr "Поворот вздовж осі ~Z"
+
+#: tp_3D_SceneGeometry.src#TP_3D_SCENEGEOMETRY.CBX_PERSPECTIVE.checkbox.text
+msgid "~Perspective"
+msgstr "~Перспектива"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.FL_TYPE.fixedline.text
+msgid "Regression Type"
+msgstr "Тип регресії"
+
+#: 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 "~Немає"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.RB_LINEAR.radiobutton.text
+msgid "~Linear"
+msgstr "~Лінійний"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.RB_LOGARITHMIC.radiobutton.text
+msgid "L~ogarithmic"
+msgstr "Л~огарифмічний"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.RB_EXPONENTIAL.radiobutton.text
+msgid "E~xponential"
+msgstr "~Експоненційний"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.RB_POWER.radiobutton.text
+msgid "~Power"
+msgstr "~Степінь"
+
+#: 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 "Формула"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.CB_SHOW_EQUATION.checkbox.text
+msgid "Show ~equation"
+msgstr "Показати ~формулу"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.CB_SHOW_CORRELATION_COEFF.checkbox.text
+msgid "Show ~coefficient of determination (R²)"
+msgstr ""
+
+#: tp_Scale.src#STR_LIST_TIME_UNIT.1.stringlist.text
+msgid "Days"
+msgstr "Дні"
+
+#: tp_Scale.src#STR_LIST_TIME_UNIT.2.stringlist.text
+msgid "Months"
+msgstr "Місяці"
+
+#: tp_Scale.src#STR_LIST_TIME_UNIT.3.stringlist.text
+msgid "Years"
+msgstr "Роки"
+
+#: tp_Scale.src#TP_SCALE.FL_SCALE.fixedline.text
+msgctxt "tp_Scale.src#TP_SCALE.FL_SCALE.fixedline.text"
+msgid "Scale"
+msgstr "Масштаб"
+
+#: tp_Scale.src#TP_SCALE.CBX_REVERSE.checkbox.text
+msgid "~Reverse direction"
+msgstr "У ~зворотному напрямку"
+
+#: tp_Scale.src#TP_SCALE.CBX_LOGARITHM.checkbox.text
+msgid "~Logarithmic scale"
+msgstr "~Логарифмічний масштаб"
+
+#: tp_Scale.src#TP_SCALE.TXT_AXIS_TYPE.fixedtext.text
+msgid "T~ype"
+msgstr "Т~ип"
+
+#: tp_Scale.src#TP_SCALE.LB_AXIS_TYPE.1.stringlist.text
+#, fuzzy
+msgid "Automatic"
+msgstr ""
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Автоматично\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Автоматично\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Автоматично\n"
+"#-#-#-#-# dbgui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Автоматично\n"
+"#-#-#-#-# appl.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Автоматично\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Автоматично\n"
+"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Автоматично\n"
+"#-#-#-#-# control.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Автоматично\n"
+"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Автоматично\n"
+"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Автоматично\n"
+"#-#-#-#-# t602.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Автоматично"
+
+#: tp_Scale.src#TP_SCALE.LB_AXIS_TYPE.2.stringlist.text
+#, fuzzy
+msgid "Text"
+msgstr ""
+"#-#-#-#-# shells.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Текст\n"
+"#-#-#-#-# dbui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Текстові\n"
+"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Текст\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Текст\n"
+"#-#-#-#-# formdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Текст\n"
+"#-#-#-#-# appl.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Текст\n"
+"#-#-#-#-# Office.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Текст\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Текст\n"
+"#-#-#-#-# options.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Текст\n"
+"#-#-#-#-# core.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Текст\n"
+"#-#-#-#-# html.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Текст\n"
+"#-#-#-#-# datefunc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Текст\n"
+"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Текст\n"
+"#-#-#-#-# filters.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Текст"
+
+#: tp_Scale.src#TP_SCALE.LB_AXIS_TYPE.3.stringlist.text
+msgid "Date"
+msgstr "Дата"
+
+#: tp_Scale.src#TP_SCALE.TXT_MIN.fixedtext.text
+msgid "~Minimum"
+msgstr "М~інімум"
+
+#: tp_Scale.src#TP_SCALE.CBX_AUTO_MIN.checkbox.text
+msgid "~Automatic"
+msgstr "Автоматично"
+
+#: tp_Scale.src#TP_SCALE.TXT_MAX.fixedtext.text
+msgid "Ma~ximum"
+msgstr "М~аксимум"
+
+#: 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 "~Автоматично"
+
+#: tp_Scale.src#TP_SCALE.TXT_TIME_RESOLUTION.fixedtext.text
+#, fuzzy
+msgid "R~esolution"
+msgstr "~Роздільна здатність"
+
+#: tp_Scale.src#TP_SCALE.CBX_AUTO_TIME_RESOLUTION.checkbox.text
+#, fuzzy
+msgctxt "tp_Scale.src#TP_SCALE.CBX_AUTO_TIME_RESOLUTION.checkbox.text"
+msgid "Automat~ic"
+msgstr "Автоматично"
+
+#: tp_Scale.src#TP_SCALE.TXT_STEP_MAIN.fixedtext.text
+#, fuzzy
+msgid "Ma~jor interval"
+msgstr "~Основний інтервал:"
+
+#: tp_Scale.src#TP_SCALE.CBX_AUTO_STEP_MAIN.checkbox.text
+msgid "Au~tomatic"
+msgstr "Автоматично"
+
+#: tp_Scale.src#TP_SCALE.TXT_STEP_HELP_COUNT.fixedtext.text
+#, fuzzy
+msgid "Minor inter~val count"
+msgstr "~Основний інтервал:"
+
+#: tp_Scale.src#TP_SCALE.TXT_STEP_HELP.fixedtext.text
+#, fuzzy
+msgid "Minor inter~val"
+msgstr "~Основний інтервал:"
+
+#: tp_Scale.src#TP_SCALE.CBX_AUTO_STEP_HELP.checkbox.text
+msgid "Aut~omatic"
+msgstr "Автоматично"
+
+#: tp_Scale.src#TP_SCALE.TXT_ORIGIN.fixedtext.text
+#, fuzzy
+msgid "Re~ference value"
+msgstr "Значення покажчика (увімк)"
+
+#: tp_Scale.src#TP_SCALE.CBX_AUTO_ORIGIN.checkbox.text
+#, fuzzy
+msgctxt "tp_Scale.src#TP_SCALE.CBX_AUTO_ORIGIN.checkbox.text"
+msgid "Automat~ic"
+msgstr "Автоматично"
+
+#: 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 "Осі"
+
+#: dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.FL_PRIMARY_GRID.fixedline.text
+msgid "Major grids"
+msgstr "Основні сітки"
+
+#: 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 "Вісь ~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 "Вісь ~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 "Вісь ~Z"
+
+#: dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.FL_SECONDARY_AXIS.fixedline.text
+msgid "Secondary axes"
+msgstr "Додаткові осі"
+
+#: dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.FL_SECONDARY_GRID.fixedline.text
+msgid "Minor grids"
+msgstr "Додаткові сітки"
+
+#: Strings_Statistic.src#STR_INDICATE_BOTH.string.text
+msgid "Negative and Positive"
+msgstr "Від'ємне та додатне"
+
+#: Strings_Statistic.src#STR_INDICATE_DOWN.string.text
+msgid "Negative"
+msgstr "Від'ємне"
+
+#: Strings_Statistic.src#STR_INDICATE_UP.string.text
+msgid "Positive"
+msgstr "Додатне"
+
+#: Strings_Statistic.src#STR_CONTROLTEXT_ERROR_BARS_FROM_DATA.string.text
+msgid "From Data Table"
+msgstr "З таблиці даних"
+
+#: Strings_Statistic.src#STR_REGRESSION_LINEAR.string.text
+#, fuzzy
+msgid "Linear (%SERIESNAME)"
+msgstr "Ряд даних \"%SERIESNAME\""
+
+#: Strings_Statistic.src#STR_REGRESSION_LOG.string.text
+#, fuzzy
+msgid "Logarithmic (%SERIESNAME)"
+msgstr "Ряд даних \"%SERIESNAME\""
+
+#: Strings_Statistic.src#STR_REGRESSION_EXP.string.text
+msgid "Exponential (%SERIESNAME)"
+msgstr ""
+
+#: Strings_Statistic.src#STR_REGRESSION_POWER.string.text
+#, fuzzy
+msgid "Power (%SERIESNAME)"
+msgstr "Ряд даних \"%SERIESNAME\""
+
+#: Strings_Statistic.src#STR_REGRESSION_MEAN.string.text
+#, fuzzy
+msgid "Mean (%SERIESNAME)"
+msgstr "Ряд даних \"%SERIESNAME\""
+
+#: res_TextSeparator.src#LB_TEXT_SEPARATOR.1.stringlist.text
+msgid "Space"
+msgstr "Пробіл"
+
+#: res_TextSeparator.src#LB_TEXT_SEPARATOR.2.stringlist.text
+msgid "Comma"
+msgstr "Кома"
+
+#: res_TextSeparator.src#LB_TEXT_SEPARATOR.3.stringlist.text
+msgid "Semicolon"
+msgstr "Крапка з комою"
+
+#: res_TextSeparator.src#LB_TEXT_SEPARATOR.4.stringlist.text
+msgid "New line"
+msgstr "Кінець рядка"
+
+#: res_BarGeometry.src#LB_BAR_GEOMETRY.1.stringlist.text
+msgid "Box"
+msgstr "Блок"
+
+#: res_BarGeometry.src#LB_BAR_GEOMETRY.2.stringlist.text
+msgid "Cylinder"
+msgstr "Циліндр"
+
+#: res_BarGeometry.src#LB_BAR_GEOMETRY.3.stringlist.text
+msgid "Cone"
+msgstr "Конус"
+
+#: res_BarGeometry.src#LB_BAR_GEOMETRY.4.stringlist.text
+msgid "Pyramid"
+msgstr "Піраміда"
+
+#: tp_3D_SceneIllumination.src#TP_3D_SCENEILLUMINATION.FT_LIGHTSOURCE.fixedtext.text
+msgid "~Light source"
+msgstr "~Джерело світла"
+
+#: tp_3D_SceneIllumination.src#TP_3D_SCENEILLUMINATION.FT_AMBIENTLIGHT.fixedtext.text
+msgid "~Ambient light"
+msgstr "~Розсіяне світло"
+
+#: tp_3D_SceneIllumination.src#STR_LIGHT_PREVIEW.string.text
+#, fuzzy
+msgid "Light Preview"
+msgstr "Попередній перегляд друку"
+
+#: dlg_DataSource.src#DLG_DATA_SOURCE.tabdialog.text
+msgid "Data Ranges"
+msgstr "Діапазон даних"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_INSERT_ROW.toolboxitem.text
+msgid "Insert Row"
+msgstr "Вставити рядок"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_INSERT_COL.toolboxitem.text
+msgid "Insert Series"
+msgstr "Вставити ряд"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_INSERT_TEXT_COL.toolboxitem.text
+msgid "Insert Text Column"
+msgstr ""
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_DELETE_ROW.toolboxitem.text
+msgid "Delete Row"
+msgstr "Видалити рядок"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_DELETE_COL.toolboxitem.text
+msgid "Delete Series"
+msgstr "Видалити ряд"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_SWAP_COL.toolboxitem.text
+msgid "Move Series Right"
+msgstr "Перемістити ряд праворуч"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_SWAP_ROW.toolboxitem.text
+msgid "Move Row Down"
+msgstr "Перемістити рядок вниз"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.modaldialog.text
+msgid "Data Table"
+msgstr "Таблиця даних"
+
+#: Strings_Scale.src#STR_INVALID_NUMBER.string.text
+msgid "Numbers are required. Check your input."
+msgstr "Потрібно вказувати числа. Перевірте ввід."
+
+#: Strings_Scale.src#STR_STEP_GT_ZERO.string.text
+msgid "The major interval requires a positive number. Check your input."
+msgstr "Для основного інтервалу потрібне додатне число. Перевірте ввід."
+
+#: Strings_Scale.src#STR_BAD_LOGARITHM.string.text
+msgid "The logarithmic scale requires positive numbers. Check your input."
+msgstr "Для логарифмічного масштабу потрібні додатні числа. Перевірте ввід."
+
+#: Strings_Scale.src#STR_MIN_GREATER_MAX.string.text
+msgid "The minimum must be lower than the maximum. Check your input."
+msgstr "Мінімум має бути менше максимуму. Перевірте ввід."
+
+#: Strings_Scale.src#STR_INVALID_INTERVALS.string.text
+#, fuzzy
+msgid "The major interval needs to be greater than the minor interval. Check your input."
+msgstr "Для основного інтервалу потрібне додатне число. Перевірте ввід."
+
+#: Strings_Scale.src#STR_INVALID_TIME_UNIT.string.text
+#, fuzzy
+msgid "The major and minor interval need to be greater or equal to the resolution. Check your input."
+msgstr "Для основного інтервалу потрібне додатне число. Перевірте ввід."
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.1.stringlist.text
+msgid "Best fit"
+msgstr "Оптимальний масштаб"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.2.stringlist.text
+msgid "Center"
+msgstr "Центр"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.3.stringlist.text
+msgid "Above"
+msgstr "Згори"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.4.stringlist.text
+msgid "Top left"
+msgstr "Згори ліворуч"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.5.stringlist.text
+msgid "Left"
+msgstr "Ліворуч"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.6.stringlist.text
+msgid "Bottom left"
+msgstr "Знизу ліворуч"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.7.stringlist.text
+msgid "Below"
+msgstr "Знизу"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.8.stringlist.text
+msgid "Bottom right"
+msgstr "Знизу справа"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.9.stringlist.text
+msgid "Right"
+msgstr "Справа"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.10.stringlist.text
+msgid "Top right"
+msgstr "Згори справа"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.11.stringlist.text
+msgid "Inside"
+msgstr "Всередині"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.12.stringlist.text
+msgid "Outside"
+msgstr "Зовні"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.13.stringlist.text
+msgid "Near origin"
+msgstr "Біля початку координат"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.CB_VALUE_AS_NUMBER.checkbox.text
+msgid "Show value as ~number"
+msgstr "Показати значення як ~число"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.PB_NUMBERFORMAT.pushbutton.text
+msgid "Number ~format..."
+msgstr "~Формат числа..."
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.CB_VALUE_AS_PERCENTAGE.checkbox.text
+msgid "Show value as ~percentage"
+msgstr "Показати значення як ~відсоток"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.PB_PERCENT_NUMBERFORMAT.pushbutton.text
+msgid "Percentage f~ormat..."
+msgstr "Ф~ормат відсотків..."
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.CB_CATEGORY.checkbox.text
+msgid "Show ~category"
+msgstr "Показати ~категорію"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.CB_SYMBOL.checkbox.text
+msgid "Show ~legend key"
+msgstr "Показати позначку ~легенди"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.FT_LABEL_PLACEMENT.fixedtext.text
+msgid "Place~ment"
+msgstr "~Розташування"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.FL_LABEL_ROTATE.fixedline.text
+msgid "Rotate Text"
+msgstr "Повернути текст"
+
+#: 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 "~Градуси"
+
+#: 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 "Напрямок тексту"
+
+#: dlg_ShapeParagraph.src#DLG_SHAPE_PARAGRAPH.1.RID_SVXPAGE_STD_PARAGRAPH.pageitem.text
+#, fuzzy
+msgid "Indents & Spacing"
+msgstr ""
+"#-#-#-#-# fmtui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Відступи та інтервал\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Відступи і інтервал\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Відступи та інтервали\n"
+"#-#-#-#-# form.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Відступи та інтервал"
+
+#: 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 "Вирівнювання"
+
+#: 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 ""
+
+#: dlg_ShapeParagraph.src#DLG_SHAPE_PARAGRAPH.1.RID_SVXPAGE_TABULATOR.pageitem.text
+msgid "Tab"
+msgstr "Табуляція"
+
+#: dlg_ShapeParagraph.src#DLG_SHAPE_PARAGRAPH.tabdialog.text
+msgid "Paragraph"
+msgstr "Абзац"
+
+#: 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 ""
+
+#: 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 "Ефекти шрифту"
+
+#: dlg_ShapeFont.src#DLG_SHAPE_FONT.1.RID_SVXPAGE_CHAR_POSITION.pageitem.text
+msgid "Font Position"
+msgstr "Позиція шрифту"
+
+#: dlg_ShapeFont.src#DLG_SHAPE_FONT.tabdialog.text
+msgid "Character"
+msgstr "Шрифт"
+
+#: tp_3D_SceneAppearance.src#TP_3D_SCENEAPPEARANCE.FT_SCHEME.fixedtext.text
+msgid "Sche~me"
+msgstr "С~хема"
+
+#: tp_3D_SceneAppearance.src#TP_3D_SCENEAPPEARANCE.CB_SHADING.checkbox.text
+msgid "~Shading"
+msgstr "~Тінь"
+
+#: tp_3D_SceneAppearance.src#TP_3D_SCENEAPPEARANCE.CB_OBJECTLINES.checkbox.text
+msgid "~Object borders"
+msgstr "~Обрамлення об'єкту"
+
+#: tp_3D_SceneAppearance.src#TP_3D_SCENEAPPEARANCE.CB_ROUNDEDEDGE.checkbox.text
+msgid "~Rounded edges"
+msgstr "Закр~углені межі"
+
+#: 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 "~Вісь 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 "В~ісь Y"
+
+#: res_SecondaryAxisCheckBoxes_tmpl.hrc#SECONDARYAXISCHECKBOXES__xpos__ypos__xOffset__yOffset__.CB_Z_SECONDARY.checkbox.text
+msgid "Z axi~s"
+msgstr "Ві~сь Z"
+
+#: res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_MAINTITLE.fixedtext.text
+msgid "~Title"
+msgstr "~Заголовок"
+
+#: res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_SUBTITLE.fixedtext.text
+msgid "~Subtitle"
+msgstr "~Підзаголовок"
+
+#: 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 "Осі"
+
+#: 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 "Вісь ~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 "Вісь ~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 "Вісь ~Z"
+
+#: res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FL_SECONDARY_AXES.fixedline.text
+msgid "Secondary Axes"
+msgstr "Додаткові осі"
+
+#: 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 "~Вісь 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 "В~ісь Y"
+
+#: tp_Wizard_TitlesAndObjects.src#TP_WIZARD_TITLEANDOBJECTS.FT_TITLEDESCRIPTION.fixedtext.text
+msgid "Choose titles, legend, and grid settings"
+msgstr "Виберіть заголовки, легенди та параметри сітки"
+
+#: tp_Wizard_TitlesAndObjects.src#TP_WIZARD_TITLEANDOBJECTS.FL_GRIDS.fixedline.text
+msgid "Display grids"
+msgstr "Відображати сітку"
+
+#: tp_PolarOptions.src#TP_POLAROPTIONS.CB_CLOCKWISE.checkbox.text
+msgid "~Clockwise direction"
+msgstr "За ~годинниковою стрілкою"
+
+#: tp_PolarOptions.src#TP_POLAROPTIONS.FL_STARTING_ANGLE.fixedline.text
+msgid "Starting angle"
+msgstr "Початковий кут"
+
+#: tp_PolarOptions.src#TP_POLAROPTIONS.FT_ROTATION_DEGREES.fixedtext.text
+msgctxt "tp_PolarOptions.src#TP_POLAROPTIONS.FT_ROTATION_DEGREES.fixedtext.text"
+msgid "~Degrees"
+msgstr "~Градуси"
+
+#: 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 ""
+
+#: 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 ""
+
+#: res_ErrorBar_tmpl.hrc#WORKAROUND.1.stringlist.text
+msgid "Standard Error"
+msgstr "Стандартна помилка"
+
+#: res_ErrorBar_tmpl.hrc#WORKAROUND.2.stringlist.text
+msgid "Standard Deviation"
+msgstr "Стандартна девіація"
+
+#: res_ErrorBar_tmpl.hrc#WORKAROUND.3.stringlist.text
+msgid "Variance"
+msgstr "Коливання"
+
+#: res_ErrorBar_tmpl.hrc#WORKAROUND.4.stringlist.text
+msgid "Error Margin"
+msgstr "Границя помилки"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.FL_ERROR.fixedline.text
+msgid "Error Category"
+msgstr "Категорія помилки"
+
+#: 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 "~Немає"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_CONST.radiobutton.text
+msgid "~Constant Value"
+msgstr "~Значення константи"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_PERCENT.radiobutton.text
+msgid "~Percentage"
+msgstr "~Відсоток"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_RANGE.radiobutton.text
+msgid "Cell ~Range"
+msgstr "Діапазон ~комірок"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.FL_PARAMETERS.fixedline.text
+msgid "Parameters"
+msgstr "Параметри"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.FT_POSITIVE.fixedtext.text
+msgid "P~ositive (+)"
+msgstr "~Додатне (+)"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.FT_NEGATIVE.fixedtext.text
+msgid "~Negative (-)"
+msgstr "~Від'ємне (-)"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.CB_SYN_POS_NEG.checkbox.text
+msgid "Same value for both"
+msgstr "Однакове значення у обох випадках"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.FL_INDICATE.fixedline.text
+msgid "Error Indicator"
+msgstr "Індикатор помилки"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_BOTH.radiobutton.text
+msgid "Positive ~and Negative"
+msgstr "Від'ємне ~та додатне"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_POSITIVE.radiobutton.text
+msgid "Pos~itive"
+msgstr "~Додатне"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_NEGATIVE.radiobutton.text
+msgid "Ne~gative"
+msgstr "~Від'ємне"
+
+#: tp_LegendPosition.src#TP_LEGEND_POS.GRP_LEGEND.fixedline.text
+msgctxt "tp_LegendPosition.src#TP_LEGEND_POS.GRP_LEGEND.fixedline.text"
+msgid "Position"
+msgstr "Позиція"
+
+#: 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 ""
+
+#: 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 "Напрямок тексту"
+
+#: res_LegendPosition_tmpl.hrc#RESOURCE_LEGENDDISPLAY__xpos___ypos__.CBX_SHOWLEGEND.checkbox.text
+msgid "~Display legend"
+msgstr "~Показати легенду"
+
+#: res_LegendPosition_tmpl.hrc#RESOURCE_LEGENDPOSITION__xpos___ypos__.RBT_LEFT.radiobutton.text
+msgid "~Left"
+msgstr "~Ліворуч"
+
+#: res_LegendPosition_tmpl.hrc#RESOURCE_LEGENDPOSITION__xpos___ypos__.RBT_RIGHT.radiobutton.text
+msgid "~Right"
+msgstr "С~права"
+
+#: res_LegendPosition_tmpl.hrc#RESOURCE_LEGENDPOSITION__xpos___ypos__.RBT_TOP.radiobutton.text
+msgid "~Top"
+msgstr "З~гори"
+
+#: res_LegendPosition_tmpl.hrc#RESOURCE_LEGENDPOSITION__xpos___ypos__.RBT_BOTTOM.radiobutton.text
+msgid "~Bottom"
+msgstr "З~низу"
+
+#: dlg_View3D.src#DLG_3D_VIEW.tabdialog.text
+msgid "3D View"
+msgstr "Тривимірний вигляд"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FL_AXIS_LINE.fixedline.text
+msgid "Axis line"
+msgstr ""
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FT_CROSSES_OTHER_AXIS_AT.fixedtext.text
+msgid "~Cross other axis at"
+msgstr ""
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_CROSSES_OTHER_AXIS_AT.1.stringlist.text
+#, fuzzy
+msgid "Start"
+msgstr ""
+"#-#-#-#-# navipi.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Початок\n"
+"#-#-#-#-# animations.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Почати"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_CROSSES_OTHER_AXIS_AT.2.stringlist.text
+#, fuzzy
+msgid "End"
+msgstr ""
+"#-#-#-#-# navipi.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Кінець\n"
+"#-#-#-#-# extension.po (PACKAGE VERSION) #-#-#-#-#\n"
+"End"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_CROSSES_OTHER_AXIS_AT.3.stringlist.text
+msgid "Value"
+msgstr "Значення"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_CROSSES_OTHER_AXIS_AT.4.stringlist.text
+msgid "Category"
+msgstr "Категорія"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_AXIS_BETWEEN_CATEGORIES.checkbox.text
+msgid "Axis ~between categories"
+msgstr ""
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FL_LABELS.fixedline.text
+msgid "Labels"
+msgstr "Підпис"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FT_PLACE_LABELS.fixedtext.text
+msgid "~Place labels"
+msgstr ""
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_LABELS.1.stringlist.text
+msgid "Near axis"
+msgstr ""
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_LABELS.2.stringlist.text
+msgid "Near axis (other side)"
+msgstr ""
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_LABELS.3.stringlist.text
+msgid "Outside start"
+msgstr ""
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_LABELS.4.stringlist.text
+msgid "Outside end"
+msgstr ""
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FT_AXIS_LABEL_DISTANCE.fixedtext.text
+msgid "~Distance"
+msgstr "~Відстань"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FL_TICKS.fixedline.text
+msgid "Interval marks"
+msgstr ""
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FT_MAJOR.fixedtext.text
+msgid "Major:"
+msgstr ""
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_TICKS_INNER.checkbox.text
+msgid "~Inner"
+msgstr ""
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_TICKS_OUTER.checkbox.text
+msgid "~Outer"
+msgstr "~Зовнішні"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FT_MINOR.fixedtext.text
+msgid "Minor:"
+msgstr ""
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_MINOR_INNER.checkbox.text
+msgid "I~nner"
+msgstr "В~нутрішні"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_MINOR_OUTER.checkbox.text
+msgid "O~uter"
+msgstr "~Зовні"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FT_PLACE_TICKS.fixedtext.text
+msgid "Place ~marks"
+msgstr ""
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_TICKS.1.stringlist.text
+msgid "At labels"
+msgstr ""
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_TICKS.2.stringlist.text
+msgid "At axis"
+msgstr ""
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_TICKS.3.stringlist.text
+msgid "At axis and labels"
+msgstr ""
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FL_GRIDS.fixedline.text
+msgctxt "tp_AxisPositions.src#TP_AXIS_POSITIONS.FL_GRIDS.fixedline.text"
+msgid "Grids"
+msgstr "Сітки"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_MAJOR_GRID.checkbox.text
+msgid "Show major ~grid"
+msgstr ""
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.PB_MAJOR_GRID.pushbutton.text
+msgid "Mo~re..."
+msgstr ""
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_MINOR_GRID.checkbox.text
+msgid "~Show minor grid"
+msgstr ""
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.PB_MINOR_GRID.pushbutton.text
+msgid "Mor~e..."
+msgstr ""
+
+#: Strings_AdditionalControls.src#STR_3DSCHEME_SIMPLE.string.text
+msgid "Simple"
+msgstr "Простий"
+
+#: Strings_AdditionalControls.src#STR_3DSCHEME_REALISTIC.string.text
+msgid "Realistic"
+msgstr "Реалістичныи"
+
+#: Strings_AdditionalControls.src#STR_3DSCHEME_CUSTOM.string.text
+msgid "Custom"
+msgstr "Особливий"
+
+#: Strings_AdditionalControls.src#STR_BAR_GEOMETRY.string.text
+msgid "Shape"
+msgstr "Фігура"
+
+#: Strings_AdditionalControls.src#STR_NUMBER_OF_LINES.string.text
+msgid "~Number of lines"
+msgstr "~Кількість ліній"
+
+#: Strings_AdditionalControls.src#STR_TEXT_SEPARATOR.string.text
+msgid "Separator"
+msgstr "Розділювач"
diff --git a/source/uk/connectivity/registry/ado/org/openoffice/Office/DataAccess.po b/source/uk/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..3e17bb363d9
--- /dev/null
+++ b/source/uk/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,27 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\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 ""
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_ado_access_PROVIDER_Microsoft.Jet.OLEDB.4.0_DATA_SOURCE__.DriverTypeDisplayName.value.text
+msgid "Microsoft Access"
+msgstr ""
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_ado_access_Provider_Microsoft.ACE.OLEDB.12.0_DATA_SOURCE__.DriverTypeDisplayName.value.text
+msgid "Microsoft Access 2007"
+msgstr ""
diff --git a/source/uk/connectivity/registry/calc/org/openoffice/Office/DataAccess.po b/source/uk/connectivity/registry/calc/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..62e881977b5
--- /dev/null
+++ b/source/uk/connectivity/registry/calc/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,19 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\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 ""
diff --git a/source/uk/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po b/source/uk/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..6d31897e606
--- /dev/null
+++ b/source/uk/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,19 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\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 ""
diff --git a/source/uk/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po b/source/uk/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..fedd70bc3d1
--- /dev/null
+++ b/source/uk/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,27 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\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 ""
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_evolution_ldap.DriverTypeDisplayName.value.text
+msgid "Evolution LDAP"
+msgstr ""
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_evolution_groupwise.DriverTypeDisplayName.value.text
+msgid "Groupwise"
+msgstr ""
diff --git a/source/uk/connectivity/registry/flat/org/openoffice/Office/DataAccess.po b/source/uk/connectivity/registry/flat/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..76abb953d82
--- /dev/null
+++ b/source/uk/connectivity/registry/flat/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,19 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\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 ""
diff --git a/source/uk/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po b/source/uk/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..03a233710ec
--- /dev/null
+++ b/source/uk/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,19 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\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 ""
diff --git a/source/uk/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po b/source/uk/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..90e2e6466a5
--- /dev/null
+++ b/source/uk/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,23 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.jdbc__.DriverTypeDisplayName.value.text
+msgid "JDBC"
+msgstr ""
+
+#: Drivers.xcu#.Drivers.Installed.jdbc_oracle_thin__.DriverTypeDisplayName.value.text
+msgid "Oracle JDBC"
+msgstr ""
diff --git a/source/uk/connectivity/registry/kab/org/openoffice/Office/DataAccess.po b/source/uk/connectivity/registry/kab/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..7e0b52c2f0e
--- /dev/null
+++ b/source/uk/connectivity/registry/kab/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,19 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\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 ""
diff --git a/source/uk/connectivity/registry/macab/org/openoffice/Office/DataAccess.po b/source/uk/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..b695fdc27e2
--- /dev/null
+++ b/source/uk/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,19 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\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 ""
diff --git a/source/uk/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po b/source/uk/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..676db4171f7
--- /dev/null
+++ b/source/uk/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,35 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\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 ""
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_outlookexp.DriverTypeDisplayName.value.text
+msgid "Microsoft Windows Address Book"
+msgstr ""
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_mozilla_.DriverTypeDisplayName.value.text
+msgid "SeaMonkey Address Book"
+msgstr ""
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_thunderbird_.DriverTypeDisplayName.value.text
+msgid "Thunderbird/Icedove Address Book"
+msgstr ""
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_ldap__.DriverTypeDisplayName.value.text
+msgid "LDAP Address Book"
+msgstr ""
diff --git a/source/uk/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po b/source/uk/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..4a003cea3f2
--- /dev/null
+++ b/source/uk/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,27 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\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 ""
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_thunderbird_.DriverTypeDisplayName.value.text
+msgid "Thunderbird/Icedove Address Book"
+msgstr ""
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_ldap__.DriverTypeDisplayName.value.text
+msgid "LDAP Address Book"
+msgstr ""
diff --git a/source/uk/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po b/source/uk/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..4996674417a
--- /dev/null
+++ b/source/uk/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,27 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\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 ""
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_mysql_odbc__.DriverTypeDisplayName.value.text
+msgid "MySQL (ODBC)"
+msgstr ""
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_mysql_mysqlc__.DriverTypeDisplayName.value.text
+msgid "MySQL (Native)"
+msgstr ""
diff --git a/source/uk/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po b/source/uk/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..02bf0bba2e6
--- /dev/null
+++ b/source/uk/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,19 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\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 ""
diff --git a/source/uk/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po b/source/uk/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..3600a146291
--- /dev/null
+++ b/source/uk/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,19 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\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 ""
diff --git a/source/uk/connectivity/registry/tdeab/org/openofffice/Office/DataAccess.po b/source/uk/connectivity/registry/tdeab/org/openofffice/Office/DataAccess.po
new file mode 100644
index 00000000000..14a44015f76
--- /dev/null
+++ b/source/uk/connectivity/registry/tdeab/org/openofffice/Office/DataAccess.po
@@ -0,0 +1,19 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\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 ""
diff --git a/source/uk/connectivity/source/resource.po b/source/uk/connectivity/source/resource.po
new file mode 100644
index 00000000000..b6990ba4826
--- /dev/null
+++ b/source/uk/connectivity/source/resource.po
@@ -0,0 +1,570 @@
+#. 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-03-31 17:54+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: conn_error_message.src#256___2_100___0.string.text
+msgid "The record operation has been vetoed."
+msgstr "Операцію запису заборонено."
+
+#: conn_error_message.src#256___2_200___0.string.text
+msgid "The statement contains a cyclic reference to one or more sub queries."
+msgstr "Вираз містить циклічні посилання на один чи більше вкладених запитів."
+
+#: conn_error_message.src#256___2_300___0.string.text
+msgid "The name must not contain any slashes ('/')."
+msgstr "Назва не повинна містити символи косої риски (\"/\")."
+
+#: conn_error_message.src#256___2_301___0.string.text
+msgid "$1$ is no SQL conform identifier."
+msgstr "$1$ не є ідентифікатором, що відповідає SQL."
+
+#: conn_error_message.src#256___2_302___0.string.text
+msgid "Query names must not contain quote characters."
+msgstr "Назва запитів не повинна містити дужок."
+
+#: conn_error_message.src#256___2_303___0.string.text
+msgid "The name '$1$' is already in use in the database."
+msgstr "Назва \"$1$\" вже використовується у базі даних."
+
+#: conn_error_message.src#256___2_304___0.string.text
+msgid "No connection to the database exists."
+msgstr "Не існує з'єднання із базою даних."
+
+#: conn_error_message.src#256___2_500___0.string.text
+msgid "No $1$ exists."
+msgstr "Не існує $1$."
+
+#: conn_error_message.src#256___2_550___0.string.text
+msgid "Unable to display the complete table content. Please apply a filter."
+msgstr "Неможливо показати весь вміст таблиці. Застосуйте фільтр."
+
+#. 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 "Тека адресної книги 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 "Тека адресної книги Thunderbird"
+
+#: conn_shared_res.src#STR_OE_ADDRESSBOOK.string.text
+msgid "Outlook Express Addressbook"
+msgstr "Адресна книга Outlook Express"
+
+#: conn_shared_res.src#STR_OUTLOOK_MAPI_ADDRESSBOOK.string.text
+msgid "Outlook (MAPI) Addressbook"
+msgstr "Адресна книга 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 "Створення таблиць не підтримується для цього типу адресної книги."
+
+#: conn_shared_res.src#STR_MOZILLA_IS_RUNNING.string.text
+msgid "Cannot create new address books while Mozilla is running."
+msgstr "Створення нової адресної книги неможливе, якщо запущено Mozilla."
+
+#: 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 "Не вдалось одержати запис з адресної книги через невідому помилку."
+
+#: 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 "Не вдається отримати назву каталогу з адресної книги, через невідому помилку."
+
+#: conn_shared_res.src#STR_TIMEOUT_WAITING.string.text
+msgid "Timed out while waiting for the result."
+msgstr "Перевищення часу очікування результатів запиту."
+
+#: conn_shared_res.src#STR_ERR_EXECUTING_QUERY.string.text
+msgid "An error occurred while executing the query."
+msgstr "Помилка при виконанні запиту."
+
+#: 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 "Не можна вносити зміни до адресної книги Mozill, доки запущено Mozilla."
+
+#: 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 "Неможливо внести до адресної книги Mozilla, оскільки адресна книга змінена зовнішньою програмою."
+
+#: conn_shared_res.src#STR_CANT_FIND_ROW.string.text
+msgid "Can't find the requested row."
+msgstr "Неможливо знайти запитаний запис."
+
+#: conn_shared_res.src#STR_CANT_FIND_CARD_FOR_ROW.string.text
+msgid "Can't find the card for the requested row."
+msgstr "Неможливо отримати адресну картку для запитаного запису."
+
+#: 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 ""
+
+#: conn_shared_res.src#STR_NO_COUNT_SUPPORT.string.text
+msgid "The driver does not support the 'COUNT' function."
+msgstr ""
+
+#: conn_shared_res.src#STR_STMT_TYPE_NOT_SUPPORTED.string.text
+msgid "This statement type not supported by this database driver."
+msgstr ""
+
+#: conn_shared_res.src#STR_UNSPECIFIED_ERROR.string.text
+#, fuzzy
+msgid "An unknown error occurred."
+msgstr "Невідома помилка."
+
+#: 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 ""
+
+#: conn_shared_res.src#STR_COULD_NOT_LOAD_LIB.string.text
+msgid "The library '$libname$' could not be loaded."
+msgstr "Файл $filename$ не може бути перезавантажений."
+
+#: conn_shared_res.src#STR_ERROR_REFRESH_ROW.string.text
+#, fuzzy
+msgid "An error occurred while refreshing the current row."
+msgstr "Помилка при створенні календарю."
+
+#: conn_shared_res.src#STR_ERROR_GET_ROW.string.text
+#, fuzzy
+msgid "An error occurred while getting the current row."
+msgstr "Помилка при створенні календарю."
+
+#: conn_shared_res.src#STR_CAN_NOT_CANCEL_ROW_UPDATE.string.text
+msgid "The row update can not be canceled."
+msgstr ""
+
+#: conn_shared_res.src#STR_CAN_NOT_CREATE_ROW.string.text
+msgid "A new row can not be created."
+msgstr ""
+
+#: 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 ""
+
+#: conn_shared_res.src#STR_ILLEGAL_MOVEMENT.string.text
+msgid "Illegal cursor movement occurred."
+msgstr ""
+
+#: conn_shared_res.src#STR_COMMIT_ROW.string.text
+msgid "Please commit row '$position$' before update rows or insert new rows."
+msgstr ""
+
+#: conn_shared_res.src#STR_INVALID_ROW_UPDATE.string.text
+msgid "The update call can not be executed. The row is invalid."
+msgstr ""
+
+#: conn_shared_res.src#STR_ROW_CAN_NOT_SAVE.string.text
+msgid "The current row can not be saved."
+msgstr ""
+
+#: conn_shared_res.src#STR_NO_HOSTNAME.string.text
+msgid "No hostname was provided."
+msgstr "Не вказано назву комп'ютера."
+
+#: conn_shared_res.src#STR_NO_BASEDN.string.text
+msgid "No Base DN was provided."
+msgstr "Не вказано 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 "Неможливо встановити з'єднання з сервером LDAP."
+
+#: conn_shared_res.src#STR_NO_CONNECTION_GIVEN.string.text
+msgid "It doesn't exist a connection to the database."
+msgstr ""
+
+#: 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 ""
+
+#: conn_shared_res.src#STR_INPUTSTREAM_WRONG_LEN.string.text
+msgid "End of InputStream reached before satisfying length specified when InputStream was set."
+msgstr ""
+
+#: conn_shared_res.src#STR_NO_INPUTSTREAM.string.text
+msgid "The input stream was not set."
+msgstr ""
+
+#: conn_shared_res.src#STR_NO_ELEMENT_NAME.string.text
+msgid "There is no element named '$name$'."
+msgstr ""
+
+#: conn_shared_res.src#STR_INVALID_BOOKMARK.string.text
+msgid "Invalid bookmark value"
+msgstr ""
+
+#: conn_shared_res.src#STR_PRIVILEGE_NOT_GRANTED.string.text
+msgid "Privilege not granted: Only table privileges can be granted."
+msgstr ""
+
+#: conn_shared_res.src#STR_PRIVILEGE_NOT_REVOKED.string.text
+msgid "Privilege not revoked: Only table privileges can be revoked."
+msgstr ""
+
+#: conn_shared_res.src#STR_UNKNOWN_COLUMN_NAME.string.text
+msgid "The column name '$columnname$' is unknown."
+msgstr ""
+
+#: conn_shared_res.src#STR_ERRORMSG_SEQUENCE.string.text
+msgid "Function sequence error."
+msgstr ""
+
+#: conn_shared_res.src#STR_INVALID_INDEX.string.text
+msgid "Invalid descriptor index."
+msgstr ""
+
+#: conn_shared_res.src#STR_UNSUPPORTED_FUNCTION.string.text
+msgid "The driver does not support the function '$functionname$'."
+msgstr ""
+
+#: conn_shared_res.src#STR_UNSUPPORTED_FEATURE.string.text
+msgid "The driver does not support the functionality for '$featurename$'. It is not implemented."
+msgstr ""
+
+#: conn_shared_res.src#STR_FORMULA_WRONG.string.text
+msgid "The formula for TypeInfoSettings is wrong!"
+msgstr ""
+
+#: 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 "Рядок \"$string$\" перевищив максимальну довжину символів $maxlen$ після перетворення у кодування \"$charset$\"."
+
+#: conn_shared_res.src#STR_CANNOT_CONVERT_STRING.string.text
+msgid "The string '$string$' cannot be converted using the encoding '$charset$'."
+msgstr "Рядок \"$string$\" не може бути перетворений на кодування \"$charset$\"."
+
+#: conn_shared_res.src#STR_URI_SYNTAX_ERROR.string.text
+msgid "The connection URL is invalid."
+msgstr "Неприпустимий URL для підключення."
+
+#: conn_shared_res.src#STR_QUERY_TOO_COMPLEX.string.text
+msgid "The query can not be executed. It is too complex."
+msgstr ""
+
+#: conn_shared_res.src#STR_OPERATOR_TOO_COMPLEX.string.text
+msgid "The query can not be executed. The operator is too complex."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: conn_shared_res.src#STR_INVALID_COLUMNNAME.string.text
+msgid "The column name '$columnname$' is not valid."
+msgstr ""
+
+#: conn_shared_res.src#STR_INVALID_COLUMN_SELECTION.string.text
+msgid "The statement contains an invalid selection of columns."
+msgstr ""
+
+#: conn_shared_res.src#STR_COLUMN_NOT_UPDATEABLE.string.text
+msgid "The column at position '$position$' could not be updated."
+msgstr ""
+
+#: conn_shared_res.src#STR_COULD_NOT_LOAD_FILE.string.text
+msgid "The file $filename$ could not be loaded."
+msgstr "Файл $filename$ не може бути перезавантажений."
+
+#: 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 ""
+"Спроба перезавантаження файлу призвела до наступної помилки ($exception_type$):\n"
+"\n"
+"$error_message$"
+
+#: conn_shared_res.src#STR_TYPE_NOT_CONVERT.string.text
+msgid "The type could not be converted."
+msgstr ""
+
+#: conn_shared_res.src#STR_INVALID_COLUMN_DESCRIPTOR_ERROR.string.text
+msgid "Could not append column: invalid column descriptor."
+msgstr ""
+
+#: conn_shared_res.src#STR_INVALID_GROUP_DESCRIPTOR_ERROR.string.text
+msgid "Could not create group: invalid object descriptor."
+msgstr ""
+
+#: conn_shared_res.src#STR_INVALID_INDEX_DESCRIPTOR_ERROR.string.text
+msgid "Could not create index: invalid object descriptor."
+msgstr ""
+
+#: conn_shared_res.src#STR_INVALID_KEY_DESCRIPTOR_ERROR.string.text
+msgid "Could not create key: invalid object descriptor."
+msgstr ""
+
+#: conn_shared_res.src#STR_INVALID_TABLE_DESCRIPTOR_ERROR.string.text
+msgid "Could not create table: invalid object descriptor."
+msgstr ""
+
+#: conn_shared_res.src#STR_INVALID_USER_DESCRIPTOR_ERROR.string.text
+msgid "Could not create user: invalid object descriptor."
+msgstr ""
+
+#: conn_shared_res.src#STR_INVALID_VIEW_DESCRIPTOR_ERROR.string.text
+msgid "Could not create view: invalid object descriptor."
+msgstr ""
+
+#: conn_shared_res.src#STR_VIEW_NO_COMMAND_ERROR.string.text
+msgid "Could not create view: no command object."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: conn_shared_res.src#STR_COULD_NOT_CREATE_INDEX.string.text
+msgid "The index could not be created. An unknown error appeared."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: conn_shared_res.src#STR_SQL_NAME_ERROR.string.text
+msgid "The name '$name$' doesn't match SQL naming constraints."
+msgstr ""
+
+#: conn_shared_res.src#STR_COULD_NOT_DELETE_FILE.string.text
+msgid "The file $filename$ could not be deleted."
+msgstr "Файл $filename$ не може бути перезавантажений."
+
+#: conn_shared_res.src#STR_INVALID_COLUMN_TYPE.string.text
+msgid "Invalid column type for column '$columnname$'."
+msgstr ""
+
+#: conn_shared_res.src#STR_INVALID_COLUMN_PRECISION.string.text
+msgid "Invalid precision for column '$columnname$'."
+msgstr ""
+
+#: conn_shared_res.src#STR_INVALID_PRECISION_SCALE.string.text
+msgid "Precision is less than scale for column '$columnname$'."
+msgstr ""
+
+#: conn_shared_res.src#STR_INVALID_COLUMN_NAME_LENGTH.string.text
+msgid "Invalid column name length for column '$columnname$'."
+msgstr ""
+
+#: conn_shared_res.src#STR_DUPLICATE_VALUE_IN_COLUMN.string.text
+msgid "Duplicate value found in column '$columnname$'."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: conn_shared_res.src#STR_COULD_NOT_ALTER_TABLE.string.text
+msgid "The table could not be altered."
+msgstr ""
+
+#: conn_shared_res.src#STR_INVALID_DBASE_FILE.string.text
+msgid "The file '$filename$' is an invalid (or unrecognized) dBase file."
+msgstr ""
+
+#: conn_shared_res.src#STR_CANNOT_OPEN_BOOK.string.text
+msgid "Cannot open Evolution address book."
+msgstr ""
+
+#: conn_shared_res.src#STR_SORT_BY_COL_ONLY.string.text
+msgid "Can only sort by table columns."
+msgstr ""
+
+#: 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 ""
+
+#: conn_shared_res.src#STR_QUERY_INVALID_BETWEEN.string.text
+msgid "The query can not be executed. The 'BETWEEN' arguments are not correct."
+msgstr ""
+
+#: conn_shared_res.src#STR_QUERY_FUNCTION_NOT_SUPPORTED.string.text
+msgid "The query can not be executed. The function is not supported."
+msgstr ""
+
+#: conn_shared_res.src#STR_TABLE_READONLY.string.text
+msgid "The table can not be changed. It is read only."
+msgstr ""
+
+#: conn_shared_res.src#STR_DELETE_ROW.string.text
+msgid "The row could not be deleted. The option \"Display inactive records\" is set."
+msgstr ""
+
+#: conn_shared_res.src#STR_ROW_ALREADY_DELETED.string.text
+msgid "The row could not be deleted. It is already deleted."
+msgstr ""
+
+#: conn_shared_res.src#STR_QUERY_MORE_TABLES.string.text
+msgid "The query can not be executed. It contains more than one table."
+msgstr ""
+
+#: conn_shared_res.src#STR_QUERY_NO_TABLE.string.text
+msgid "The query can not be executed. It contains no valid table."
+msgstr ""
+
+#: conn_shared_res.src#STR_QUERY_NO_COLUMN.string.text
+msgid "The query can not be executed. It contains no valid columns."
+msgstr ""
+
+#: conn_shared_res.src#STR_INVALID_PARA_COUNT.string.text
+msgid "The count of the given parameter values doesn't match the parameters."
+msgstr ""
+
+#: 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 ""
+
+#: conn_shared_res.src#STR_NO_CLASSNAME.string.text
+msgid "The driver class '$classname$' could not be loaded."
+msgstr ""
+
+#: conn_shared_res.src#STR_NO_JAVA.string.text
+msgid "No Java installation could be found. Please check your installation."
+msgstr ""
+
+#: conn_shared_res.src#STR_NO_RESULTSET.string.text
+msgid "The execution of the query doesn't return a valid result set."
+msgstr ""
+
+#: conn_shared_res.src#STR_NO_ROWCOUNT.string.text
+msgid "The execution of the update statement doesn't effect any rows."
+msgstr ""
+
+#: conn_shared_res.src#STR_NO_CLASSNAME_PATH.string.text
+msgid "The additional driver class path is '$classpath$'."
+msgstr ""
+
+#: conn_shared_res.src#STR_UNKNOWN_PARA_TYPE.string.text
+msgid "The type of parameter at position '$position$' is unknown."
+msgstr ""
+
+#: conn_shared_res.src#STR_UNKNOWN_COLUMN_TYPE.string.text
+msgid "The type of column at position '$position$' is unknown."
+msgstr ""
+
+#: conn_shared_res.src#STR_NO_KDE_INST.string.text
+msgid "No suitable KDE installation was found."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: conn_shared_res.src#STR_PARA_ONLY_PREPARED.string.text
+msgid "Parameters can appear only in prepared statements."
+msgstr ""
+
+#: conn_shared_res.src#STR_NO_TABLE.string.text
+msgid "No such table!"
+msgstr ""
+
+#: conn_shared_res.src#STR_NO_MAC_OS_FOUND.string.text
+msgid "No suitable Mac OS installation was found."
+msgstr ""
+
+#: conn_shared_res.src#STR_NO_STROAGE.string.text
+msgid "The connection can not be established. No storage or URL was given."
+msgstr ""
+
+#: 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 ""
+
+#: conn_shared_res.src#STR_NO_TABLE_CONTAINER.string.text
+#, fuzzy
+msgid "An error occurred while obtaining the connection's table container."
+msgstr "Помилка при створенні календарю."
+
+#: conn_shared_res.src#STR_NO_TABLE_EDITOR_DIALOG.string.text
+#, fuzzy
+msgid "An error occurred while creating the table editor dialog."
+msgstr "Помилка при створенні календарю."
+
+#: conn_shared_res.src#STR_NO_TABLENAME.string.text
+msgid "There is no table named '$tablename$'."
+msgstr ""
+
+#: conn_shared_res.src#STR_NO_DOCUMENTUI.string.text
+msgid "The provided DocumentUI is not allowed to be NULL."
+msgstr ""
diff --git a/source/uk/cui/source/customize.po b/source/uk/cui/source/customize.po
new file mode 100644
index 00000000000..a81ced490ff
--- /dev/null
+++ b/source/uk/cui/source/customize.po
@@ -0,0 +1,840 @@
+#. 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: 2011-04-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\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 "Подія"
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.STR_ASSMACRO.string.text
+msgctxt "macropg.src#RID_SVXPAGE_MACROASSIGN.STR_ASSMACRO.string.text"
+msgid "Assigned Action"
+msgstr "Призначена дія"
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.FT_ASSIGN.fixedtext.text
+msgctxt "macropg.src#RID_SVXPAGE_MACROASSIGN.FT_ASSIGN.fixedtext.text"
+msgid "Assign:"
+msgstr "Призначити:"
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.PB_ASSIGN.pushbutton.text
+msgctxt "macropg.src#RID_SVXPAGE_MACROASSIGN.PB_ASSIGN.pushbutton.text"
+msgid "M~acro..."
+msgstr "~Макрос..."
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.PB_ASSIGN_COMPONENT.pushbutton.text
+msgid "Com~ponent..."
+msgstr "~Компонент..."
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.PB_DELETE.pushbutton.text
+msgctxt "macropg.src#RID_SVXPAGE_MACROASSIGN.PB_DELETE.pushbutton.text"
+msgid "~Remove"
+msgstr "В~идалити"
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.tabpage.text
+msgid "Assign action"
+msgstr "Призначити дію"
+
+#: macropg.src#RID_SVXDLG_ASSIGNCOMPONENT.FT_METHOD.fixedtext.text
+msgid "Component method name"
+msgstr "Назва методу компонента"
+
+#: macropg.src#RID_SVXDLG_ASSIGNCOMPONENT.modaldialog.text
+msgid "Assign Component"
+msgstr "Призначити компонент"
+
+#: macropg.src#RID_SVXSTR_EVENT_STARTAPP.string.text
+msgid "Start Application"
+msgstr "Запустити програму"
+
+#: macropg.src#RID_SVXSTR_EVENT_CLOSEAPP.string.text
+msgid "Close Application"
+msgstr "Закрити програму"
+
+#: macropg.src#RID_SVXSTR_EVENT_NEWDOC.string.text
+msgid "New Document"
+msgstr "Відкрити документ"
+
+#: macropg.src#RID_SVXSTR_EVENT_CLOSEDOC.string.text
+msgid "Document closed"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_PREPARECLOSEDOC.string.text
+msgid "Document is going to be closed"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_OPENDOC.string.text
+msgid "Open Document"
+msgstr "Відкрити документ"
+
+#: macropg.src#RID_SVXSTR_EVENT_SAVEDOC.string.text
+msgid "Save Document"
+msgstr "Зберегти документ"
+
+#: macropg.src#RID_SVXSTR_EVENT_SAVEASDOC.string.text
+msgid "Save Document As"
+msgstr "Зберегти документ як"
+
+#: macropg.src#RID_SVXSTR_EVENT_SAVEDOCDONE.string.text
+msgid "Document has been saved"
+msgstr "Документ збережений"
+
+#: macropg.src#RID_SVXSTR_EVENT_SAVEASDOCDONE.string.text
+msgid "Document has been saved as"
+msgstr "Документ збережений як"
+
+#: macropg.src#RID_SVXSTR_EVENT_ACTIVATEDOC.string.text
+msgid "Activate Document"
+msgstr "Активувати документ"
+
+#: macropg.src#RID_SVXSTR_EVENT_DEACTIVATEDOC.string.text
+msgid "Deactivate Document"
+msgstr "Деактивація документу"
+
+#: macropg.src#RID_SVXSTR_EVENT_PRINTDOC.string.text
+msgid "Print Document"
+msgstr "Друкувати документ"
+
+#: macropg.src#RID_SVXSTR_EVENT_MODIFYCHANGED.string.text
+msgid "'Modified' status was changed"
+msgstr "Змінився статус «Змінений»"
+
+#: macropg.src#RID_SVXSTR_EVENT_MAILMERGE.string.text
+msgid "Printing of form letters started"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_MAILMERGE_END.string.text
+msgid "Printing of form letters finished"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_FIELDMERGE.string.text
+msgid "Merging of form fields started"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_FIELDMERGE_FINISHED.string.text
+msgid "Merging of form fields finished"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_PAGECOUNTCHANGE.string.text
+msgid "Changing the page count"
+msgstr "Зміна кількості сторінок"
+
+#: macropg.src#RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED.string.text
+msgid "Loaded a sub component"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_SUBCOMPONENT_CLOSED.string.text
+msgid "Closed a sub component"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_APPROVEPARAMETER.string.text
+msgid "Fill parameters"
+msgstr "При заповненні параметрів"
+
+#: macropg.src#RID_SVXSTR_EVENT_ACTIONPERFORMED.string.text
+msgid "Execute action"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_AFTERUPDATE.string.text
+msgid "After updating"
+msgstr "Після оновлення"
+
+#: macropg.src#RID_SVXSTR_EVENT_BEFOREUPDATE.string.text
+msgid "Before updating"
+msgstr "Перед оновленням"
+
+#: macropg.src#RID_SVXSTR_EVENT_APPROVEROWCHANGE.string.text
+msgid "Before record action"
+msgstr "Перед збереженням"
+
+#: macropg.src#RID_SVXSTR_EVENT_ROWCHANGE.string.text
+msgid "After record action"
+msgstr "Після збереження"
+
+#: macropg.src#RID_SVXSTR_EVENT_CONFIRMDELETE.string.text
+msgid "Confirm deletion"
+msgstr "Підтвердження видалення"
+
+#: macropg.src#RID_SVXSTR_EVENT_ERROROCCURRED.string.text
+msgid "Error occurred"
+msgstr "При виникненні помилки"
+
+#: macropg.src#RID_SVXSTR_EVENT_ADJUSTMENTVALUECHANGED.string.text
+msgid "While adjusting"
+msgstr "При вирівнюванні"
+
+#: macropg.src#RID_SVXSTR_EVENT_FOCUSGAINED.string.text
+msgid "When receiving focus"
+msgstr "При отриманні фокусу"
+
+#: macropg.src#RID_SVXSTR_EVENT_FOCUSLOST.string.text
+msgid "When losing focus"
+msgstr "При втраті фокусу"
+
+#: macropg.src#RID_SVXSTR_EVENT_ITEMSTATECHANGED.string.text
+msgid "Item status changed"
+msgstr "Зміна стану елемента"
+
+#: macropg.src#RID_SVXSTR_EVENT_KEYTYPED.string.text
+msgid "Key pressed"
+msgstr "Натиск клавіші"
+
+#: macropg.src#RID_SVXSTR_EVENT_KEYUP.string.text
+msgid "Key released"
+msgstr "Відпускання клавіші"
+
+#: macropg.src#RID_SVXSTR_EVENT_LOADED.string.text
+msgid "When loading"
+msgstr "При завантаженні"
+
+#: macropg.src#RID_SVXSTR_EVENT_RELOADING.string.text
+msgid "Before reloading"
+msgstr "Перед повторним завантаженням"
+
+#: macropg.src#RID_SVXSTR_EVENT_RELOADED.string.text
+msgid "When reloading"
+msgstr "При повторному завантаженні"
+
+#: macropg.src#RID_SVXSTR_EVENT_MOUSEDRAGGED.string.text
+msgid "Mouse moved while key pressed"
+msgstr "Переміщення миші з натиснутою клавішею"
+
+#: macropg.src#RID_SVXSTR_EVENT_MOUSEENTERED.string.text
+msgid "Mouse inside"
+msgstr "Миша всередині"
+
+#: macropg.src#RID_SVXSTR_EVENT_MOUSEEXITED.string.text
+msgid "Mouse outside"
+msgstr "Миша ззовні"
+
+#: macropg.src#RID_SVXSTR_EVENT_MOUSEMOVED.string.text
+msgid "Mouse moved"
+msgstr "Переміщення миші"
+
+#: macropg.src#RID_SVXSTR_EVENT_MOUSEPRESSED.string.text
+msgid "Mouse button pressed"
+msgstr "Натискання кнопки миші"
+
+#: macropg.src#RID_SVXSTR_EVENT_MOUSERELEASED.string.text
+msgid "Mouse button released"
+msgstr "Відпускання кнопки миші"
+
+#: macropg.src#RID_SVXSTR_EVENT_POSITIONING.string.text
+msgid "Before record change"
+msgstr "Перед зміною запису"
+
+#: macropg.src#RID_SVXSTR_EVENT_POSITIONED.string.text
+msgid "After record change"
+msgstr "Після зміни запису"
+
+#: macropg.src#RID_SVXSTR_EVENT_RESETTED.string.text
+msgid "After resetting"
+msgstr "Після відновлення"
+
+#: macropg.src#RID_SVXSTR_EVENT_APPROVERESETTED.string.text
+msgid "Prior to reset"
+msgstr "Перед відновлення"
+
+#: macropg.src#RID_SVXSTR_EVENT_APPROVEACTIONPERFORMED.string.text
+msgid "Approve action"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_SUBMITTED.string.text
+msgid "Before submitting"
+msgstr "Перед підтвердженням"
+
+#: macropg.src#RID_SVXSTR_EVENT_TEXTCHANGED.string.text
+msgid "Text modified"
+msgstr "Зміна тексту"
+
+#: macropg.src#RID_SVXSTR_EVENT_UNLOADING.string.text
+msgid "Before unloading"
+msgstr "Перед вивантаженням"
+
+#: macropg.src#RID_SVXSTR_EVENT_UNLOADED.string.text
+msgid "When unloading"
+msgstr "При вивантаженні"
+
+#: macropg.src#RID_SVXSTR_EVENT_CHANGED.string.text
+msgid "Changed"
+msgstr "Зміна стану"
+
+#: macropg.src#RID_SVXSTR_EVENT_CREATEDOC.string.text
+msgid "Document created"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_LOADDOCFINISHED.string.text
+msgid "Document loading finished"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_SAVEDOCFAILED.string.text
+msgid "Saving of document failed"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_SAVEASDOCFAILED.string.text
+msgid "'Save as' has failed"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_COPYTODOC.string.text
+msgid "Storing or exporting copy of document"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_COPYTODOCDONE.string.text
+msgid "Document copy has been created"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_COPYTODOCFAILED.string.text
+msgid "Creating of document copy failed"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_VIEWCREATED.string.text
+msgid "View created"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_PREPARECLOSEVIEW.string.text
+msgid "View is going to be closed"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_CLOSEVIEW.string.text
+msgid "View closed"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_TITLECHANGED.string.text
+msgid "Document title changed"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_MODECHANGED.string.text
+msgid "Document mode changed"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_VISAREACHANGED.string.text
+msgid "Visible area changed"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_STORAGECHANGED.string.text
+msgid "Document has got a new storage"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_LAYOUT_FINISHED.string.text
+msgid "Document layout finished"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_SELECTIONCHANGED.string.text
+msgid "Selection changed"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_DOUBLECLICK.string.text
+msgid "Double click"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_RIGHTCLICK.string.text
+msgid "Right click"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_CALCULATE.string.text
+msgid "Formulas calculated"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_CONTENTCHANGED.string.text
+msgid "Content changed"
+msgstr ""
+
+#: 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 "Виберіть бібліотеку, яка містить потрібний макрос. Потім виберіть макрос у полі \"Назва макросу\"."
+
+#: selector.src#STR_SELECTOR_ADD_COMMANDS.string.text
+msgid "Add Commands"
+msgstr "Додати команди"
+
+#: selector.src#STR_SELECTOR_MACROS.string.text
+msgctxt "selector.src#STR_SELECTOR_MACROS.string.text"
+msgid "%PRODUCTNAME Macros"
+msgstr "Макроси %PRODUCTNAME"
+
+#: selector.src#STR_SELECTOR_CATEGORIES.string.text
+msgctxt "selector.src#STR_SELECTOR_CATEGORIES.string.text"
+msgid "~Category"
+msgstr "~Категорія"
+
+#: selector.src#STR_SELECTOR_COMMANDS.string.text
+msgctxt "selector.src#STR_SELECTOR_COMMANDS.string.text"
+msgid "Commands"
+msgstr "Команди"
+
+#: selector.src#STR_SELECTOR_ADD.string.text
+msgid "Add"
+msgstr "Додати"
+
+#: selector.src#STR_SELECTOR_RUN.string.text
+msgid "Run"
+msgstr "Виконати"
+
+#: selector.src#STR_SELECTOR_CLOSE.string.text
+msgid "Close"
+msgstr "Закрити"
+
+#: 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 "Щоб додати команду до панелі інструментів, виберіть категорію, а потім команду. Після чого перетягніть команду на потрібне місце на відповідній панелі інструментів."
+
+#: selector.src#STR_BASICMACROS.string.text
+msgctxt "selector.src#STR_BASICMACROS.string.text"
+msgid "BASIC Macros"
+msgstr "Макроси BASIC"
+
+#: selector.src#RID_DLG_SCRIPTSELECTOR.TXT_SELECTOR_CATEGORIES.fixedtext.text
+msgid "Library"
+msgstr "Бібліотека"
+
+#: 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 "Мої макроси"
+
+#: 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 "Макроси %PRODUCTNAME"
+
+#: selector.src#RID_DLG_SCRIPTSELECTOR.TXT_SELECTOR_COMMANDS.fixedtext.text
+msgid "Macro name"
+msgstr "Назва макросу"
+
+#: selector.src#RID_DLG_SCRIPTSELECTOR.GRP_SELECTOR_DESCRIPTION.fixedline.text
+msgctxt "selector.src#RID_DLG_SCRIPTSELECTOR.GRP_SELECTOR_DESCRIPTION.fixedline.text"
+msgid "Description"
+msgstr "Опис"
+
+#: selector.src#RID_DLG_SCRIPTSELECTOR.modelessdialog.text
+msgid "Macro Selector"
+msgstr "Вибір макросу"
+
+#: cfg.src#RID_SVXDLG_CUSTOMIZE.1.RID_SVXPAGE_MENUS.pageitem.text
+msgid "Menus"
+msgstr "Меню"
+
+#: cfg.src#RID_SVXDLG_CUSTOMIZE.1.RID_SVXPAGE_KEYBOARD.pageitem.text
+msgid "Keyboard"
+msgstr "Клавіатура"
+
+#: cfg.src#RID_SVXDLG_CUSTOMIZE.1.RID_SVXPAGE_TOOLBARS.pageitem.text
+msgid "Toolbars"
+msgstr "Панелі інструментів"
+
+#: cfg.src#RID_SVXDLG_CUSTOMIZE.1.RID_SVXPAGE_EVENTS.pageitem.text
+msgid "Events"
+msgstr "Події"
+
+#: cfg.src#RID_SVXDLG_CUSTOMIZE.tabdialog.text
+msgid "Customize"
+msgstr "Налаштувати"
+
+#: cfg.src#TEXT_MENU.#define.text
+msgid "Menu"
+msgstr "Меню"
+
+#: cfg.src#TEXT_BEGIN_GROUP.#define.text
+msgid "Begin a Group"
+msgstr "Почати групу"
+
+#: cfg.src#TEXT_RENAME.#define.text
+msgid "Rename..."
+msgstr "Перейменувати..."
+
+#: cfg.src#TEXT_DELETE.#define.text
+msgctxt "cfg.src#TEXT_DELETE.#define.text"
+msgid "Delete..."
+msgstr "Видалити..."
+
+#: cfg.src#TEXT_DELETE_NODOTS.#define.text
+msgid "Delete"
+msgstr "Видалити"
+
+#: cfg.src#TEXT_MOVE.#define.text
+msgid "Move..."
+msgstr "Перемістити..."
+
+#: cfg.src#TEXT_DEFAULT_STYLE.#define.text
+msgid "Restore Default Settings"
+msgstr "Відновити типові параметри"
+
+#: cfg.src#TEXT_DEFAULT_COMMAND.#define.text
+msgid "Restore Default Command"
+msgstr "Відновити типове значення"
+
+#: cfg.src#TEXT_TEXT_ONLY.#define.text
+msgid "Text only"
+msgstr "Текст"
+
+#: cfg.src#TEXT_TOOLBAR_NAME.#define.text
+msgid "Toolbar Name"
+msgstr "Назва панелі інструментів"
+
+#: cfg.src#TEXT_SAVE_IN.#define.text
+msgctxt "cfg.src#TEXT_SAVE_IN.#define.text"
+msgid "Save In"
+msgstr "Зберегти у"
+
+#: cfg.src#RID_SVXPAGE_MENUS.GRP_MENUS.fixedline.text
+msgid "%PRODUCTNAME %MODULENAME Menus"
+msgstr "Меню %PRODUCTNAME %MODULENAME"
+
+#: cfg.src#RID_SVXPAGE_MENUS.BTN_NEW.pushbutton.text
+msgid "New..."
+msgstr "Створити..."
+
+#: cfg.src#RID_SVXPAGE_MENUS.GRP_MENU_SEPARATOR.fixedline.text
+msgid "Menu Content"
+msgstr "Зміст меню"
+
+#: cfg.src#RID_SVXPAGE_MENUS.GRP_MENU_ENTRIES.fixedtext.text
+msgid "Entries"
+msgstr "Елементи"
+
+#: cfg.src#RID_SVXPAGE_MENUS.BTN_ADD_COMMANDS.pushbutton.text
+msgid "Add..."
+msgstr "Додати..."
+
+#: cfg.src#RID_SVXPAGE_MENUS.BTN_CHANGE_ENTRY.menubutton.text
+msgid "Modify"
+msgstr "Змінити"
+
+#: cfg.src#RID_SVXPAGE_MENUS.FT_DESCRIPTION.fixedtext.text
+msgctxt "cfg.src#RID_SVXPAGE_MENUS.FT_DESCRIPTION.fixedtext.text"
+msgid "Description"
+msgstr "Опис"
+
+#: cfg.src#MODIFY_ENTRY.ID_ADD_SUBMENU.menuitem.text
+msgid "Add Submenu..."
+msgstr "Додати підменю..."
+
+#: cfg.src#MODIFY_TOOLBAR.ID_ICONS_ONLY.menuitem.text
+msgid "Icons Only"
+msgstr "Значки"
+
+#: cfg.src#MODIFY_TOOLBAR.ID_ICONS_AND_TEXT.menuitem.text
+msgid "Icons & Text"
+msgstr "Значки та текст"
+
+#: cfg.src#MODIFY_TOOLBAR_CONTENT.ID_CHANGE_SYMBOL.menuitem.text
+msgid "Change Icon..."
+msgstr "Вибрати значок..."
+
+#: cfg.src#MODIFY_TOOLBAR_CONTENT.ID_RESET_SYMBOL.menuitem.text
+msgid "Reset Icon"
+msgstr "Зняти значок"
+
+#: cfg.src#RID_SVXSTR_NEW_MENU.string.text
+msgid "New Menu %n"
+msgstr "Нове меню %n"
+
+#: cfg.src#RID_SVXSTR_NEW_TOOLBAR.string.text
+msgid "New Toolbar %n"
+msgstr "Нова панель інструментів %n"
+
+#: cfg.src#RID_SVXSTR_MOVE_MENU.string.text
+msgid "Move Menu"
+msgstr "Перемістити меню"
+
+#: cfg.src#RID_SVXSTR_ADD_SUBMENU.string.text
+msgid "Add Submenu"
+msgstr "Додати підменю"
+
+#: cfg.src#RID_SVXSTR_SUBMENU_NAME.string.text
+msgid "Submenu name"
+msgstr "Назва підменю"
+
+#: 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 "Щоб додати команду у меню, виберіть категорію, а потім команду. Також можна перетягнути команду у список команд на вкладці меню у діалоговому вікні налаштовування."
+
+#: cfg.src#MD_MENU_ORGANISER.TXT_MENU_NAME.fixedtext.text
+msgid "Menu name"
+msgstr "Назва меню"
+
+#: cfg.src#MD_MENU_ORGANISER.TXT_MENU.fixedtext.text
+msgid "Menu position"
+msgstr "Розташування меню"
+
+#: cfg.src#MD_MENU_ORGANISER.modaldialog.text
+msgid "New Menu"
+msgstr "Створити меню"
+
+#: cfg.src#MD_NEW_TOOLBAR.modaldialog.text
+msgid "Name"
+msgstr "Назва"
+
+#: cfg.src#MD_ICONSELECTOR.FT_SYMBOLS.fixedtext.text
+msgid "Icons"
+msgstr "Значки"
+
+#: cfg.src#MD_ICONSELECTOR.BTN_IMPORT.pushbutton.text
+msgid "Import..."
+msgstr "Додати..."
+
+#: cfg.src#MD_ICONSELECTOR.BTN_DELETE.pushbutton.text
+msgctxt "cfg.src#MD_ICONSELECTOR.BTN_DELETE.pushbutton.text"
+msgid "Delete..."
+msgstr "Видалити..."
+
+#: 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 ""
+"Увага:\n"
+"Для найкращого відображення розмір значків має бути 16x16 точок. Інші розміри будуть автоматично приведені до вказаного розміру."
+
+#: cfg.src#MD_ICONSELECTOR.modaldialog.text
+msgid "Change Icon"
+msgstr "Змінити значок"
+
+#: 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 ""
+"Не вдається імпортувати перелічені нижче файли.\n"
+"Неможливо визначити формат файлів."
+
+#: 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 "Вказані нижче файли неможливо імпортувати. Формат файлів невідомий."
+
+#: cfg.src#RID_SVXSTR_DELETE_ICON_CONFIRM.string.text
+msgid "Are you sure to delete the image?"
+msgstr "Ви дійсно хочете видалити зображення?"
+
+#: 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 ""
+"Значок %ICONNAME вже знаходиться у списку зображень.\n"
+"Замінити існуючий значок?"
+
+#: cfg.src#RID_SVXSTR_REPLACE_ICON_CONFIRM.string.text
+msgid "Confirm Icon Replacement"
+msgstr "Підтвердити заміну значка"
+
+#: cfg.src#RID_SVXSTR_YESTOALL.string.text
+msgid "Yes to All"
+msgstr "Так для усіх"
+
+#: cfg.src#RID_SVXSTR_PRODUCTNAME_TOOLBARS.string.text
+msgid "%PRODUCTNAME %MODULENAME Toolbars"
+msgstr "Панелі інструментів %PRODUCTNAME %MODULENAME"
+
+#: cfg.src#RID_SVXSTR_TOOLBAR.string.text
+msgid "Toolbar"
+msgstr "Панель інструментів"
+
+#: cfg.src#RID_SVXSTR_TOOLBAR_CONTENT.string.text
+msgid "Toolbar Content"
+msgstr "Зміст панелі керування"
+
+#: cfg.src#RID_SVXSTR_COMMANDS.string.text
+msgctxt "cfg.src#RID_SVXSTR_COMMANDS.string.text"
+msgid "Commands"
+msgstr "Команди"
+
+#: cfg.src#RID_SVXSTR_COMMAND.string.text
+msgid "Command"
+msgstr "Команда"
+
+#: cfg.src#QBX_CONFIRM_DELETE_MENU.querybox.text
+msgid "Are you sure you want to delete the '%MENUNAME' menu?"
+msgstr "Ви дійсно хочете видалити меню '%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 "Панель інструментів не містить команд. Видалити панель інструментів?"
+
+#: 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 "Будуть відновлені стандартні параметри меню %SAVE IN SELECTION%. Продовжити?"
+
+#: 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 "Будуть відновлені стандартні параметри меню %SAVE IN SELECTION%. Продовжити?"
+
+#: 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 "Конфігурацію панелі інструментів для %SAVE IN SELECTION% буде відновлено у відповідності до початкових значень параметрів. Продовжити?"
+
+#: 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 "Всі раніше внесені зміни в цю панель інструментів будуть видалені. Відновити початкову панель інструментів?"
+
+#: cfg.src#IBX_MNUCFG_ALREADY_INCLUDED.infobox.text
+msgid "Function is already included in this popup."
+msgstr "Ця функція вже міститься у контекстному меню."
+
+#: cfg.src#RID_SVXSTR_LABEL_NEW_NAME.string.text
+msgid "~New name"
+msgstr "~Нова назва"
+
+#: cfg.src#RID_SVXSTR_RENAME_MENU.string.text
+msgid "Rename Menu"
+msgstr "Перейменувати меню"
+
+#: cfg.src#RID_SVXSTR_RENAME_TOOLBAR.string.text
+msgid "Rename Toolbar"
+msgstr "Перейменувати панель"
+
+#: cfg.src#BUTTON_STR_UP.string.text
+msgid "Up"
+msgstr "вгору"
+
+#: cfg.src#BUTTON_STR_DOWN.string.text
+msgid "Down"
+msgstr "вниз"
+
+#: acccfg.src#PUSHBUTTON_TEXT_SAVE.#define.text
+msgid "~Save..."
+msgstr "З~берегти..."
+
+#: acccfg.src#PUSHBUTTON_TEXT_RESET.#define.text
+msgid "R~eset"
+msgstr "~Відновити"
+
+#: acccfg.src#PUSHBUTTON_TEXT_LOAD.#define.text
+msgid "~Load..."
+msgstr "~Завантажити..."
+
+#: acccfg.src#PUSHBUTTON_TEXT_REMOVE.#define.text
+msgid "~Delete"
+msgstr "В~идалити"
+
+#: acccfg.src#PUSHBUTTON_TEXT_CHANGE.#define.text
+msgid "~Modify"
+msgstr "Зам~інити"
+
+#: acccfg.src#PUSHBUTTON_TEXT_NEW.#define.text
+msgid "~New"
+msgstr "С~творити пункт"
+
+#: acccfg.src#FIXEDTEXT_TEXT_GROUP.#define.text
+msgctxt "acccfg.src#FIXEDTEXT_TEXT_GROUP.#define.text"
+msgid "~Category"
+msgstr "~Категорія"
+
+#: acccfg.src#FIXEDTEXT_TEXT_FUNCTION.#define.text
+msgid "Function"
+msgstr "Функція"
+
+#: acccfg.src#GROUPBOX_TEXT_FUNCTIONS.#define.text
+msgid "Functions"
+msgstr "Функції"
+
+#: acccfg.src#RID_SVXPAGE_KEYBOARD.GRP_ACC_KEYBOARD.fixedline.text
+msgid "Shortcut keys"
+msgstr ""
+
+#: acccfg.src#RID_SVXPAGE_KEYBOARD.TXT_ACC_KEY.fixedtext.text
+msgid "~Keys"
+msgstr ""
+
+#: acccfg.src#RID_SVXPAGE_KEYBOARD.STR_LOADACCELCONFIG.string.text
+msgid "Load Keyboard Configuration"
+msgstr ""
+
+#: acccfg.src#RID_SVXPAGE_KEYBOARD.STR_SAVEACCELCONFIG.string.text
+msgid "Save Keyboard Configuration"
+msgstr ""
+
+#: acccfg.src#RID_SVXPAGE_KEYBOARD.STR_FILTERNAME_CFG.string.text
+#, fuzzy
+msgid "Configuration"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Налаштовування\n"
+"#-#-#-#-# doc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Конфігурація\n"
+"#-#-#-#-# appl.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Налаштовування\n"
+"#-#-#-#-# options.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Налаштовування"
+
+#: acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_MYMACROS.string.text
+msgctxt "acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_MYMACROS.string.text"
+msgid "My Macros"
+msgstr "Мої макроси"
+
+#: acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_PRODMACROS.string.text
+msgctxt "acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_PRODMACROS.string.text"
+msgid "%PRODUCTNAME Macros"
+msgstr "Макроси %PRODUCTNAME"
+
+#: acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_BASICMACROS.string.text
+msgctxt "acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_BASICMACROS.string.text"
+msgid "BASIC Macros"
+msgstr "Макроси 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 "Макроси %PRODUCTNAME"
+
+#: acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_GROUP_STYLES.string.text
+#, fuzzy
+msgid "Styles"
+msgstr ""
+"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стилі\n"
+"#-#-#-#-# doc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стилі\n"
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стилі\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стиліст"
+
+#: eventdlg.src#RID_SVXPAGE_EVENTS.STR_EVENT.string.text
+msgctxt "eventdlg.src#RID_SVXPAGE_EVENTS.STR_EVENT.string.text"
+msgid "Event"
+msgstr "Подія"
+
+#: eventdlg.src#RID_SVXPAGE_EVENTS.STR_ASSMACRO.string.text
+msgctxt "eventdlg.src#RID_SVXPAGE_EVENTS.STR_ASSMACRO.string.text"
+msgid "Assigned Action"
+msgstr "Призначена дія"
+
+#: eventdlg.src#RID_SVXPAGE_EVENTS.TXT_SAVEIN.fixedtext.text
+msgctxt "eventdlg.src#RID_SVXPAGE_EVENTS.TXT_SAVEIN.fixedtext.text"
+msgid "Save In"
+msgstr "Зберегти у"
+
+#: eventdlg.src#RID_SVXPAGE_EVENTS.FT_ASSIGN.fixedtext.text
+msgctxt "eventdlg.src#RID_SVXPAGE_EVENTS.FT_ASSIGN.fixedtext.text"
+msgid "Assign:"
+msgstr "Призначити:"
+
+#: eventdlg.src#RID_SVXPAGE_EVENTS.PB_ASSIGN.pushbutton.text
+msgctxt "eventdlg.src#RID_SVXPAGE_EVENTS.PB_ASSIGN.pushbutton.text"
+msgid "M~acro..."
+msgstr "~Макрос..."
+
+#: eventdlg.src#RID_SVXPAGE_EVENTS.PB_DELETE.pushbutton.text
+msgctxt "eventdlg.src#RID_SVXPAGE_EVENTS.PB_DELETE.pushbutton.text"
+msgid "~Remove"
+msgstr "В~идалити"
diff --git a/source/uk/cui/source/dialogs.po b/source/uk/cui/source/dialogs.po
new file mode 100644
index 00000000000..4da97ce15cc
--- /dev/null
+++ b/source/uk/cui/source/dialogs.po
@@ -0,0 +1,2229 @@
+#. 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-05-15 15:21+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.FT_WORD.fixedtext.text
+msgid "~Current word"
+msgstr ""
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.MB_LANGUAGE.menubutton.text
+msgid "~Language"
+msgstr "~Мова..."
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.FT_THES_ALTERNATIVES.fixedtext.text
+msgid "~Alternatives"
+msgstr ""
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.FT_REPL.fixedtext.text
+msgid "~Replace with"
+msgstr "Замінити н~а"
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.BTN_THES_OK.okbutton.text
+msgid "Replace"
+msgstr "~Замінити"
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.STR_ERR_TEXTNOTFOUND.string.text
+msgid "No alternatives found."
+msgstr ""
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.modaldialog.text
+msgid "Thesaurus"
+msgstr "Тезаурус"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.GRP_LINKTYPE.fixedline.text
+msgid "Hyperlink type"
+msgstr "Тип гіперпосилання"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.RB_LINKTYP_INTERNET.radiobutton.text
+msgid "~Web"
+msgstr "~Інтернет"
+
+#: 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 "~Адреса"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_LOGIN.fixedtext.text
+msgid "~Login name"
+msgstr "~Ім'я користувача"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_PASSWD.fixedtext.text
+msgid "~Password"
+msgstr "~Пароль"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.CBX_ANONYMOUS.checkbox.text
+msgid "Anonymous ~user"
+msgstr "Анонімний ~користувач"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.BTN_BROWSE.imagebutton.text
+#, fuzzy
+msgid "WWW Browser"
+msgstr "WWW оглядач"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.BTN_BROWSE.imagebutton.quickhelptext
+msgid "Open web browser, copy an URL, and paste it to Target field"
+msgstr ""
+
+#: 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 "Додаткові параметри"
+
+#: 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 "~Кадр"
+
+#: 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 "~Елемент"
+
+#: 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 "Текст"
+
+#: 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 "Кнопка"
+
+#: 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 "~Текст"
+
+#: 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 "~Назва"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.BTN_SCRIPT.imagebutton.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.BTN_SCRIPT.imagebutton.text"
+msgid "Events"
+msgstr "Події"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.BTN_SCRIPT.imagebutton.quickhelptext
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.BTN_SCRIPT.imagebutton.quickhelptext"
+msgid "Events"
+msgstr "Події"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.tabpage.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.tabpage.text"
+msgid "Hyperlink"
+msgstr "Гіперпосилання"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.GRP_MAILNEWS.fixedline.text
+msgid "Mail & news"
+msgstr "Пошта та новини"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.RB_LINKTYP_MAIL.radiobutton.text
+msgid "~E-mail"
+msgstr "Ел.по~шта"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.RB_LINKTYP_NEWS.radiobutton.text
+msgid "~News"
+msgstr "~Новини"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_RECEIVER.fixedtext.text
+msgid "Re~cipient"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_SUBJECT.fixedtext.text
+msgid "~Subject"
+msgstr "~Тема"
+
+#: 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 "Джерела даних..."
+
+#: 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 "Джерела даних..."
+
+#: 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 "Додаткові параметри"
+
+#: 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 "~Кадр"
+
+#: 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 "~Елемент"
+
+#: 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 "Текст"
+
+#: 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 "Кнопка"
+
+#: 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 "~Текст"
+
+#: 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 "~Назва"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_SCRIPT.imagebutton.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_SCRIPT.imagebutton.text"
+msgid "Events"
+msgstr "Події"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_SCRIPT.imagebutton.quickhelptext
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_SCRIPT.imagebutton.quickhelptext"
+msgid "Events"
+msgstr "Події"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.tabpage.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.tabpage.text"
+msgid "Hyperlink"
+msgstr "Гіперпосилання"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.GRP_DOCUMENT.fixedline.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.GRP_DOCUMENT.fixedline.text"
+msgid "Document"
+msgstr "Документ"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_PATH_DOC.fixedtext.text
+msgid "~Path"
+msgstr "~Шлях"
+
+#: 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 "Відкрити файл"
+
+#: 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 "Відкрити файл"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.GRP_TARGET.fixedline.text
+msgid "Target in document"
+msgstr "Посилання на елемент у документі"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_TARGET_DOC.fixedtext.text
+msgid "Targ~et"
+msgstr "~Ціль"
+
+#: 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 "Тестовий текст"
+
+#: 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 "Посилання на елемент у документі"
+
+#: 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 "Посилання на елемент у документі"
+
+#: 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 "Додаткові параметри"
+
+#: 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 "~Кадр"
+
+#: 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 "~Елемент"
+
+#: 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 "Текст"
+
+#: 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 "Кнопка"
+
+#: 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 "~Текст"
+
+#: 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 "~Назва"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_SCRIPT.imagebutton.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_SCRIPT.imagebutton.text"
+msgid "Events"
+msgstr "Події"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_SCRIPT.imagebutton.quickhelptext
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_SCRIPT.imagebutton.quickhelptext"
+msgid "Events"
+msgstr "Події"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.tabpage.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.tabpage.text"
+msgid "Hyperlink"
+msgstr "Гіперпосилання"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.GRP_NEWDOCUMENT.fixedline.text
+msgid "New document"
+msgstr "Створити документ"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.RB_EDITNOW.radiobutton.text
+msgid "Edit ~now"
+msgstr "Редагувати ~зараз"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.RB_EDITLATER.radiobutton.text
+msgid "Edit ~later"
+msgstr "Правити ~пізніше"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_PATH_NEWDOC.fixedtext.text
+msgid "~File"
+msgstr "~Файл"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_DOCUMENT_TYPES.fixedtext.text
+msgid "File ~type"
+msgstr "~Тип файлу"
+
+#: 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 "Вибрати шлях"
+
+#: 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 "Вибрати шлях"
+
+#: 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 "Додаткові параметри"
+
+#: 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 "~Кадр"
+
+#: 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 "~Елемент"
+
+#: 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 "Текст"
+
+#: 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 "Кнопка"
+
+#: 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 "~Текст"
+
+#: 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 "~Назва"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.BTN_SCRIPT.imagebutton.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.BTN_SCRIPT.imagebutton.text"
+msgid "Events"
+msgstr "Події"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.BTN_SCRIPT.imagebutton.quickhelptext
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.BTN_SCRIPT.imagebutton.quickhelptext"
+msgid "Events"
+msgstr "Події"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.tabpage.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.tabpage.text"
+msgid "Hyperlink"
+msgstr "Гіперпосилання"
+
+#: hyperdlg.src#RID_SVXDLG_NEWHYPERLINK.modaldialog.text
+msgctxt "hyperdlg.src#RID_SVXDLG_NEWHYPERLINK.modaldialog.text"
+msgid "Hyperlink"
+msgstr "Гіперпосилання"
+
+#: hyperdlg.src#RID_SVXSTR_HYPDLG_APPLYBUT.string.text
+msgctxt "hyperdlg.src#RID_SVXSTR_HYPDLG_APPLYBUT.string.text"
+msgid "Apply"
+msgstr "Застосувати"
+
+#: hyperdlg.src#RID_SVXSTR_HYPDLG_CLOSEBUT.string.text
+msgctxt "hyperdlg.src#RID_SVXSTR_HYPDLG_CLOSEBUT.string.text"
+msgid "Close"
+msgstr "Закрити"
+
+#: hyperdlg.src#RID_SVXSTR_HYPDLG_MACROACT1.string.text
+msgid "Mouse over object"
+msgstr "Миша над об'єктом"
+
+#: hyperdlg.src#RID_SVXSTR_HYPDLG_MACROACT2.string.text
+msgid "Trigger hyperlink"
+msgstr "Запустити гіперпосилання"
+
+#: hyperdlg.src#RID_SVXSTR_HYPDLG_MACROACT3.string.text
+msgid "Mouse leaves object"
+msgstr "Миша залишає об'єкт"
+
+#: hyperdlg.src#RID_SVXSTR_HYPDLG_NOVALIDFILENAME.string.text
+msgid "Please type in a valid file name."
+msgstr "Введіть правильну назву файлу."
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLINETTP.string.text
+msgid "Internet"
+msgstr "Інтернет"
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLINETTP_HELP.string.text
+#, fuzzy
+msgid "This is where you create a hyperlink to a Web page or FTP server connection."
+msgstr "Тут ви створюєте гіперпосилання до веб-сторінки, FTP сервер або підключення через Telnet."
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLMAILTP.string.text
+msgid "Mail & News"
+msgstr "Пошта та новини"
+
+#: 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 "Тут ви створюєте гіперпосилання на адресу електронної пошти або групи новин."
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLDOCTP.string.text
+msgctxt "hyperdlg.src#RID_SVXSTR_HYPERDLG_HLDOCTP.string.text"
+msgid "Document"
+msgstr "Документ"
+
+#: 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 "Місце для створення гіперпосилання на існуючий документ або певне місце у документі."
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLDOCNTP.string.text
+msgid "New Document"
+msgstr "Створити документ"
+
+#: 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 "Тут ви створюєте новий документ на який вказує нове посилання."
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_FORM_BUTTON.string.text
+msgctxt "hyperdlg.src#RID_SVXSTR_HYPERDLG_FORM_BUTTON.string.text"
+msgid "Button"
+msgstr "Кнопка"
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_FROM_TEXT.string.text
+msgctxt "hyperdlg.src#RID_SVXSTR_HYPERDLG_FROM_TEXT.string.text"
+msgid "Text"
+msgstr "Текст"
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_QUERYOVERWRITE.string.text
+msgid "The file already exists. Overwrite?"
+msgstr "Файл вже існує. Перезаписати?"
+
+#: charmap.src#RID_SVXDLG_CHARMAP.FT_FONT.fixedtext.text
+msgid "~Font"
+msgstr "~Шрифт"
+
+#: charmap.src#RID_SVXDLG_CHARMAP.FT_SUBSET.fixedtext.text
+msgid "~Subset"
+msgstr "~Набір символів"
+
+#: charmap.src#RID_SVXDLG_CHARMAP.FT_SYMBOLE.fixedtext.text
+msgid "Characters:"
+msgstr "Символи:"
+
+#: charmap.src#RID_SVXDLG_CHARMAP.BTN_DELETE.pushbutton.text
+msgctxt "charmap.src#RID_SVXDLG_CHARMAP.BTN_DELETE.pushbutton.text"
+msgid "~Delete"
+msgstr "В~идалити"
+
+#: charmap.src#RID_SVXDLG_CHARMAP.modaldialog.text
+msgid "Special Characters"
+msgstr "Вибір символу"
+
+#: hlmarkwn.src#RID_SVXFLOAT_HYPERLINK_MARKWND.BT_APPLY.pushbutton.text
+msgctxt "hlmarkwn.src#RID_SVXFLOAT_HYPERLINK_MARKWND.BT_APPLY.pushbutton.text"
+msgid "Apply"
+msgstr "Застосувати"
+
+#: hlmarkwn.src#RID_SVXFLOAT_HYPERLINK_MARKWND.BT_CLOSE.pushbutton.text
+msgctxt "hlmarkwn.src#RID_SVXFLOAT_HYPERLINK_MARKWND.BT_CLOSE.pushbutton.text"
+msgid "Close"
+msgstr "Закрити"
+
+#: hlmarkwn.src#RID_SVXFLOAT_HYPERLINK_MARKWND.modaldialog.text
+msgctxt "hlmarkwn.src#RID_SVXFLOAT_HYPERLINK_MARKWND.modaldialog.text"
+msgid "Target in Document"
+msgstr "Посилання на елемент у документі"
+
+#: hlmarkwn.src#RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES.string.text
+msgid "Targets do not exist in the document."
+msgstr "Немає доступних для посилання елементів у документі"
+
+#: hlmarkwn.src#RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN.string.text
+msgid "Couldn't open the document."
+msgstr "Неможливо відкрити документ."
+
+#: hlmarkwn.src#STR_MARK_TREE.string.text
+#, fuzzy
+msgid "Mark Tree"
+msgstr "Позначити комірки, що впливають"
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_TXT_SCRIPTS.fixedtext.text
+msgid "~Macros"
+msgstr "~Макроси"
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_CTRL_SCRIPTSBOX.STR_MYMACROS.string.text
+msgid "My Macros"
+msgstr "Мої макроси"
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_CTRL_SCRIPTSBOX.STR_PRODMACROS.string.text
+msgid "%PRODUCTNAME Macros"
+msgstr "Макроси %PRODUCTNAME"
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_RUN.pushbutton.text
+msgid "R~un"
+msgstr "~Виконати"
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_CLOSE.cancelbutton.text
+msgctxt "scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_CLOSE.cancelbutton.text"
+msgid "Close"
+msgstr "Закрити"
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_CREATE.pushbutton.text
+msgid "~Create..."
+msgstr "~Створити..."
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_EDIT.pushbutton.text
+msgid "~Edit"
+msgstr "~Редагувати"
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_RENAME.pushbutton.text
+msgid "Rename..."
+msgstr "Перейменувати..."
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_DEL.pushbutton.text
+msgid "~Delete..."
+msgstr "В~идалити..."
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.modaldialog.text
+msgid "%MACROLANG Macros"
+msgstr "Макроси %MACROLANG"
+
+#: scriptdlg.src#RID_DLG_NEWLIB.FT_NEWLIB.fixedtext.text
+msgid "Enter the name for the new library."
+msgstr "Введіть назву нової бібліотеки."
+
+#: scriptdlg.src#RID_DLG_NEWLIB.STR_NEWLIB.string.text
+msgctxt "scriptdlg.src#RID_DLG_NEWLIB.STR_NEWLIB.string.text"
+msgid "Create Library"
+msgstr "Створити бібліотеку"
+
+#: scriptdlg.src#RID_DLG_NEWLIB.STR_NEWMACRO.string.text
+msgid "Create Macro"
+msgstr "Створити макрос"
+
+#: scriptdlg.src#RID_DLG_NEWLIB.STR_FT_NEWMACRO.string.text
+msgid "Enter the name for the new macro."
+msgstr "Введіть назву нового макросу."
+
+#: scriptdlg.src#RID_DLG_NEWLIB.STR_RENAME.string.text
+msgid "Rename"
+msgstr "Перейменувати"
+
+#: scriptdlg.src#RID_DLG_NEWLIB.STR_FT_RENAME.string.text
+msgid "Enter the new name for the selected object."
+msgstr "Введіть нову назву вибраного об'єкту."
+
+#: scriptdlg.src#RID_DLG_NEWLIB.modaldialog.text
+msgctxt "scriptdlg.src#RID_DLG_NEWLIB.modaldialog.text"
+msgid "Create Library"
+msgstr "Створити бібліотеку"
+
+#: scriptdlg.src#RID_SVXSTR_DELQUERY.string.text
+msgid "Do you want to delete the following object?"
+msgstr "Ви справді хочете видалити цей об'єкт?"
+
+#: scriptdlg.src#RID_SVXSTR_DELQUERY_TITLE.string.text
+msgid "Confirm Deletion"
+msgstr "Підтвердити видалення"
+
+#: scriptdlg.src#RID_SVXSTR_DELFAILED.string.text
+msgid "The selected object could not be deleted."
+msgstr "Не вдається видалити вибраний об'єкт."
+
+#: scriptdlg.src#RID_SVXSTR_DELFAILEDPERM.string.text
+msgid " You do not have permission to delete this object."
+msgstr " Вам бракує прав для видалення цього об'єкту."
+
+#: scriptdlg.src#RID_SVXSTR_DELFAILED_TITLE.string.text
+msgid "Error Deleting Object"
+msgstr "Помилка при видаленні об'єкту"
+
+#: scriptdlg.src#RID_SVXSTR_CREATEFAILED.string.text
+msgid "The object could not be created."
+msgstr "Не вдається створити об'єкт."
+
+#: scriptdlg.src#RID_SVXSTR_CREATEFAILEDDUP.string.text
+msgid " Object with the same name already exists."
+msgstr " Об'єкт з такою назвою вже існує."
+
+#: scriptdlg.src#RID_SVXSTR_CREATEFAILEDPERM.string.text
+msgid " You do not have permission to create this object."
+msgstr " Вам бракує прав для створення цього об'єкту."
+
+#: scriptdlg.src#RID_SVXSTR_CREATEFAILED_TITLE.string.text
+msgid "Error Creating Object"
+msgstr "Помилка при створенні об'єкту"
+
+#: scriptdlg.src#RID_SVXSTR_RENAMEFAILED.string.text
+msgid "The object could not be renamed."
+msgstr "Не вдається перейменувати об'єкт."
+
+#: scriptdlg.src#RID_SVXSTR_RENAMEFAILEDPERM.string.text
+msgid " You do not have permission to rename this object."
+msgstr " Вам бракує прав для перейменування цього об'єкту."
+
+#: scriptdlg.src#RID_SVXSTR_RENAMEFAILED_TITLE.string.text
+msgid "Error Renaming Object"
+msgstr "Помилка при перейменуванні об'єкту"
+
+#: scriptdlg.src#RID_SVXSTR_ERROR_TITLE.string.text
+msgid "%PRODUCTNAME Error"
+msgstr "Помилка %PRODUCTNAME"
+
+#: scriptdlg.src#RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED.string.text
+msgid "The scripting language %LANGUAGENAME is not supported."
+msgstr "Мова сценаріїв %LANGUAGENAME не підтримується."
+
+#: scriptdlg.src#RID_SVXSTR_ERROR_RUNNING.string.text
+msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+msgstr "Помилка при виконанні сценарію %LANGUAGENAME %SCRIPTNAME."
+
+#: scriptdlg.src#RID_SVXSTR_EXCEPTION_RUNNING.string.text
+msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+msgstr "Виключна ситуація при виконанні сценарію %LANGUAGENAME %SCRIPTNAME."
+
+#: scriptdlg.src#RID_SVXSTR_ERROR_AT_LINE.string.text
+msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
+msgstr "Помилка при виконанні сценарію %LANGUAGENAME %SCRIPTNAME у рядку: %LINENUMBER."
+
+#: scriptdlg.src#RID_SVXSTR_EXCEPTION_AT_LINE.string.text
+msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
+msgstr "Виключна ситуація при виконанні сценарію %LANGUAGENAME %SCRIPTNAME у рядку: %LINENUMBER."
+
+#: scriptdlg.src#RID_SVXSTR_FRAMEWORK_ERROR_RUNNING.string.text
+msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+msgstr "Помилка сценарію при виконанні сценарію %LANGUAGENAME %SCRIPTNAME."
+
+#: 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 "Помилка сценарію при виконанні сценарію %LANGUAGENAME %SCRIPTNAME у рядку: %LINENUMBER."
+
+#: scriptdlg.src#RID_SVXSTR_ERROR_TYPE_LABEL.string.text
+msgctxt "scriptdlg.src#RID_SVXSTR_ERROR_TYPE_LABEL.string.text"
+msgid "Type:"
+msgstr "Тип:"
+
+#: scriptdlg.src#RID_SVXSTR_ERROR_MESSAGE_LABEL.string.text
+msgid "Message:"
+msgstr "Повідомлення:"
+
+#: newtabledlg.src#RID_SVX_NEWTABLE_DLG.FT_COLUMNS.fixedtext.text
+msgid "Number of columns:"
+msgstr "Кількість стовпчиків:"
+
+#: newtabledlg.src#RID_SVX_NEWTABLE_DLG.FT_ROWS.fixedtext.text
+msgid "Number of rows:"
+msgstr "Кількість рядків:"
+
+#: newtabledlg.src#RID_SVX_NEWTABLE_DLG.modaldialog.text
+msgid "Insert Table"
+msgstr "Вставка таблиці"
+
+#: 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 "Загальні"
+
+#: gallery.src#RID_SVXTABDLG_GALLERY.tabdialog.text
+msgctxt "gallery.src#RID_SVXTABDLG_GALLERY.tabdialog.text"
+msgid "Properties of "
+msgstr "Властивості "
+
+#: 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 "Загальні"
+
+#: 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 "Файли"
+
+#: gallery.src#RID_SVXTABDLG_GALLERYTHEME.tabdialog.text
+msgctxt "gallery.src#RID_SVXTABDLG_GALLERYTHEME.tabdialog.text"
+msgid "Properties of "
+msgstr "Властивості "
+
+#: 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 "Тип:"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERY_GENERAL.FT_MS_PATH.fixedtext.text
+msgid "Location:"
+msgstr "Розташування:"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERY_GENERAL.FT_MS_CONTENT.fixedtext.text
+msgid "Contents:"
+msgstr "Вміст:"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERY_GENERAL.FT_MS_CHANGEDATE.fixedtext.text
+msgid "Modified:"
+msgstr "Змінено:"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.FT_FILETYPE.fixedtext.text
+msgid "~File type"
+msgstr "Тип ~файлу"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.BTN_SEARCH.pushbutton.text
+msgid "~Find Files..."
+msgstr "З~найти файли..."
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.BTN_TAKE.pushbutton.text
+msgctxt "gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.BTN_TAKE.pushbutton.text"
+msgid "~Add"
+msgstr "~Додати"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.BTN_TAKEALL.pushbutton.text
+msgid "A~dd All"
+msgstr "Додати вс~е"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.CBX_PREVIEW.checkbox.text
+msgid "Pr~eview"
+msgstr "~Попередній перегляд"
+
+#: 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 "Заголовок"
+
+#: gallery.src#RID_SVXDLG_GALLERY_TITLE.modaldialog.text
+msgid "Enter Title"
+msgstr "Введіть заголовок"
+
+#: gallery.src#RID_SVXDLG_GALLERY_SEARCH_PROGRESS.FL_SEARCH_DIR.fixedline.text
+msgid "Directory"
+msgstr "Каталог"
+
+#: gallery.src#RID_SVXDLG_GALLERY_SEARCH_PROGRESS.FL_SEARCH_TYPE.fixedline.text
+msgid "File type"
+msgstr "Тип файлу"
+
+#: gallery.src#RID_SVXDLG_GALLERY_SEARCH_PROGRESS.modaldialog.text
+msgid "Find"
+msgstr "Знайти"
+
+#: 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 "Файл"
+
+#: gallery.src#RID_SVXDLG_GALLERY_TAKE_PROGRESS.modaldialog.text
+msgctxt "gallery.src#RID_SVXDLG_GALLERY_TAKE_PROGRESS.modaldialog.text"
+msgid "Apply"
+msgstr "Застосувати"
+
+#: 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 "Файл"
+
+#: gallery.src#RID_SVXDLG_GALLERY_ACTUALIZE_PROGRESS.modaldialog.text
+msgid "Update"
+msgstr "Оновити"
+
+#: 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 "ID теми"
+
+#: gallery.src#RID_SVXSTR_GALLERY_NOFILES.string.text
+msgid "<No Files>"
+msgstr "<без файлів>"
+
+#: gallery.src#RID_SVXSTR_GALLERY_SEARCH.string.text
+msgid "Do you want to update the file list?"
+msgstr "Оновити файловий список?"
+
+#: gallery.src#RID_SVXSTR_GALLERYPROPS_OBJECT.string.text
+msgid "Object;Objects"
+msgstr "Об'єкт; Об'єкти"
+
+#: gallery.src#RID_SVXSTR_GALLERY_READONLY.string.text
+#, fuzzy
+msgid "(read-only)"
+msgstr " (лише для читання)"
+
+#: gallery.src#RID_SVXSTR_GALLERY_ALLFILES.string.text
+msgid "<All Files>"
+msgstr "<Усі файли>"
+
+#: gallery.src#RID_SVXSTR_GALLERY_ID_EXISTS.string.text
+msgid "This ID already exists..."
+msgstr "Цей ID вже існує..."
+
+#: tbxform.src#RID_SVX_DLG_INPUTRECORDNO.1.fixedtext.text
+msgid "go to record"
+msgstr "перейти до запису"
+
+#: tbxform.src#RID_SVX_DLG_INPUTRECORDNO.modaldialog.text
+msgid "Record Number"
+msgstr "Номер запису"
+
+#: 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 "Наступні стовпчики сховані. Виділіть стовпчики, які потрібно показати та натисніть 'Гаразд'."
+
+#: showcols.src#RID_SVX_DLG_SHOWGRIDCOLUMNS.modaldialog.text
+msgid "Show columns"
+msgstr "Показати стовпчики"
+
+#: multipat.src#RID_SVXDLG_MULTIPATH.FL_MULTIPATH.fixedline.text
+msgid "Paths"
+msgstr "Шляхи"
+
+#: multipat.src#RID_SVXDLG_MULTIPATH.FT_RADIOBUTTON.fixedtext.text
+msgid "Mark the default path for new files."
+msgstr "Позначте типовий шлях для нових файлів."
+
+#: multipat.src#RID_SVXDLG_MULTIPATH.BTN_ADD_MULTIPATH.pushbutton.text
+msgid "~Add..."
+msgstr "~Додати..."
+
+#: multipat.src#RID_SVXDLG_MULTIPATH.BTN_DEL_MULTIPATH.pushbutton.text
+msgctxt "multipat.src#RID_SVXDLG_MULTIPATH.BTN_DEL_MULTIPATH.pushbutton.text"
+msgid "~Delete"
+msgstr "В~идалити"
+
+#: multipat.src#RID_SVXDLG_MULTIPATH.STR_HEADER_PATHS.string.text
+msgid "Path list"
+msgstr "Список шляхів"
+
+#: multipat.src#RID_SVXDLG_MULTIPATH.modaldialog.text
+msgid "Select Paths"
+msgstr "Вибрати шляхи"
+
+#: multipat.src#RID_MULTIPATH_DBL_ERR.string.text
+msgid "The path %1 already exists."
+msgstr "Шлях %1 вже існує."
+
+#: multipat.src#RID_SVXSTR_FILE_TITLE.string.text
+msgid "Select files"
+msgstr "Вибір файлів"
+
+#: multipat.src#RID_SVXSTR_FILE_HEADLINE.string.text
+msgctxt "multipat.src#RID_SVXSTR_FILE_HEADLINE.string.text"
+msgid "Files"
+msgstr "Файли"
+
+#: multipat.src#RID_SVXSTR_ARCHIVE_TITLE.string.text
+msgid "Select Archives"
+msgstr "Вибір архівів"
+
+#: multipat.src#RID_SVXSTR_ARCHIVE_HEADLINE.string.text
+msgid "Archives"
+msgstr "Архіви"
+
+#: multipat.src#RID_SVXSTR_MULTIFILE_DBL_ERR.string.text
+msgid "The file %1 already exists."
+msgstr "Файл %1 вже існує."
+
+#: svuidlg.src#MD_PASTE_OBJECT.FT_SOURCE.fixedtext.text
+msgid "Source:"
+msgstr "Джерело:"
+
+#: svuidlg.src#MD_PASTE_OBJECT.RB_PASTE.radiobutton.text
+msgid "~Insert as"
+msgstr "Вставити ~як"
+
+#: svuidlg.src#MD_PASTE_OBJECT.RB_PASTE_LINK.radiobutton.text
+msgid "Link to"
+msgstr "Посилання на"
+
+#: svuidlg.src#MD_PASTE_OBJECT.CB_DISPLAY_AS_ICON.checkbox.text
+msgid "~As icon"
+msgstr "Як ~значок"
+
+#: svuidlg.src#MD_PASTE_OBJECT.PB_CHANGE_ICON.pushbutton.text
+msgid "~Other Icon..."
+msgstr "~Інший значок..."
+
+#: svuidlg.src#MD_PASTE_OBJECT.FL_CHOICE.fixedline.text
+msgid "Selection"
+msgstr "Вибір"
+
+#: svuidlg.src#MD_PASTE_OBJECT.S_OBJECT.string.text
+msgid "Object"
+msgstr "Об'єкт"
+
+#: svuidlg.src#MD_PASTE_OBJECT.modaldialog.text
+msgid "Paste Special"
+msgstr "Спеціальна вставка"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_FILES.fixedtext.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.FT_FILES.fixedtext.text"
+msgid "Source file"
+msgstr "Первинний файл"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_LINKS.fixedtext.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.FT_LINKS.fixedtext.text"
+msgid "Element:"
+msgstr "Елемент:"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_TYPE.fixedtext.text
+msgid "Type"
+msgstr "Тип"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_STATUS.fixedtext.text
+msgid "Status"
+msgstr "Стан"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.1.cancelbutton.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.1.cancelbutton.text"
+msgid "~Close"
+msgstr "~Закрити"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.PB_UPDATE_NOW.pushbutton.text
+msgid "~Update"
+msgstr "~Оновити"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.PB_OPEN_SOURCE.pushbutton.text
+msgid "~Open"
+msgstr "~Відкрити"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.PB_CHANGE_SOURCE.pushbutton.text
+msgid "~Modify..."
+msgstr "~Змінити..."
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.PB_BREAK_LINK.pushbutton.text
+msgid "~Break Link"
+msgstr "~Розірвати зв'язок"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_FILES2.fixedtext.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.FT_FILES2.fixedtext.text"
+msgid "Source file"
+msgstr "Первинний файл"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_SOURCE2.fixedtext.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.FT_SOURCE2.fixedtext.text"
+msgid "Element:"
+msgstr "Елемент:"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_TYPE2.fixedtext.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.FT_TYPE2.fixedtext.text"
+msgid "Type:"
+msgstr "Тип:"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_UPDATE.fixedtext.text
+msgid "Update:"
+msgstr "Оновити:"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.RB_AUTOMATIC.radiobutton.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.RB_AUTOMATIC.radiobutton.text"
+msgid "~Automatic"
+msgstr "~Автоматично"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.RB_MANUAL.radiobutton.text
+msgid "Ma~nual"
+msgstr "В~ручну"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_AUTOLINK.string.text
+msgid "Automatic"
+msgstr "Автоматично"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_MANUALLINK.string.text
+msgid "Manual"
+msgstr "Вручну"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_BROKENLINK.string.text
+msgid "Not available"
+msgstr "Недоступно"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_GRAPHICLINK.string.text
+msgid "Graphic"
+msgstr "Графічний об'єкт"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_BUTTONCLOSE.string.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.STR_BUTTONCLOSE.string.text"
+msgid "~Close"
+msgstr "~Закрити"
+
+#: 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 "Ви дійсно хочете видалити виділені зв'язки?"
+
+#: 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 "Ви дійсно хочете видалити виділені зв'язки?"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_WAITINGLINK.string.text
+msgid "Waiting"
+msgstr "Очікування"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.modaldialog.text
+msgid "Edit Links"
+msgstr "Правка зв'язків"
+
+#: svuidlg.src#MD_LINKEDIT.2.fixedtext.text
+msgid "Exchange source:"
+msgstr "Поміняти джерело на:"
+
+#: svuidlg.src#MD_LINKEDIT.ED_FULL_SOURCE_NAME.edit.text
+msgid "Edit"
+msgstr "Реагування"
+
+#: svuidlg.src#MD_LINKEDIT.modaldialog.text
+msgid "Modify Link"
+msgstr "Змінити посилання"
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.RB_NEW_OBJECT.radiobutton.text
+msgid "~Create new"
+msgstr "~Створити новий"
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.RB_OBJECT_FROMFILE.radiobutton.text
+msgid "Create from ~file"
+msgstr "Створити з ~файлу"
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.BTN_FILEPATH.pushbutton.text
+msgctxt "svuidlg.src#MD_INSERT_OLEOBJECT.BTN_FILEPATH.pushbutton.text"
+msgid "~Search..."
+msgstr "О~гляд..."
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.CB_FILELINK.checkbox.text
+msgid "~Link to file"
+msgstr "Зв'~язати з файлом"
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.GB_OBJECT.fixedline.text
+msgid "Object type"
+msgstr "Тип об'єкту"
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.STR_FILE.string.text
+msgctxt "svuidlg.src#MD_INSERT_OLEOBJECT.STR_FILE.string.text"
+msgid "File"
+msgstr "Файл"
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.modaldialog.text
+msgid "Insert OLE Object"
+msgstr "Вставка об'єкту OLE"
+
+#: svuidlg.src#MD_INSERT_OBJECT_PLUGIN.BTN_FILEURL.pushbutton.text
+msgid "~Browse..."
+msgstr "О~гляд..."
+
+#: svuidlg.src#MD_INSERT_OBJECT_PLUGIN.GB_FILEURL.fixedline.text
+msgid "File / URL"
+msgstr "Файл / 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 "Параметри"
+
+#: svuidlg.src#MD_INSERT_OBJECT_PLUGIN.modaldialog.text
+msgid "Insert Plug-in"
+msgstr "Вставка додаткового модуля"
+
+#: svuidlg.src#MD_INSERT_OBJECT_APPLET.FT_CLASSFILE.fixedtext.text
+msgid "~Class"
+msgstr "~Клас"
+
+#: svuidlg.src#MD_INSERT_OBJECT_APPLET.FT_CLASSLOCATION.fixedtext.text
+msgid "Class ~Location"
+msgstr "~Розташування класу"
+
+#: svuidlg.src#MD_INSERT_OBJECT_APPLET.BTN_CLASS.pushbutton.text
+msgctxt "svuidlg.src#MD_INSERT_OBJECT_APPLET.BTN_CLASS.pushbutton.text"
+msgid "~Search..."
+msgstr "О~гляд..."
+
+#: svuidlg.src#MD_INSERT_OBJECT_APPLET.GB_CLASS.fixedline.text
+msgctxt "svuidlg.src#MD_INSERT_OBJECT_APPLET.GB_CLASS.fixedline.text"
+msgid "File"
+msgstr "Файл"
+
+#: 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 "Параметри"
+
+#: svuidlg.src#MD_INSERT_OBJECT_APPLET.modaldialog.text
+msgid "Insert Applet"
+msgstr "Вставка аплету"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.FT_FRAMENAME.fixedtext.text
+msgctxt "svuidlg.src#MD_INSERT_OBJECT_IFRAME.FT_FRAMENAME.fixedtext.text"
+msgid "~Name"
+msgstr "~Назва"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.FT_URL.fixedtext.text
+msgid "~Contents"
+msgstr "~Зміст"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.RB_SCROLLINGON.radiobutton.text
+msgid "~On"
+msgstr "~Так"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.RB_SCROLLINGOFF.radiobutton.text
+msgid "O~ff"
+msgstr "~Ні"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.RB_SCROLLINGAUTO.radiobutton.text
+msgid "Au~tomatic"
+msgstr "~Автоматично"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.GB_SCROLLING.fixedline.text
+msgid "Scroll bar"
+msgstr "Панель прокрутки"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.RB_FRMBORDER_ON.radiobutton.text
+msgid "On"
+msgstr "Так"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.RB_FRMBORDER_OFF.radiobutton.text
+msgid "Off"
+msgstr "Ні"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.GB_BORDER.fixedline.text
+msgid "Border"
+msgstr "Рамка"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.FT_MARGINWIDTH.fixedtext.text
+msgctxt "svuidlg.src#MD_INSERT_OBJECT_IFRAME.FT_MARGINWIDTH.fixedtext.text"
+msgid "~Width"
+msgstr "~Ширина"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.CB_MARGINWIDTHDEFAULT.checkbox.text
+msgid "~Default"
+msgstr "~Типово"
+
+#: 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 "~Висота"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.CB_MARGINHEIGHTDEFAULT.checkbox.text
+msgid "Defa~ult"
+msgstr "Т~ипово"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.GB_MARGIN.fixedline.text
+msgid "Spacing to contents"
+msgstr "Відступи від змісту"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.modaldialog.text
+msgid "Floating Frame Properties"
+msgstr "Властивості кадру"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.string.text
+msgid "Select File for Floating Frame"
+msgstr "Вибрати файл для кадру"
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_STR_VERSION.string.text
+msgid "Version %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX %PRODUCTEXTENSION"
+msgstr ""
+
+#: 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 ""
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_STR_VENDOR.string.text
+msgid "This release was supplied by %OOOVENDOR"
+msgstr ""
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_STR_COPYRIGHT.string.text
+msgid "Copyright © 2000 - 2012 LibreOffice contributors and/or their affiliates"
+msgstr ""
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_STR_BASED.string.text
+msgid "LibreOffice was based on OpenOffice.org"
+msgstr ""
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_STR_BASED_DERIVED.string.text
+msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
+msgstr ""
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_STR_BUILD.string.text
+msgid "(Build ID: $BUILDID)"
+msgstr ""
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_STR_LINK_CREDITS.string.text
+msgid "http://www.libreoffice.org/about-us/credits/"
+msgstr ""
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_CREDITS.pushbutton.text
+msgid "Credits"
+msgstr ""
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_WEBSITE.pushbutton.text
+msgid "Website"
+msgstr ""
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_CANCEL.cancelbutton.text
+msgctxt "about.src#RID_DEFAULTABOUT.ABOUT_BTN_CANCEL.cancelbutton.text"
+msgid "~Close"
+msgstr "~Закрити"
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.modaldialog.text
+msgid "Color Picker"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_GREEN.fixedtext.text
+msgid "~Green"
+msgstr ""
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_BLUE.fixedtext.text
+msgid "~Blue"
+msgstr ""
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_HEX.fixedtext.text
+msgid "Hex ~#"
+msgstr ""
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.FL_HSB.fixedline.text
+msgid "HSB"
+msgstr ""
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_HUE.fixedtext.text
+msgid "H~ue"
+msgstr ""
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_SATURATION.fixedtext.text
+msgid "~Saturation"
+msgstr ""
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_BRIGHTNESS.fixedtext.text
+msgid "Bright~ness"
+msgstr ""
+
+#: 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 ""
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_MAGENTA.fixedtext.text
+msgid "~Magenta"
+msgstr ""
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_YELLOW.fixedtext.text
+msgid "~Yellow"
+msgstr ""
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_KEY.fixedtext.text
+msgid "~Key"
+msgstr ""
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.FT_LANGUAGE.fixedtext.text
+msgid "Text languag~e"
+msgstr ""
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.LINK_EXPLAIN.fixedtext.text
+msgid "More..."
+msgstr "Додатково..."
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.FT_NOTINDICT.fixedtext.text
+msgid "~Not in dictionary"
+msgstr "~Немає у словнику"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.FT_SUGGESTION.fixedtext.text
+msgctxt "SpellDialog.src#RID_SVXDLG_SPELLCHECK.FT_SUGGESTION.fixedtext.text"
+msgid "~Suggestions"
+msgstr "~Варіанти"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.CB_CHECK_GRAMMAR.checkbox.text
+msgid "Check ~grammar"
+msgstr "Перевірка ~граматики"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_IGNORE.pushbutton.text
+msgid "~Ignore Once"
+msgstr "~Пропустити"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_IGNOREALL.pushbutton.text
+msgid "I~gnore All"
+msgstr "П~ропустити все"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_IGNORERULE.pushbutton.text
+msgid "I~gnore Rule"
+msgstr "П~ропустити все"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.MB_ADDTODICT.menubutton.text
+msgctxt "SpellDialog.src#RID_SVXDLG_SPELLCHECK.MB_ADDTODICT.menubutton.text"
+msgid "~Add"
+msgstr "~Додати"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_ADDTODICT.pushbutton.text
+msgctxt "SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_ADDTODICT.pushbutton.text"
+msgid "~Add"
+msgstr "~Додати"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_CHANGE.pushbutton.text
+msgid "~Change"
+msgstr "~Замінити"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_CHANGEALL.pushbutton.text
+msgid "Change A~ll"
+msgstr "Замінити вс~е"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_AUTOCORR.pushbutton.text
+msgid "AutoCor~rect"
+msgstr "~Автозаміна"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_OPTIONS.pushbutton.text
+msgid "O~ptions..."
+msgstr "~Параметри..."
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_UNDO.pushbutton.text
+msgid "~Undo"
+msgstr "В~ернути"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_CLOSE.pushbutton.text
+msgid "Cl~ose"
+msgstr "~Закрити"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.ST_RESUME.string.text
+msgid "Resu~me"
+msgstr "~Продовжити"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.ST_NOSUGGESTIONS.string.text
+msgid "(no suggestions)"
+msgstr "(немає варіантів)"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.ST_SPELLING.string.text
+msgid "Spelling: $LANGUAGE ($LOCATION)"
+msgstr "Орфографія: $LANGUAGE ($LOCATION)"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.ST_SPELLING_AND_GRAMMAR.string.text
+msgid "Spelling and Grammar: $LANGUAGE ($LOCATION)"
+msgstr "Орфографія та граматика: $LANGUAGE ($LOCATION)"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.ST_SPELLING_AND_GRAMMAR_VENDORNAME.string.text
+msgid "Spelling and Grammar: $LANGUAGE ($LOCATION) [$VendorName]"
+msgstr "Орфографія та граматика: $LANGUAGE ($LOCATION) [$VendorName]"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.modelessdialog.text
+msgid "Spellcheck: "
+msgstr "Перевірка орфографії: "
+
+#: 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 "Параметри"
+
+#: 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 "~Ширина"
+
+#: 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 " пікс."
+
+#: 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 "~Висота"
+
+#: 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 " пікс."
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.DLG_FILTERMOSAIC_CBX_EDGES.checkbox.text
+msgid "E~nhance edges"
+msgstr "Виді~лити межі"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.modaldialog.text
+msgid "Mosaic"
+msgstr "Мозаїка"
+
+#: 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 "Параметри"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_SOLARIZE.DLG_FILTERSOLARIZE_FT_THRESHOLD.fixedtext.text
+msgid "Threshold ~value"
+msgstr "Порогове ~значення"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_SOLARIZE.DLG_FILTERSOLARIZE_CBX_INVERT.checkbox.text
+msgid "~Invert"
+msgstr "~Інвертувати"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_SOLARIZE.modaldialog.text
+msgid "Solarization"
+msgstr "Соляризація"
+
+#: 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 "Параметри"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_SEPIA.DLG_FILTERSEPIA_FT_SEPIA.fixedtext.text
+msgid "Aging degree"
+msgstr "Ступінь старіння"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_SEPIA.modaldialog.text
+msgid "Aging"
+msgstr "Старіння"
+
+#: 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 "Параметри"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_POSTER.DLG_FILTERPOSTER_FT_POSTER.fixedtext.text
+msgid "Poster colors"
+msgstr "Кіль-ть кольорів плакату"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_POSTER.modaldialog.text
+msgid "Posterize"
+msgstr "Плакат"
+
+#: 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 "Параметри"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_EMBOSS.DLG_FILTEREMBOSS_FT_LIGHT.fixedtext.text
+msgid "Light source"
+msgstr "Джерело світла"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_EMBOSS.modaldialog.text
+msgid "Relief"
+msgstr "Рельєф"
+
+#: dlgname.src#RID_SVXDLG_NAME.modaldialog.text
+msgctxt "dlgname.src#RID_SVXDLG_NAME.modaldialog.text"
+msgid "Name"
+msgstr "Назва"
+
+#: 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 "~Назва"
+
+#: dlgname.src#RID_SVXDLG_OBJECT_NAME.modaldialog.text
+msgctxt "dlgname.src#RID_SVXDLG_OBJECT_NAME.modaldialog.text"
+msgid "Name"
+msgstr "Назва"
+
+#: dlgname.src#RID_SVXDLG_OBJECT_TITLE_DESC.NTD_FT_TITLE.fixedtext.text
+msgid "~Title"
+msgstr "~Заголовок"
+
+#: 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 "~Опис"
+
+#: dlgname.src#RID_SVXDLG_OBJECT_TITLE_DESC.modaldialog.text
+msgid "Description"
+msgstr "Опис"
+
+#: 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 "Шрифт"
+
+#: 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 "Ефекти шрифту"
+
+#: 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 "Позиція"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_CHAR_TWOLINES.pageitem.text
+msgid "Asian Layout"
+msgstr "Розмітка азіатського тексту"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_STD_PARAGRAPH.pageitem.text
+msgid "Indents & Spacing"
+msgstr "Відступи та інтервали"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_ALIGN_PARAGRAPH.pageitem.text
+msgid "Alignment"
+msgstr "Вирівнювання"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_EXT_PARAGRAPH.pageitem.text
+msgid "Text Flow"
+msgstr "На сторінці"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_PARA_ASIAN.pageitem.text
+msgid "Asian Typography"
+msgstr "Азіатські правила набору"
+
+#: 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 "Тло"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.tabdialog.text
+msgid "Text Format"
+msgstr "Формат тексту"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHATTR.FL_ATTR.fixedtext.text
+msgid "~Options"
+msgstr "~Вибір"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHATTR.modaldialog.text
+msgid "Attributes"
+msgstr "Атрибути"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.FT_OTHER.fixedtext.text
+msgid "~Exchange characters"
+msgstr "~Невідповідних"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.FT_LONGER.fixedtext.text
+msgid "~Add characters"
+msgstr "Н~адлишкових"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.FT_SHORTER.fixedtext.text
+msgid "~Remove characters"
+msgstr "~Відсутніх"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.CB_RELAX.checkbox.text
+msgid "~Combine"
+msgstr "~Комбінувати"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.FL_SIMILARITY.fixedline.text
+msgctxt "srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.FL_SIMILARITY.fixedline.text"
+msgid "Settings"
+msgstr "Параметри"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.modaldialog.text
+msgctxt "srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.modaldialog.text"
+msgid "Similarity Search"
+msgstr "Пошук подібних"
+
+#: 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 "Шрифт"
+
+#: 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 "Шрифтові ефекти"
+
+#: sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.1.RID_SVXPAGE_BORDER.pageitem.text
+msgid "Borders"
+msgstr "Обрамлення"
+
+#: 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 "Тло"
+
+#: sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.1.pushbutton.text
+msgid "Return"
+msgstr "Return"
+
+#: sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.tabdialog.text
+msgid "Format Cells"
+msgstr "Формат комірок"
+
+#: 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 "~Кадр"
+
+#: cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_NAME.fixedtext.text
+msgctxt "cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_NAME.fixedtext.text"
+msgid "~Name"
+msgstr "~Назва"
+
+#: cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_URLDESCRIPTION.fixedtext.text
+msgid "Alternative ~text"
+msgstr "~Текст"
+
+#: cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_DESCRIPTION.fixedtext.text
+msgctxt "cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_DESCRIPTION.fixedtext.text"
+msgid "~Description"
+msgstr "~Опис"
+
+#: cuiimapdlg.src#RID_SVXDLG_IMAPURL.modaldialog.text
+msgid "Properties"
+msgstr "Властивості"
+
+#: insrc.src#DLG_INS_ROW_COL.CB_POS_BEFORE.radiobutton.text
+msgid "~Before"
+msgstr "~до"
+
+#: insrc.src#DLG_INS_ROW_COL.CB_POS_AFTER.radiobutton.text
+msgid "A~fter"
+msgstr "~після"
+
+#: insrc.src#DLG_INS_ROW_COL.FL_INS.fixedline.text
+#, fuzzy
+msgid "Insert"
+msgstr "Вставити"
+
+#: insrc.src#DLG_INS_ROW_COL.FL_POS.fixedline.text
+msgctxt "insrc.src#DLG_INS_ROW_COL.FL_POS.fixedline.text"
+msgid "Position"
+msgstr "Позиція"
+
+#: insrc.src#DLG_INS_ROW_COL.FT_COUNT.fixedtext.text
+msgid "~Number"
+msgstr "~Номер"
+
+#: insrc.src#DLG_INS_ROW_COL.STR_ROW.string.text
+msgid "Insert Rows"
+msgstr "Вставити рядки"
+
+#: insrc.src#DLG_INS_ROW_COL.STR_COL.string.text
+msgid "Insert Columns"
+msgstr ""
+
+#: 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 ""
+"недоступно для перевірки орфографії\n"
+"Перевірте встановлення та, при потребі,\n"
+"встановіть бажану мову\n"
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.FT_WORD.fixedtext.text
+msgctxt "hyphen.src#RID_SVXDLG_HYPHENATE.FT_WORD.fixedtext.text"
+msgid "~Word"
+msgstr "~Слово"
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.BTN_HYPH_CUT.okbutton.text
+msgid "H~yphenate"
+msgstr ""
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.BTN_HYPH_CONTINUE.pushbutton.text
+msgid "~Skip"
+msgstr ""
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.BTN_HYPH_DELETE.pushbutton.text
+msgid "~Remove"
+msgstr "В~идалити"
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.BTN_HYPH_ALL.pushbutton.text
+msgid "Hyphenate ~All"
+msgstr ""
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.BTN_HYPH_CANCEL.cancelbutton.text
+msgctxt "hyphen.src#RID_SVXDLG_HYPHENATE.BTN_HYPH_CANCEL.cancelbutton.text"
+msgid "~Close"
+msgstr "~Закрити"
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.modaldialog.text
+msgid "Hyphenation"
+msgstr "Розстановка переносів"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FL_SEARCHFOR.fixedline.text
+msgid "Search for"
+msgstr "Знайти"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.RB_SEARCHFORTEXT.radiobutton.text
+msgctxt "fmsearch.src#RID_SVXDLG_SEARCHFORM.RB_SEARCHFORTEXT.radiobutton.text"
+msgid "~Text"
+msgstr "~Текст"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.RB_SEARCHFORNULL.radiobutton.text
+msgid "Field content is ~NULL"
+msgstr "Вміст поля є ~NULL"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.RB_SEARCHFORNOTNULL.radiobutton.text
+msgid "Field content is not NU~LL"
+msgstr "Вміст поля не є NU~LL"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FL_WHERE.fixedline.text
+msgid "Where to search"
+msgstr "Область пошуку"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FT_FORM.fixedtext.text
+msgid "Form"
+msgstr "~Форма"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.RB_ALLFIELDS.radiobutton.text
+msgid "All Fields"
+msgstr "Всі поля"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.RB_SINGLEFIELD.radiobutton.text
+msgid "Single field"
+msgstr "У окремому полі"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FL_OPTIONS.fixedline.text
+msgctxt "fmsearch.src#RID_SVXDLG_SEARCHFORM.FL_OPTIONS.fixedline.text"
+msgid "Settings"
+msgstr "Параметри"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FT_POSITION.fixedtext.text
+msgctxt "fmsearch.src#RID_SVXDLG_SEARCHFORM.FT_POSITION.fixedtext.text"
+msgid "Position"
+msgstr "Розташування"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_USEFORMATTER.checkbox.text
+msgid "Apply field format"
+msgstr "Застосувати формат поля"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_CASE.checkbox.text
+msgid "Match case"
+msgstr "Враховувати регістр"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_BACKWARD.checkbox.text
+msgid "Search backwards"
+msgstr "Зворотний пошук"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_STARTOVER.checkbox.text
+msgid "From Beginning"
+msgstr "З початку"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_WILDCARD.checkbox.text
+msgid "Wildcard expression"
+msgstr "Вираз символу шаблону"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_REGULAR.checkbox.text
+msgid "Regular expression"
+msgstr "Регулярний вираз"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_APPROX.checkbox.text
+msgctxt "fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_APPROX.checkbox.text"
+msgid "Similarity Search"
+msgstr "Пошук подібних"
+
+#: 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 "Враховувати ширину символу"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_SOUNDSLIKECJK.checkbox.text
+msgid "Sounds like (Japanese)"
+msgstr "Фонетичний (японський)"
+
+#: 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 "Стан"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FT_RECORDLABEL.fixedtext.text
+msgid "Record :"
+msgstr "Запис :"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.PB_SEARCH.pushbutton.text
+msgid "Search"
+msgstr "Знайти"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.1.cancelbutton.text
+msgctxt "fmsearch.src#RID_SVXDLG_SEARCHFORM.1.cancelbutton.text"
+msgid "~Close"
+msgstr "~Закрити"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.1.helpbutton.text
+msgid "~Help"
+msgstr "~Довідка"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.modaldialog.text
+msgid "Record Search"
+msgstr "Пошук запису"
+
+#: fmsearch.src#RID_STR_SEARCH_ANYWHERE.string.text
+msgid "anywhere in the field"
+msgstr "будь-де у полі"
+
+#: fmsearch.src#RID_STR_SEARCH_BEGINNING.string.text
+msgid "beginning of field"
+msgstr "на початку поля"
+
+#: fmsearch.src#RID_STR_SEARCH_END.string.text
+msgid "end of field"
+msgstr "наприкінці поля"
+
+#: fmsearch.src#RID_STR_SEARCH_WHOLE.string.text
+msgid "entire field"
+msgstr "все поле"
+
+#: fmsearch.src#RID_STR_FROM_TOP.string.text
+msgid "From top"
+msgstr "Згори"
+
+#: fmsearch.src#RID_STR_FROM_BOTTOM.string.text
+msgid "From bottom"
+msgstr "Знизу"
+
+#: fmsearch.src#RID_SVXERR_SEARCH_NORECORD.errorbox.text
+msgid "No records corresponding to your data found."
+msgstr "Не знайдено записи, що відповідають запиту."
+
+#: fmsearch.src#RID_SVXERR_SEARCH_GENERAL_ERROR.errorbox.text
+msgid "An unknown error occurred. The search could not be finished."
+msgstr "Невідома помилка. Неможливо завершити пошук."
+
+#: fmsearch.src#RID_STR_OVERFLOW_FORWARD.string.text
+msgid "Overflow, search continued at the beginning"
+msgstr "Переповнення, пошук буде продовжено з початку"
+
+#: fmsearch.src#RID_STR_OVERFLOW_BACKWARD.string.text
+msgid "Overflow, search continued at the end"
+msgstr "Переповнення, пошук буде продовжено з кінця"
+
+#: fmsearch.src#RID_STR_SEARCH_COUNTING.string.text
+msgid "counting records"
+msgstr "підрахунок записів"
+
+#: zoom.src#RID_SVXDLG_ZOOM.FL_ZOOM.fixedline.text
+msgid "Zoom factor"
+msgstr "Масштаб"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_OPTIMAL.radiobutton.text
+msgid "~Optimal"
+msgstr "~Оптимально"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_WHOLE_PAGE.radiobutton.text
+msgid "~Fit width and height"
+msgstr "~У ширину та висоту"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_PAGE_WIDTH.radiobutton.text
+msgid "Fit ~width"
+msgstr "У ~ширину"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_USER.radiobutton.text
+msgid "~Variable"
+msgstr "~Довільно"
+
+#: zoom.src#RID_SVXDLG_ZOOM.FL_VIEWLAYOUT.fixedline.text
+msgid "View layout"
+msgstr "Режим перегляду"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_AUTOMATIC.radiobutton.text
+msgctxt "zoom.src#RID_SVXDLG_ZOOM.BTN_AUTOMATIC.radiobutton.text"
+msgid "~Automatic"
+msgstr "~Автоматично"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_SINGLE.radiobutton.text
+msgid "~Single page"
+msgstr "~Одна сторінка"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_COLUMNS.radiobutton.text
+msgid "~Columns"
+msgstr "~Стовпчики"
+
+#: zoom.src#RID_SVXDLG_ZOOM.CHK_BOOK.checkbox.text
+msgid "~Book mode"
+msgstr "Режим ~книги"
+
+#: zoom.src#RID_SVXDLG_ZOOM.modaldialog.text
+msgid "Zoom & View Layout"
+msgstr "Масштаб та режими перегляду"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FL_FILE_ENCRYPTION.fixedline.text
+msgid "File encryption password"
+msgstr ""
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FT_PASSWD_TO_OPEN.fixedtext.text
+msgid "~Enter password to open"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FL_FILE_SHARING_OPTIONS.fixedline.text
+msgid "File sharing password"
+msgstr ""
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.CB_OPEN_READONLY.checkbox.text
+msgid "Open file read-only"
+msgstr ""
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FT_PASSWD_TO_MODIFY.fixedtext.text
+msgid "Enter password to allow editing"
+msgstr ""
+
+#: 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 ""
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.STR_PASSWD_MUST_BE_CONFIRMED.string.text
+msgid "Password must be confirmed"
+msgstr ""
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.STR_MORE_OPTIONS.string.text
+msgid "More ~Options"
+msgstr "Більше ~параметри"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.STR_FEWER_OPTIONS.string.text
+msgid "Fewer ~Options"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.modaldialog.text
+msgid "Set Password"
+msgstr ""
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.FT_COUNT.fixedtext.text
+msgid "~Split cell into"
+msgstr "~Розбити комірки"
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.FL_COUNT.fixedline.text
+msgid "Split"
+msgstr "Розбити"
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.RB_HORZ.imageradiobutton.text
+msgid "H~orizontally"
+msgstr "~Горизонтально"
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.CB_PROP.checkbox.text
+msgid "~Into equal proportions"
+msgstr "~Пропорційно"
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.RB_VERT.imageradiobutton.text
+msgid "~Vertically"
+msgstr "~Вертикально"
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.FL_DIR.fixedline.text
+msgid "Direction"
+msgstr "Напрямок"
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.modaldialog.text
+msgid "Split Cells"
+msgstr "Розбити комірки"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.PB_FIND.pushbutton.text
+msgid "~Find"
+msgstr "З~найти"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.FT_FORMAT.fixedtext.text
+msgid "Format"
+msgstr "Формат"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_SIMPLE_CONVERSION.radiobutton.text
+msgid "~Hangul/Hanja"
+msgstr "~Хангиль/Ханджа"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_HANJA_HANGUL_BRACKETED.radiobutton.text
+msgid "Hanja (Han~gul)"
+msgstr "Ханджа (Хан~гиль)"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_HANGUL_HANJA_BRACKETED.radiobutton.text
+msgid "Hang~ul (Hanja)"
+msgstr "Ханги~ль (Ханджа)"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_HANGUL_HANJA_ABOVE.radiobutton.text
+msgid "Hangu~l"
+msgstr "Хангил~ь"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_HANGUL_HANJA_BELOW.radiobutton.text
+msgid "Hang~ul"
+msgstr "Х~ангиль"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_HANJA_HANGUL_ABOVE.radiobutton.text
+msgid "Han~ja"
+msgstr "Ханд~жа"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_HANJA_HANGUL_BELOW.radiobutton.text
+msgid "Ha~nja"
+msgstr "Хан~джа"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.FT_CONVERSION.fixedtext.text
+msgid "Conversion"
+msgstr "Перетворення"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.CB_HANGUL_ONLY.checkbox.text
+msgid "Hangul ~only"
+msgstr "~Лише Хангиль"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.CB_HANJA_ONLY.checkbox.text
+msgid "Hanja onl~y"
+msgstr "Ли~ше Ханджа"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.CB_REPLACE_BY_CHARACTER.checkbox.text
+msgid "Replace b~y character"
+msgstr "Замінити ~символом"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.STR_HANGUL.string.text
+msgid "Hangul"
+msgstr "Хангиль"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.STR_HANJA.string.text
+msgid "Hanja"
+msgstr "Ханджа"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.modaldialog.text
+msgid "Hangul/Hanja Conversion"
+msgstr "Перетворення Хангиль/Ханджа"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.FT_USERDEFDICT.fixedtext.text
+msgid "User-defined dictionaries"
+msgstr "Словники користувача"
+
+#: 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 "Параметри"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.CB_IGNOREPOST.checkbox.text
+msgid "Ignore post-positional word"
+msgstr "Ігнорувати постпозитивне слово"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.CB_SHOWRECENTLYFIRST.checkbox.text
+msgid "Show recently used entries first"
+msgstr "Показувати недавно використані записи на початку"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.CB_AUTOREPLACEUNIQUE.checkbox.text
+msgid "Replace all unique entries automatically"
+msgstr "Замінити всі унікальні записи автоматично"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.PB_HHO_NEW.pushbutton.text
+msgid "New..."
+msgstr "Створити..."
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.PB_HHO_EDIT.pushbutton.text
+msgid "Edit..."
+msgstr "Редагувати…"
+
+#: 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 "Видалити"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.modaldialog.text
+msgid "Hangul/Hanja Options"
+msgstr "Параметри Хангиль/Ханджа"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_NEWDICT.FL_NEWDICT.fixedline.text
+msgid "Dictionary"
+msgstr "Словник"
+
+#: 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 "~Назва"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_NEWDICT.modaldialog.text
+msgid "New Dictionary"
+msgstr "Новий словник"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.STR_EDITHINT.string.text
+msgid "[Enter text here]"
+msgstr "[Введіть тут текст]"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.FT_BOOK.fixedtext.text
+msgid "Book"
+msgstr "Книжка"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.FT_ORIGINAL.fixedtext.text
+msgid "Original"
+msgstr "Оригінал"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.FT_SUGGESTIONS.fixedtext.text
+msgid "Suggestions (max. 8)"
+msgstr "Пропозиції (до 8)"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.PB_HHE_NEW.pushbutton.text
+msgid "New"
+msgstr "Створити"
+
+#: 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 "Видалити"
+
+#: 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 "Закрити"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.modaldialog.text
+msgid "Edit Custom Dictionary"
+msgstr "Редагування словника користувача"
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.FT_WORD.fixedtext.text
+msgid "Origi~nal"
+msgstr "~Оригінал"
+
+#: 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 "~Слово"
+
+#: 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 "~Варіанти"
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.BTN_IGNORE.pushbutton.text
+msgid "~Ignore"
+msgstr "~Пропустити"
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.BTN_IGNOREALL.pushbutton.text
+msgid "Always I~gnore"
+msgstr "П~ропускати завжди"
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.BTN_CHANGE.pushbutton.text
+msgid "~Replace"
+msgstr "~Замінити"
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.BTN_CHANGEALL.pushbutton.text
+msgid "Always R~eplace"
+msgstr "З~амінювати завжди"
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.BTN_OPTIONS.pushbutton.text
+msgid "Options..."
+msgstr "Параметри..."
+
+#: 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 "~Закрити"
+
+#: postdlg.src#RID_SVXDLG_POSTIT.FT_LASTEDITLABEL.fixedtext.text
+msgctxt "postdlg.src#RID_SVXDLG_POSTIT.FT_LASTEDITLABEL.fixedtext.text"
+msgid "Author"
+msgstr "Автор"
+
+#: postdlg.src#RID_SVXDLG_POSTIT.FT_EDIT.fixedtext.text
+msgctxt "postdlg.src#RID_SVXDLG_POSTIT.FT_EDIT.fixedtext.text"
+msgid "~Text"
+msgstr "~Текст"
+
+#: postdlg.src#RID_SVXDLG_POSTIT.FL_POSTIT.fixedline.text
+msgid "Contents"
+msgstr "Зміст"
+
+#: postdlg.src#RID_SVXDLG_POSTIT.FT_AUTHOR.fixedtext.text
+msgid "~Insert"
+msgstr "Вст~авити"
+
+#: postdlg.src#RID_SVXDLG_POSTIT.BTN_AUTHOR.pushbutton.text
+msgctxt "postdlg.src#RID_SVXDLG_POSTIT.BTN_AUTHOR.pushbutton.text"
+msgid "Author"
+msgstr "Автор"
+
+#: postdlg.src#RID_SVXDLG_POSTIT.STR_NOTIZ_EDIT.string.text
+msgid "Edit Comment"
+msgstr ""
+
+#: postdlg.src#RID_SVXDLG_POSTIT.STR_NOTIZ_INSERT.string.text
+msgid "Insert Comment"
+msgstr ""
+
+#: postdlg.src#RID_SVXDLG_POSTIT.modaldialog.text
+msgid "Comment"
+msgstr ""
+
+#: iconcdlg.src#RID_SVXSTR_ICONCHOICEDLG_RESETBUT.string.text
+msgid "~Back"
+msgstr "Н~азад"
diff --git a/source/uk/cui/source/options.po b/source/uk/cui/source/options.po
new file mode 100644
index 00000000000..45560009cf9
--- /dev/null
+++ b/source/uk/cui/source/options.po
@@ -0,0 +1,2893 @@
+#. 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-05-15 15:21+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_COMPANY.fixedtext.text
+msgid "~Company"
+msgstr "~Огранізація"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_NAME.fixedtext.text
+msgid "First/Last ~name/Initials"
+msgstr "~Ім'я/Прізвище /Ініціали"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_NAME_RUSS.fixedtext.text
+msgid "Last Name/First name/Father's name/Initials"
+msgstr "Ім'я/По-батькові/Прізвище/Ініціали"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_NAME_EASTERN.fixedtext.text
+msgid "Last/First ~name/Initials"
+msgstr "~Ім'я/Прізвище /Ініціали"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_STREET.fixedtext.text
+msgid "~Street"
+msgstr "~Вулиця"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_STREET_RUSS.fixedtext.text
+msgid "Street/Apartment number"
+msgstr "Вулиця,будинок/квартира"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_CITY.fixedtext.text
+msgid "Zip/City"
+msgstr "Поштовий індекс/місто"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_COUNTRY.fixedtext.text
+msgid "Country/Region"
+msgstr "Країна/область"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_TITLEPOS.fixedtext.text
+msgid "~Title/Position"
+msgstr "~Звання/посада"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_PHONE.fixedtext.text
+msgid "Tel. (Home/Work)"
+msgstr "Телефон дом./робоч."
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_FAXMAIL.fixedtext.text
+msgid "Fa~x / E-mail"
+msgstr "~Факс/електронна пошта"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.GB_ADDRESS.fixedline.text
+msgid "Address "
+msgstr "Адреса"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.CB_USEDATA.checkbox.text
+msgid "Use data for document properties"
+msgstr "Використовувати дані для властивостей документу"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.STR_US_STATE.string.text
+msgid "City/State/Zip"
+msgstr "Місто/Область/Поштовий індекс"
+
+#: 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 "Майте на увазі що вулиця, поштовий код і місто будуть використані для створення ключа реєстрації. Не можна змінювати ці дані до завершення реєстрації. Змінити відомості про користувача зараз?"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.tabpage.text
+msgctxt "optgenrl.src#RID_SFXPAGE_GENERAL.tabpage.text"
+msgid "User Data"
+msgstr "Відомості про користувача"
+
+#: 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 ""
+"Ви змінили відомості про користувача.\n"
+"Через це ви втратите статус зареєстрованого користувача.\n"
+"Вам знадобиться новий реєстраційний ключ, який треба ввести протягом 30 дні.\n"
+"Реєстраційну форму ви знайдете у меню Довідка - Реєстрація...\n"
+"Змінити дані користувача попри все?"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.FL_WARNINGS.fixedline.text
+msgid "Security warnings"
+msgstr "Попередження безпеки"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.FI_WARNINGS.fixedtext.text
+msgid "Warn if document contains recorded changes, versions, hidden information or notes:"
+msgstr "Попереджувати, якщо документ містить записані зміни, версії, приховану інформацію чи примітки:"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_SAVESENDDOCS.checkbox.text
+msgid "When saving or sending"
+msgstr "при збереженні чи надсиланні"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_SIGNDOCS.checkbox.text
+msgid "When signing"
+msgstr "при підписуванні"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_PRINTDOCS.checkbox.text
+msgid "When printing"
+msgstr "при друкуванні"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_CREATEPDF.checkbox.text
+msgid "When creating PDF files"
+msgstr "при створенні PDF-файлів"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.FL_OPTIONS.fixedline.text
+msgid "Security options"
+msgstr "Параметри безпеки"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_REMOVEINFO.checkbox.text
+msgid "Remove personal information on saving"
+msgstr "Видаляти особисту інформацію при збереженні"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_RECOMMENDPWD.checkbox.text
+msgid "Recommend password protection on saving"
+msgstr "Рекомендувати збереження з паролем"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_CTRLHYPERLINK.checkbox.text
+msgid "Ctrl-click required to follow hyperlinks"
+msgstr "Ctrl-клацання необхідне для переходу по гіперпосиланням"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.modaldialog.text
+msgctxt "securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.modaldialog.text"
+msgid "Security options and warnings"
+msgstr "Параметри та попередження безпеки"
+
+#: optsave.src#TEXT_SAVEPAGE.#define.text
+msgctxt "optsave.src#TEXT_SAVEPAGE.#define.text"
+msgid "Save"
+msgstr "Зберегти"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_LOAD.fixedline.text
+msgid "Load"
+msgstr "Відкрити"
+
+#: optsave.src#RID_SFXPAGE_SAVE.CB_LOAD_SETTINGS.checkbox.text
+msgid "Load user-specific settings with the document"
+msgstr "Завантажувати параметри користувача разом з документом"
+
+#: optsave.src#RID_SFXPAGE_SAVE.CB_LOAD_DOCPRINTER.checkbox.text
+msgid "Load printer settings with the document"
+msgstr "Завантажувати параметри принтера разом з документом"
+
+#: optsave.src#RID_SFXPAGE_SAVE.GB_SAVE.fixedline.text
+msgctxt "optsave.src#RID_SFXPAGE_SAVE.GB_SAVE.fixedline.text"
+msgid "Save"
+msgstr "Зберегти"
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_DOCINFO.checkbox.text
+msgid "~Edit document properties before saving"
+msgstr "~Редагувати властивості документу перед збереженням"
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_BACKUP.checkbox.text
+msgid "Al~ways create backup copy"
+msgstr "Зав~жди створювати резервну копію"
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_AUTOSAVE.checkbox.text
+msgid "Save ~AutoRecovery information every"
+msgstr "~Автозбереження кожні"
+
+#: optsave.src#RID_SFXPAGE_SAVE.FT_MINUTE.fixedtext.text
+msgid "Minutes"
+msgstr "Хвилини"
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_RELATIVE_FSYS.checkbox.text
+msgid "Save URLs relative to file system"
+msgstr "Зберігати адреси відносно файлової системи"
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_RELATIVE_INET.checkbox.text
+msgid "Save URLs relative to internet"
+msgstr "Зберігати адреси відносно інтернету"
+
+#: optsave.src#RID_SFXPAGE_SAVE.FL_FILTER.fixedline.text
+msgid "Default file format and ODF settings"
+msgstr "Типовий формат файлу та параметри ODF"
+
+#: optsave.src#RID_SFXPAGE_SAVE.FT_ODF_VERSION.fixedtext.text
+msgid "ODF format version"
+msgstr "Версія формату ODF"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_ODF_VERSION.1.stringlist.text
+msgid "1.0/1.1"
+msgstr ""
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_ODF_VERSION.2.stringlist.text
+msgid "1.2"
+msgstr ""
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_ODF_VERSION.3.stringlist.text
+msgid "1.2 Extended (compat mode)"
+msgstr ""
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_ODF_VERSION.4.stringlist.text
+msgid "1.2 Extended (recommended)"
+msgstr ""
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_NOPRETTYPRINTING.checkbox.text
+msgid "Size optimization for ODF format"
+msgstr "Оптимізація розміру для формату ODF"
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_WARNALIENFORMAT.checkbox.text
+msgid "Warn when not saving in ODF or default format"
+msgstr "Попереджати при збереженні у форматі відмінному від ODF або типовому форматі."
+
+#: optsave.src#RID_SFXPAGE_SAVE.FT_APP.fixedtext.text
+msgid "D~ocument type"
+msgstr "~Тип документу"
+
+#: optsave.src#RID_SFXPAGE_SAVE.FT_FILTER.fixedtext.text
+msgid "Always sa~ve as"
+msgstr "Зав~жди зберігати як"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.1.stringlist.text
+msgid "Text document"
+msgstr "Текстовий документ"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.2.stringlist.text
+msgid "HTML document"
+msgstr "Документ HTML"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.3.stringlist.text
+msgid "Master document"
+msgstr "Головний документ"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.4.stringlist.text
+msgctxt "optsave.src#RID_SFXPAGE_SAVE.LB_APP.4.stringlist.text"
+msgid "Spreadsheet"
+msgstr "Електронна таблиця"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.5.stringlist.text
+msgid "Presentation"
+msgstr "Презентація"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.6.stringlist.text
+msgid "Drawing"
+msgstr "Малюнок"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.7.stringlist.text
+msgctxt "optsave.src#RID_SFXPAGE_SAVE.LB_APP.7.stringlist.text"
+msgid "Formula"
+msgstr "Формула"
+
+#. 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 ""
+
+#: optsave.src#RID_SVXDLG_FILTER_WARNING.FT_FILTER_WARNING.fixedtext.text
+msgid "Using \"%1\" as default file format may cause information loss.\n"
+msgstr "Вживання \"%1\" як базового формату файла може призвести до втрати інформації.\n"
+
+#: readonlyimage.src#RID_SVXSTR_READONLY_CONFIG_TIP.string.text
+msgid "This setting is protected by the Administrator"
+msgstr "Ці параметри заблоковані адміністратором."
+
+#: 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 ""
+
+#: optinet2.src#RID_SVXPAGE_INET_MOZPLUGIN.CB_MOZPLUGIN_CODE.checkbox.text
+msgid "~Display documents in browser"
+msgstr ""
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.GB_SETTINGS.fixedline.text
+msgctxt "optinet2.src#RID_SVXPAGE_INET_PROXY.GB_SETTINGS.fixedline.text"
+msgid "Settings"
+msgstr "Параметри"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_PROXYMODE.fixedtext.text
+msgid "Proxy s~erver"
+msgstr "~Проксі-сервера"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.LB_PROXYMODE.1.stringlist.text
+#, fuzzy
+msgid "None"
+msgstr "Немає"
+
+#: 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 "Системний"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.LB_PROXYMODE.3.stringlist.text
+msgid "Manual"
+msgstr "Вручну"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.ST_PROXY_FROM_BROWSER.string.text
+msgid "Use browser settings"
+msgstr "використовувати параметри навігатора"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_HTTP_PROXY.fixedtext.text
+msgid "HT~TP proxy"
+msgstr "П~роксі HTTP"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_HTTP_PORT.fixedtext.text
+msgid "~Port"
+msgstr "~Порт"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_HTTPS_PROXY.fixedtext.text
+msgid "HTTP~S proxy"
+msgstr "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 "~Порт"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_FTP_PROXY.fixedtext.text
+msgid "~FTP proxy"
+msgstr "Пр~оксі 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 "П~орт"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_SOCKS_PROXY.fixedtext.text
+msgid "~SOCKS proxy"
+msgstr "Прокс~і SOCKS"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_SOCKS_PORT.fixedtext.text
+msgid "Po~rt"
+msgstr "Пор~т"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_NOPROXYFOR.fixedtext.text
+msgid "~No proxy for:"
+msgstr "~Без проксі для:"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.ED_NOPROXYDESC.fixedtext.text
+msgid "Separator ;"
+msgstr "Розділювач ;"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.GB_DNS.fixedline.text
+msgid "DNS server"
+msgstr "Сервер DNS"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.RB_DNS_AUTO.radiobutton.text
+msgid "~Automatic"
+msgstr "~Автоматично"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.RB_DNS_MANUAL.radiobutton.text
+msgid "~Manual"
+msgstr "~Вручну"
+
+#: 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 "неправильний запис для цього поля. Вкажіть значення від 0 до 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 "неправильний запис для цього поля. Вкажіть значення між 1 та 255."
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.tabpage.text
+msgctxt "optinet2.src#RID_SVXPAGE_INET_PROXY.tabpage.text"
+msgid "Proxy"
+msgstr "Проксі"
+
+#: 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 "Параметри та попередження безпеки"
+
+#: 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 "Налаштовує параметри та визначає попередження безпеки для прихованої інформації у документах."
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.PB_SEC_SECURITYOPTIONS.pushbutton.text
+msgid "Options..."
+msgstr "Параметри..."
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.FL_SEC_PASSWORDS.fixedline.text
+msgid "Passwords for web connections"
+msgstr "Паролі для веб-підключень"
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.CB_SEC_SAVEPASSWORDS.checkbox.text
+msgid "Persistently save passwords for web connections"
+msgstr ""
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.PB_SEC_CONNECTIONS.pushbutton.text
+msgid "Connections..."
+msgstr "З'єднання"
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.CB_SEC_MASTERPASSWORD.checkbox.text
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 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 "Паролі захищені головним паролем. У випадку добування програмою %PRODUCTNAME паролю з захищеного списку паролів запит на введення паролю виводиться для кожного сеансу."
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.PB_SEC_MASTERPASSWORD.pushbutton.text
+msgid "Master Password..."
+msgstr "Головний пароль..."
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.FL_SEC_MACROSEC.fixedline.text
+msgid "Macro security"
+msgstr "Безпека макросів"
+
+#: 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 "Налаштувати рівень безпеки запуску макросів та обрати довірених розробників макросів."
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.PB_SEC_MACROSEC.pushbutton.text
+msgid "Macro Security..."
+msgstr "Безпека макросів..."
+
+#: 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 ""
+
+#: 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 ""
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.PB_SEC_CERTPATH.pushbutton.text
+msgid "Certificate..."
+msgstr ""
+
+#: 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 ""
+"Вимикання функції збереження паролів видалить список збережених паролів та відновить головний пароль.\n"
+"\n"
+"Видалити паролі та відновити головний-пароль?"
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.tabpage.text
+msgctxt "optinet2.src#RID_SVXPAGE_INET_SECURITY.tabpage.text"
+msgid "Security"
+msgstr "Безпека"
+
+#: optinet2.src#RID_SVXERR_OPT_PROXYPORTS.errorbox.text
+msgid ""
+"Invalid value!\n"
+"\n"
+"The maximum value for a port number is 65535."
+msgstr ""
+"Неправильне значення!\n"
+"\n"
+"Максимальне значення для номеру порту - 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 ""
+"Вимикаючи Java,\n"
+"ви вимикаєте й JavaScript.\n"
+"\n"
+"Вимкнути Java?"
+
+#: optinet2.src#RID_SVXDLG_OPT_JAVASCRIPT_DISABLE.CB_JSCPT_DISABLE.checkbox.text
+msgid "~Don't show warning again"
+msgstr "~Не показувати попередження знову"
+
+#: optinet2.src#RID_SVXPAGE_INET_MAIL.FL_MAIL.fixedline.text
+msgid "Sending documents as e-mail attachments"
+msgstr "Надсилання документів у вигляді вкладених файлів електронної пошти"
+
+#: optinet2.src#RID_SVXPAGE_INET_MAIL.FT_MAILERURL.fixedtext.text
+msgid "~E-mail program"
+msgstr "~Поштовий клієнт"
+
+#: optinet2.src#RID_SVXPAGE_INET_MAIL.STR_DEFAULT_FILENAME.string.text
+msgid "All files"
+msgstr ""
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.CB_USETABLE.checkbox.text
+msgid "~Apply replacement table"
+msgstr "~Застосувати таблицю замін"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.FT_FONT1.fixedtext.text
+msgid "~Font"
+msgstr "~Шрифт"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.FT_FONT2.fixedtext.text
+msgid "Re~place with"
+msgstr "Замінити н~а"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.TBX_SUBSTNEWDEL.BT_SUBSTAPPLY.toolboxitem.text
+msgid "Apply"
+msgstr "Застосувати"
+
+#: 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 "Видалити"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.FL_SOURCEVIEW.fixedline.text
+msgid "Font settings for HTML, Basic and SQL sources"
+msgstr ""
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.FT_FONTNAME.fixedtext.text
+msgctxt "fontsubs.src#RID_SVX_FONT_SUBSTITUTION.FT_FONTNAME.fixedtext.text"
+msgid "Fonts"
+msgstr "Шрифти"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.CB_NONPROP.checkbox.text
+msgid "Non-proportional fonts only"
+msgstr "Лише моноширинні шрифти"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.FT_FONTHEIGHT.fixedtext.text
+msgid "~Size"
+msgstr "~Розмір"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.STR_HEADER1.string.text
+msgid "Always"
+msgstr "Завжди"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.STR_HEADER2.string.text
+msgid "Screen only"
+msgstr "Екран"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.STR_HEADER3.string.text
+msgid "Font"
+msgstr "~Шрифт"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.STR_HEADER4.string.text
+msgid "Replace with"
+msgstr "Замінити на"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.STR_AUTOMATIC.string.text
+msgctxt "fontsubs.src#RID_SVX_FONT_SUBSTITUTION.STR_AUTOMATIC.string.text"
+msgid "Automatic"
+msgstr "Автоматично"
+
+#: optdict.src#RID_SFXDLG_NEWDICT.FT_DICTNAME.fixedtext.text
+#, fuzzy
+msgid "~Name"
+msgstr "~Назва"
+
+#: optdict.src#RID_SFXDLG_NEWDICT.FT_DICTLANG.fixedtext.text
+msgctxt "optdict.src#RID_SFXDLG_NEWDICT.FT_DICTLANG.fixedtext.text"
+msgid "~Language"
+msgstr "~Мова"
+
+#: optdict.src#RID_SFXDLG_NEWDICT.BTN_EXCEPT.checkbox.text
+msgid "~Exception (-)"
+msgstr "~Виняток (-)"
+
+#: optdict.src#RID_SFXDLG_NEWDICT.GB_NEWDICT.fixedline.text
+msgid "Dictionary"
+msgstr "Словник"
+
+#: optdict.src#RID_SFXDLG_NEWDICT.modaldialog.text
+msgid "New Dictionary"
+msgstr "Новий словник"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.FT_BOOK.fixedtext.text
+msgid "~Book"
+msgstr "~Книга"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.FT_DICTLANG.fixedtext.text
+msgctxt "optdict.src#RID_SFXDLG_EDITDICT.FT_DICTLANG.fixedtext.text"
+msgid "~Language"
+msgstr "~Мова"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.FT_WORD.fixedtext.text
+msgid "~Word"
+msgstr "~Слово"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.FT_REPLACE.fixedtext.text
+msgid "Replace ~By:"
+msgstr "Замінити н~а:"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.PB_NEW_REPLACE.pushbutton.text
+msgid "~New"
+msgstr "~Створити"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.PB_DELETE_REPLACE.pushbutton.text
+msgctxt "optdict.src#RID_SFXDLG_EDITDICT.PB_DELETE_REPLACE.pushbutton.text"
+msgid "~Delete"
+msgstr "В~идалити"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.STR_MODIFY.string.text
+msgid "~Replace"
+msgstr "За~мінити"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.BTN_EDITCLOSE.cancelbutton.text
+msgid "~Close"
+msgstr "~Закрити"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.modaldialog.text
+msgid "Edit Custom Dictionary"
+msgstr "Редагування словника користувача"
+
+#: optdict.src#RID_SVXSTR_OPT_DOUBLE_DICTS.string.text
+msgid ""
+"The specified name already exists.\n"
+"Please enter a new name."
+msgstr ""
+"Вказане ім'я вже існує.\n"
+"Введіть нове ім'я."
+
+#: optdict.src#RID_SFXQB_SET_LANGUAGE.querybox.text
+msgid "Do you want to change the '%1' dictionary language?"
+msgstr "Змінити мову словника '%1'?"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE1.fixedtext.text
+msgid "Size ~1"
+msgstr "Розмір ~1"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE2.fixedtext.text
+msgid "Size ~2"
+msgstr "Розмір ~2"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE3.fixedtext.text
+msgid "Size ~3"
+msgstr "Розмір ~3"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE4.fixedtext.text
+msgid "Size ~4"
+msgstr "Розмір ~4"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE5.fixedtext.text
+msgid "Size ~5"
+msgstr "Розмір ~5"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE6.fixedtext.text
+msgid "Size ~6"
+msgstr "Розмір ~6"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE7.fixedtext.text
+msgid "Size ~7"
+msgstr "Розмір ~7"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.GB_FONTSIZE.fixedline.text
+msgid "Font sizes"
+msgstr "Розміри шрифту"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.GB_IMPORT.fixedline.text
+msgid "Import"
+msgstr "Імпорт"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.CB_NUMBERS_ENGLISH_US.checkbox.text
+msgid "~Use '%ENGLISHUSLOCALE' locale for numbers"
+msgstr "~Використовувати регіональні налаштування \"%ENGLISHUSLOCALE\" для чисел"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.CB_UNKNOWN_TAGS.checkbox.text
+msgid "~Import unknown HTML tags as fields"
+msgstr "~Імпортувати невідомі теги HTML як поля"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.CB_IGNORE_FONTNAMES.checkbox.text
+msgid "Ignore ~font settings"
+msgstr "Ігнорувати параметри ~шрифту"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.GB_EXPORT.fixedline.text
+msgid "Export"
+msgstr "Експорт"
+
+#: opthtml.src#CB_STARBASIC_WARNING.checkbox.text
+msgid "Display ~warning"
+msgstr "Показати ~попередження"
+
+#: opthtml.src#CB_PRINT_EXTENSION.checkbox.text
+msgid "~Print layout"
+msgstr "Розмітка ~друку"
+
+#: opthtml.src#CB_LOCAL_GRF.checkbox.text
+msgid "~Copy local graphics to Internet"
+msgstr "~Копіювати локальну графіку в Інтернет"
+
+#: opthtml.src#FT_CHARSET.fixedtext.text
+msgid "Character set"
+msgstr "Шрифт"
+
+#: internationaloptions.src#RID_OFA_TP_INTERNATIONAL.FL_DEFTXTDIRECTION.fixedline.text
+msgid "Default text direction"
+msgstr "Типовий напрямок тексту"
+
+#: internationaloptions.src#RID_OFA_TP_INTERNATIONAL.RB_TXTDIR_LEFT2RIGHT.radiobutton.text
+msgid "~Left-to-right"
+msgstr "З~ліва направо"
+
+#: internationaloptions.src#RID_OFA_TP_INTERNATIONAL.RB_TXTDIR_RIGHT2LEFT.radiobutton.text
+msgid "~Right-to-left"
+msgstr "С~права наліво"
+
+#: internationaloptions.src#RID_OFA_TP_INTERNATIONAL.FL_SHEETVIEW.fixedline.text
+msgid "Sheet view"
+msgstr "Вигляд таблиці"
+
+#: internationaloptions.src#RID_OFA_TP_INTERNATIONAL.CB_SHTVW_RIGHT2LEFT.checkbox.text
+msgid "Right-~to-left"
+msgstr "Справа нал~іво"
+
+#: internationaloptions.src#RID_OFA_TP_INTERNATIONAL.CB_SHTVW_CURRENTDOCONLY.checkbox.text
+msgid "~Current document only"
+msgstr "Лише ~поточний документ"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.FL_COLORSCHEME.fixedline.text
+msgid "Color scheme"
+msgstr "Схема кольорів"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.FT_COLORSCHEME.fixedtext.text
+msgid "Scheme"
+msgstr "~Назва"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.PB_SAVESCHEME.pushbutton.text
+msgid "Save..."
+msgstr "З~берегти..."
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.PB_DELETESCHEME.pushbutton.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.PB_DELETESCHEME.pushbutton.text"
+msgid "Delete"
+msgstr "В~идалити"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.FL_CUSTOMCOLORS.fixedline.text
+msgid "Custom colors"
+msgstr "Налаштовування кольорів"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.ST_ON.string.text
+msgid "On"
+msgstr "Увімк"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.ST_UIELEM.string.text
+msgid "User interface elements"
+msgstr "Елемент інтерфейсу"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.ST_COLSET.string.text
+msgid "Color setting"
+msgstr "Колір"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.ST_PREVIEW.string.text
+msgid "Preview"
+msgstr "Вигляд"
+
+#: 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 "Загальні"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_DOCCOLOR.fixedtext.text
+msgid "Document background"
+msgstr "Тло документу"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_DOCBOUND.checkbox.text
+msgid "Text boundaries"
+msgstr "Межі документу"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_APPBACKGROUND.fixedtext.text
+msgid "Application background"
+msgstr "Тло програми"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_OBJECTBOUNDARIES.checkbox.text
+msgid "Object boundaries"
+msgstr "Межі об'єктів"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_TABLEBOUNDARIES.checkbox.text
+msgid "Table boundaries"
+msgstr "Межі таблиць"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_FONTCOLOR.fixedtext.text
+msgid "Font color"
+msgstr "Колір шрифту"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_LINKS.checkbox.text
+msgid "Unvisited links"
+msgstr "Невідвідані посилання"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_LINKSVISITED.checkbox.text
+msgid "Visited links"
+msgstr "Відвідані посилання"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SPELL.fixedtext.text
+msgid "AutoSpellcheck"
+msgstr "Автоматична перевірка орфографії"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SMARTTAGS.fixedtext.text
+msgid "Smart Tags"
+msgstr "Смарт-теги"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_SHADOWCOLOR.checkbox.text
+#, fuzzy
+msgid "Shadows"
+msgstr "Тінь"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_WRITER.fixedtext.text
+msgid "Text Document"
+msgstr "Текстовий документ"
+
+#: 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 "Сітка"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_WRITERFIELDSHADINGS.checkbox.text
+msgid "Field shadings"
+msgstr "Затінення полів"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_WRITERIDXSHADINGS.checkbox.text
+msgid "Index and table shadings"
+msgstr "Затінення покажчиків та таблиць"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_WRITERSCRIPTINDICATOR.fixedtext.text
+msgid "Script indicator"
+msgstr "Індикатор сценаріїв"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_WRITERSECTIONBOUNDARIES.checkbox.text
+msgid "Section boundaries"
+msgstr "Межі розділів"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_WRITERHEADERFOOTERMARK.fixedtext.text
+msgid "Headers and Footer delimiter"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_WRITERPAGEBREAKS.fixedtext.text
+msgid "Page and column breaks"
+msgstr "Розриви сторінок та колонок"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_WRITERDIRECTCURSOR.fixedtext.text
+msgid "Direct cursor"
+msgstr "Вільний курсор"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_HTML.fixedtext.text
+msgid "HTML Document"
+msgstr "Документ HTML"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_HTMLSGML.fixedtext.text
+msgid "SGML syntax highlighting"
+msgstr "Виділення кольором синтаксису SGML"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_HTMLCOMMENT.fixedtext.text
+msgid "Comment highlighting"
+msgstr "Виділення коментарів"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_HTMLKEYWORD.fixedtext.text
+msgid "Keyword highlighting"
+msgstr "Виділення ключових слів"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_HTMLUNKNOWN.fixedtext.text
+msgid "Text"
+msgstr "Текст"
+
+#: 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 "Електронна таблиця"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCGRID.fixedtext.text
+msgid "Grid lines"
+msgstr "Лінії сітки"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCPAGEBREAK.fixedtext.text
+msgid "Page breaks"
+msgstr "Розриви сторінок"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCPAGEBREAKMANUAL.fixedtext.text
+msgid "Manual page breaks"
+msgstr "Жорсткі розриви сторінок"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCPAGEBREAKAUTO.fixedtext.text
+msgid "Automatic page breaks"
+msgstr "Автоматичні розриви сторінок"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCDETECTIVE.fixedtext.text
+msgid "Detective"
+msgstr "Агент"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCDETECTIVEERROR.fixedtext.text
+msgid "Detective error"
+msgstr "Помилки агента"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCREFERENCE.fixedtext.text
+msgid "References"
+msgstr "Посилання"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCNOTESBACKGROUND.fixedtext.text
+msgid "Notes background"
+msgstr "Тло приміток"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_DRAW.fixedtext.text
+msgid "Drawing / Presentation"
+msgstr "Малюнки/презентації"
+
+#: 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 "Сітка"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASIC.fixedtext.text
+msgid "Basic Syntax Highlighting"
+msgstr "Виділення синтаксису 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 "Ідентифікатори"
+
+#: 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 "Коментарі"
+
+#: 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 "Числа"
+
+#: 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 "Рядки"
+
+#: 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 "Оператори"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICKEYWORD.fixedtext.text
+msgid "Reserved expression"
+msgstr "Вирази"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICERROR.fixedtext.text
+msgid "Error"
+msgstr "Помилки"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQL_COMMAND.fixedtext.text
+msgid "SQL Syntax Highlighting"
+msgstr "Виділення кольором синтаксису SGML"
+
+#: 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 "Ідентифікатори"
+
+#: 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 "Числа"
+
+#: 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 "Рядки"
+
+#: 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 "Оператори"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLKEYWORD.fixedtext.text
+msgid "Keyword"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLPARAMETER.fixedtext.text
+msgid "Parameter"
+msgstr ""
+
+#: 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 "Коментарі"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.ST_EXTENSION.string.text
+msgid "Colorsettings of the Extensions"
+msgstr "Параметри кольорів розширень"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.ST_SPELL_CHECK_HIGHLIGHTING.string.text
+msgid "Spell check highlighting"
+msgstr "Виділення при перевірці орфографії"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.ST_GRAMMAR_CHECK_HIGHLIGHTING.string.text
+msgid "Grammar check highlighting"
+msgstr "Виділення при перевірці граматики"
+
+#: optcolor.src#RID_SVXQB_DELETE_COLOR_CONFIG.querybox.text
+msgid "Do you really want to delete the color scheme?"
+msgstr "Ви дійсно хочете видалити схему кольорів?"
+
+#: optcolor.src#RID_SVXSTR_COLOR_CONFIG_DELETE.string.text
+msgid "Color Scheme Deletion"
+msgstr "Видалення схеми кольорів"
+
+#: optcolor.src#RID_SVXSTR_COLOR_CONFIG_SAVE1.string.text
+msgid "Save scheme"
+msgstr "Зберегти схему"
+
+#: optcolor.src#RID_SVXSTR_COLOR_CONFIG_SAVE2.string.text
+msgid "Name of color scheme"
+msgstr "Назва схеми кольорів"
+
+#: optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.FL_CHART_COLOR_LIST.fixedline.text
+msgid "Chart colors"
+msgstr "Кольори діаграми"
+
+#: optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.FL_COLOR_BOX.fixedline.text
+msgid "Color table"
+msgstr "Колір таблиці"
+
+#: optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.PB_ADD_CHART_COLOR.pushbutton.text
+#, fuzzy
+msgid "~Add"
+msgstr "~Додати"
+
+#: optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.PB_REMOVE_CHART_COLOR.pushbutton.text
+#, fuzzy
+msgctxt "optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.PB_REMOVE_CHART_COLOR.pushbutton.text"
+msgid "~Remove"
+msgstr ""
+"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
+"В~идалити\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"В~идалити\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"В~идалити\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"В~идалити\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"В~идалити\n"
+"#-#-#-#-# tabpages.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Видалити\n"
+"#-#-#-#-# Custom.po (PACKAGE VERSION) #-#-#-#-#\n"
+"В~идалити\n"
+"#-#-#-#-# gui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"В~илучити"
+
+#: 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 "~Стандарт"
+
+#: optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.tabpage.text
+msgctxt "optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.tabpage.text"
+msgid "Default Colors"
+msgstr "Типові кольори"
+
+#: optchart.src#RID_SVXSTR_DIAGRAM_ROW.string.text
+msgid "Data Series $(ROW)"
+msgstr "Ряд даних $(ROW)"
+
+#: optchart.src#RID_OPTQB_COLOR_CHART_DELETE.querybox.text
+#, fuzzy
+msgid "Do you really want to delete the chart color?"
+msgstr "Ви дійсно хочете видалити схему кольорів?"
+
+#: optchart.src#RID_OPTSTR_COLOR_CHART_DELETE.string.text
+msgid "Chart Color Deletion"
+msgstr ""
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.GB_KERNING.fixedline.text
+msgid "Kerning"
+msgstr "Кернінг"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.RB_CHAR_KERNING.radiobutton.text
+msgid "~Western characters only"
+msgstr "~Лише латинські символи"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.RB_CHAR_PUNCT.radiobutton.text
+msgid "Western ~text and Asian punctuation"
+msgstr "~Західний текст та азіатська пунктуація"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.GB_CHAR_DIST.fixedline.text
+msgid "Character spacing"
+msgstr "Міжсимвольний інтервал"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.RB_NO_COMP.radiobutton.text
+msgid "~No compression"
+msgstr "~Без стиснення"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.RB_PUNCT_COMP.radiobutton.text
+msgid "~Compress punctuation only"
+msgstr "~Стискати лише пунктуацію"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.RB_PUNCT_KANA_COMP.radiobutton.text
+msgid "Compress ~punctuation and Japanese Kana"
+msgstr "Стискати ~пунктуацію та японську кану"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.GB_START_END.fixedline.text
+msgid "First and last characters"
+msgstr "Перший та останній символи"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.FT_LANGUAGE.fixedtext.text
+msgctxt "optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.FT_LANGUAGE.fixedtext.text"
+msgid "~Language"
+msgstr "~Мова"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.CB_STANDARD.checkbox.text
+msgctxt "optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.CB_STANDARD.checkbox.text"
+msgid "~Default"
+msgstr "~Стандарт"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.FT_START.fixedtext.text
+msgid "Not at start of line:"
+msgstr "Не на початку рядка:"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.FT_END.fixedtext.text
+msgid "Not at end of line:"
+msgstr "Не в кінці рядка:"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.FT_HINT.fixedtext.text
+msgid "Without user-defined line break symbols"
+msgstr "Без визначених користувачем символів переносу рядка"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.tabpage.text
+msgctxt "optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.tabpage.text"
+msgid "Proxy"
+msgstr "Проксі"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE.PB_BACK.pushbutton.text
+msgid "~Revert"
+msgstr ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE.ST_LOAD_ERROR.string.text
+msgid "The selected module could not be loaded."
+msgstr "Неможливо завантажити вибраний модуль."
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE.modaldialog.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE.modaldialog.text"
+msgid "Options"
+msgstr "Параметри"
+
+#: 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 "Відомості про користувача"
+
+#: 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 "Загальні"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.4.itemlist.text
+msgid "Memory"
+msgstr "Пам'ять"
+
+#: 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 "Вигляд"
+
+#: 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 "Друк"
+
+#: 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 "Шляхи"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.8.itemlist.text
+msgid "Colors"
+msgstr "Кольори"
+
+#: 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 "Шрифти"
+
+#: 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 "Безпека"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.11.itemlist.text
+msgid "Appearance"
+msgstr "Зовнішній вигляд"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.12.itemlist.text
+msgid "Accessibility"
+msgstr "Допоміжні можливості"
+
+#: 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 "Ідентифікація у мережі"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.15.itemlist.text
+msgid "Online Update"
+msgstr "Перевірка оновлень"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_LANGUAGE_OPTIONS.1.itemlist.text
+msgid "Language Settings"
+msgstr "Параметри мови"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_LANGUAGE_OPTIONS.2.itemlist.text
+msgid "Languages"
+msgstr "Мови"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_LANGUAGE_OPTIONS.3.itemlist.text
+msgid "Writing Aids"
+msgstr "Лінгвістика"
+
+#: 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 "Пошук японською мовою"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_LANGUAGE_OPTIONS.5.itemlist.text
+msgid "Asian Layout"
+msgstr "Розмітка азіатського тексту"
+
+#: 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 "Складні системи письменності"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_INET_DLG.1.itemlist.text
+msgid "Internet"
+msgstr "Інтернет"
+
+#: 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 "Проксі"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_INET_DLG.3.itemlist.text
+msgid "E-mail"
+msgstr "Ел.пошта"
+
+#: 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 ""
+
+#: 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 "Загальні"
+
+#: 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 "Вигляд"
+
+#: 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 "Знаки форматування"
+
+#: 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 "Сітка"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.6.itemlist.text
+msgid "Basic Fonts (Western)"
+msgstr "Основні шрифти (західні)"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.7.itemlist.text
+msgid "Basic Fonts (Asian)"
+msgstr "Основні шрифти (азіатські)"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.8.itemlist.text
+msgid "Basic Fonts (CTL)"
+msgstr "Основні шрифти (для складних систем писемності)"
+
+#: 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 "Друк"
+
+#: 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 "Таблиця"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.11.itemlist.text
+#, fuzzy
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.11.itemlist.text"
+msgid "Changes"
+msgstr "Зміни"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.12.itemlist.text
+msgid "Comparison"
+msgstr ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.13.itemlist.text
+#, fuzzy
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.13.itemlist.text"
+msgid "Compatibility"
+msgstr "Сумісність"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.14.itemlist.text
+msgid "AutoCaption"
+msgstr ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.15.itemlist.text
+msgid "Mail Merge E-mail"
+msgstr "Розсилання електронної пошти"
+
+#: 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 "Вигляд"
+
+#: 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 "Знаки форматування"
+
+#: 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 "Сітка"
+
+#: 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 "Друк"
+
+#: 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 "Таблиця"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.7.itemlist.text
+msgid "Background"
+msgstr "Тло"
+
+#: 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 "Параметри"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.1.itemlist.text
+msgid "%PRODUCTNAME Calc"
+msgstr "%PRODUCTNAME Сalc"
+
+#: 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 "Загальні"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.3.itemlist.text
+#, fuzzy
+msgid "Defaults"
+msgstr "Типово"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.4.itemlist.text
+#, fuzzy
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.4.itemlist.text"
+msgid "View"
+msgstr "Вигляд"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.5.itemlist.text
+msgid "International"
+msgstr "Міжнародний"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.6.itemlist.text
+msgid "Calculate"
+msgstr "Обчислення"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.7.itemlist.text
+#, fuzzy
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.7.itemlist.text"
+msgid "Formula"
+msgstr "Формула"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.8.itemlist.text
+msgid "Sort Lists"
+msgstr "Списки сортування"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.9.itemlist.text
+#, fuzzy
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.9.itemlist.text"
+msgid "Changes"
+msgstr "Зміни"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.10.itemlist.text
+#, fuzzy
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.10.itemlist.text"
+msgid "Compatibility"
+msgstr "Сумісність"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.11.itemlist.text
+#, fuzzy
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.11.itemlist.text"
+msgid "Grid"
+msgstr "Сітка"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.12.itemlist.text
+#, fuzzy
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.12.itemlist.text"
+msgid "Print"
+msgstr "Друк"
+
+#: 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 "Загальні"
+
+#: 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 "Вигляд"
+
+#: 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 "Сітка"
+
+#: 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 "Друк"
+
+#: 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 "Загальні"
+
+#: 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 "Вигляд"
+
+#: 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 "Сітка"
+
+#: 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 "Друк"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SCH_EDITOPTIONS.1.itemlist.text
+msgid "Charts"
+msgstr "Діаграми"
+
+#: 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 "Типові кольори"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_FILTER_DLG.1.itemlist.text
+msgid "Load/Save"
+msgstr "Завантаження/збереження"
+
+#: 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 "Загальні"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_FILTER_DLG.3.itemlist.text
+msgid "VBA Properties"
+msgstr "Властивості 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 "Сумісність з 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 "З'єднання"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SB_STARBASEOPTIONS.3.itemlist.text
+msgid "Databases"
+msgstr "Бази даних"
+
+#: treeopt.src#RID_RIDER_SLL_SITE.string.text
+msgid "Site certificates"
+msgstr "Сертифікати вузла"
+
+#: treeopt.src#RID_RIDER_SLL_PERSONAL.string.text
+msgid "Personal certificates"
+msgstr "Особисті сертифікати"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.FL_JAVA.fixedline.text
+msgid "Java options"
+msgstr "Параметри Java"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.CB_JAVA_ENABLE.checkbox.text
+msgid "~Use a Java runtime environment"
+msgstr "~Використовувати віртуальну машину Java"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.FT_JAVA_FOUND.fixedtext.text
+msgid "~Java runtime environments (JRE) already installed:"
+msgstr "~Встановлені віртуальні машини Java"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.PB_ADD.pushbutton.text
+#, fuzzy
+msgctxt "optjava.src#RID_SVXPAGE_OPTIONS_JAVA.PB_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr "~Додати..."
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.PB_PARAMETER.pushbutton.text
+msgid "~Parameters..."
+msgstr "~Параметри..."
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.PB_CLASSPATH.pushbutton.text
+msgid "~Class Path..."
+msgstr "~Шлях класу..."
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.STR_INSTALLED_IN.string.text
+msgid "Location: "
+msgstr "Розташування: "
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.STR_ACCESSIBILITY.string.text
+msgid "with accessibility support"
+msgstr "із підтримкою спеціальних можливостей"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.STR_ADDDLGTEXT.string.text
+msgid "Select a Java Runtime Environment"
+msgstr "Вибрати Java Runtime Environment"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.STR_HEADER_VENDOR.string.text
+msgid "Vendor"
+msgstr "Виробник"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.STR_HEADER_VERSION.string.text
+msgid "Version"
+msgstr "Версія"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.STR_HEADER_FEATURES.string.text
+msgid "Features"
+msgstr "Можливості"
+
+#: 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 "~Параметри запуску Java"
+
+#: optjava.src#RID_SVXDLG_JAVA_PARAMETER.PB_ASSIGN.pushbutton.text
+msgid "~Assign"
+msgstr "П~ризначити"
+
+#: optjava.src#RID_SVXDLG_JAVA_PARAMETER.FT_ASSIGNED.fixedtext.text
+msgid "Assig~ned start parameters"
+msgstr "При~значені параметри запуску"
+
+#: optjava.src#RID_SVXDLG_JAVA_PARAMETER.FT_EXAMPLE.fixedtext.text
+msgid "For example: -Dmyprop=c:\\program files\\java"
+msgstr "Наприклад: -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 "В~идалити"
+
+#: optjava.src#RID_SVXDLG_JAVA_PARAMETER.modaldialog.text
+msgid "Java Start Parameters"
+msgstr "Параметри запуску Java"
+
+#: optjava.src#RID_SVXDLG_JAVA_CLASSPATH.FT_PATH.fixedtext.text
+msgid "A~ssigned folders and archives"
+msgstr "Пр~изначені теки та архіви"
+
+#: optjava.src#RID_SVXDLG_JAVA_CLASSPATH.PB_ADDARCHIVE.pushbutton.text
+msgid "~Add Archive..."
+msgstr "~Додати архів..."
+
+#: optjava.src#RID_SVXDLG_JAVA_CLASSPATH.PB_ADDPATH.pushbutton.text
+msgid "Add ~Folder"
+msgstr "Додати ~теку"
+
+#: 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 "В~идалити"
+
+#: optjava.src#RID_SVXDLG_JAVA_CLASSPATH.modaldialog.text
+msgid "Class Path"
+msgstr "Шлях до класів"
+
+#: 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 ""
+"Вибраний каталог не містить JRE.\n"
+"Вкажіть інший каталог."
+
+#: 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 ""
+"Вибране середовище виконання Java має непотрібну версію.\n"
+"Виберіть іншу теку."
+
+#: 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 ""
+"Для правильної роботи вибраного середовища виконання Java потрібно перезапустити %PRODUCTNAME.\n"
+"Перезапустіть %PRODUCTNAME зараз."
+
+#: 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 ""
+
+#: optmemory.src#OFA_TP_MEMORY.GB_UNDO.fixedline.text
+msgid "Undo"
+msgstr "Вернути"
+
+#: optmemory.src#OFA_TP_MEMORY.FT_UNDO.fixedtext.text
+msgid "Number of steps"
+msgstr "Кількість кроків"
+
+#: optmemory.src#OFA_TP_MEMORY.GB_GRAPHICCACHE.fixedline.text
+msgid "Graphics cache"
+msgstr "Кеш графічного об'єкту"
+
+#: optmemory.src#OFA_TP_MEMORY.FT_GRAPHICCACHE.fixedtext.text
+msgid "Use for %PRODUCTNAME"
+msgstr "Використовувати для %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 "Мб"
+
+#: optmemory.src#OFA_TP_MEMORY.FT_GRAPHICOBJECTCACHE.fixedtext.text
+msgid "Memory per object"
+msgstr "Пам'яті на об'єкт"
+
+#: optmemory.src#OFA_TP_MEMORY.FT_GRAPHICOBJECTCACHE_UNIT.fixedtext.text
+msgctxt "optmemory.src#OFA_TP_MEMORY.FT_GRAPHICOBJECTCACHE_UNIT.fixedtext.text"
+msgid "MB"
+msgstr "Мб"
+
+#: optmemory.src#OFA_TP_MEMORY.FT_GRAPHICOBJECTTIME.fixedtext.text
+msgid "Remove from memory after"
+msgstr "Видалити з пам'яті через"
+
+#: optmemory.src#OFA_TP_MEMORY.FT_GRAPHICOBJECTTIME_UNIT.fixedtext.text
+msgid "hh:mm"
+msgstr "гг:хв"
+
+#: optmemory.src#OFA_TP_MEMORY.GB_OLECACHE.fixedline.text
+msgid "Cache for inserted objects"
+msgstr "Кеш для вставлених об'єктів"
+
+#: optmemory.src#OFA_TP_MEMORY.FT_OLECACHE.fixedtext.text
+msgid "Number of objects"
+msgstr "Кількість об'єктів"
+
+#: optmemory.src#OFA_TP_MEMORY.FL_QUICKLAUNCH.fixedline.text
+msgid "%PRODUCTNAME Quickstarter"
+msgstr "Швидкий запуск %PRODUCTNAME"
+
+#: optmemory.src#OFA_TP_MEMORY.CB_QUICKLAUNCH.checkbox.text
+msgid "Load %PRODUCTNAME during system start-up"
+msgstr "Завантажити %PRODUCTNAME під час старту системи"
+
+#: optmemory.src#OFA_TP_MEMORY.STR_QUICKLAUNCH_UNX.string.text
+msgid "Enable systray Quickstarter"
+msgstr "Використовувати швидкий запуск"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.FL_MISCELLANEOUS.fixedline.text
+msgid "Miscellaneous options"
+msgstr "Різні параметри"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_ACCESSIBILITY_TOOL.checkbox.text
+msgid "Support ~assistive technology tools (program restart required)"
+msgstr "Підтримка ~допоміжних технологій (необхідно перезапустити програму)"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_TEXTSELECTION.checkbox.text
+msgid "Use te~xt selection cursor in read-only text documents"
+msgstr "~Використовувати курсор вибору тексту в документах «лише для читання»"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_ANIMATED_GRAPHICS.checkbox.text
+msgid "Allow animated ~graphics"
+msgstr "Дозволити анімацію ~графіки"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_ANIMATED_TEXTS.checkbox.text
+msgid "Allow animated ~text"
+msgstr "Дозволити анімацію ~тексту"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_TIPHELP.checkbox.text
+msgid "~Help tips disappear after "
+msgstr "~Підказки довідки зникають після"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.FT_TIPHELP.fixedtext.text
+msgid "seconds"
+msgstr "секунд(и)"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.FL_HC_OPTIONS.fixedline.text
+msgid "Options for high contrast appearance"
+msgstr "Параметри для контрастного режиму"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_AUTO_DETECT_HC.checkbox.text
+msgid "Automatically ~detect high contrast mode of operating system"
+msgstr "~Виявляти контрастний режим операційної системи"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_AUTOMATIC_FONT_COLOR.checkbox.text
+msgid "Use automatic font ~color for screen display"
+msgstr "Автоматично підбирати ~колір для відображення тексту"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_PAGE_PREVIEWS.checkbox.text
+msgid "~Use system colors for page previews"
+msgstr "Використовувати системні ~кольори для попереднього перегляду сторінок"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.FL_SEQUENCECHECKING.fixedline.text
+msgid "Sequence checking"
+msgstr "Перевірка послідовностей символів"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.CB_SEQUENCECHECKING.checkbox.text
+msgid "Use se~quence checking"
+msgstr "Перевіряти послідовності ~символів"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.CB_RESTRICTED.checkbox.text
+msgid "Restricted"
+msgstr "Заборонено"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.CB_TYPE_REPLACE.checkbox.text
+msgid "~Type and replace"
+msgstr "~Заміна при друкуванні"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.FL_CURSORCONTROL.fixedline.text
+msgid "Cursor control"
+msgstr "Текстовий курсор"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.FT_MOVEMENT.fixedtext.text
+msgid "Movement"
+msgstr "Напрямок руху"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.RB_MOVEMENT_LOGICAL.radiobutton.text
+msgid "Lo~gical"
+msgstr "~Логічний"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.RB_MOVEMENT_VISUAL.radiobutton.text
+msgid "~Visual"
+msgstr "~Візуальний"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.FL_GENERAL.fixedline.text
+msgid "General options"
+msgstr "Загальні параметри"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.FT_NUMERALS.fixedtext.text
+msgid "~Numerals"
+msgstr "~Цифри (лише для тексту)"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.LB_NUMERALS.1.stringlist.text
+msgid "Arabic"
+msgstr "Арабські"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.LB_NUMERALS.2.stringlist.text
+msgid "Hindi"
+msgstr "Хінді"
+
+#: 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 "Системний"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.LB_NUMERALS.4.stringlist.text
+msgid "Context"
+msgstr ""
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.tabpage.text
+msgctxt "optctl.src#RID_SVXPAGE_OPTIONS_CTL.tabpage.text"
+msgid "Complex Text Layout"
+msgstr "Складні системи писемності"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.FL_POOLING.fixedline.text
+msgid "Connection pool"
+msgstr "Пул з'єднань"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.CB_POOL_CONNS.checkbox.text
+msgid "Connection pooling enabled"
+msgstr "Увімкнено пул з'єднань"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.FT_DRIVERS.fixedtext.text
+msgid "Drivers known in %PRODUCTNAME"
+msgstr "Драйвери, відомі %PRODUCTNAME"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.FT_DRIVERLABEL.fixedtext.text
+msgid "Current driver:"
+msgstr "Поточний драйвер:"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.CB_DRIVERPOOLING.checkbox.text
+msgid "Enable pooling for this driver"
+msgstr "Створення пулу підключень для цього драйвера"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.FT_TIMEOUT.fixedtext.text
+msgid "Timeout (seconds)"
+msgstr "Час очікування (секунд)"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.STR_DRIVER_NAME.string.text
+msgid "Driver name"
+msgstr "Назва драйвера"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.STR_POOLED_FLAG.string.text
+msgid "Pool"
+msgstr "Пул"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.STR_POOL_TIMEOUT.string.text
+msgid "Timeout"
+msgstr "Час очікування"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.STR_YES.string.text
+msgid "Yes"
+msgstr "Так"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.STR_NO.string.text
+msgid "No"
+msgstr "Ні"
+
+#: optgdlg.src#OFA_TP_MISC.FL_HELP.fixedline.text
+msgctxt "optgdlg.src#OFA_TP_MISC.FL_HELP.fixedline.text"
+msgid "Help"
+msgstr "Довідка"
+
+#: optgdlg.src#OFA_TP_MISC.CB_TOOLTIP.checkbox.text
+msgid "~Tips"
+msgstr "П~ідказки"
+
+#: optgdlg.src#OFA_TP_MISC.CB_EXTHELP.checkbox.text
+msgid "~Extended tips"
+msgstr "~Докладні підказки"
+
+#: optgdlg.src#OFA_TP_MISC.FT_HELPFORMAT.fixedtext.text
+msgid "Help ~formatting"
+msgstr "Відображення ~довідки"
+
+#: optgdlg.src#OFA_TP_MISC.LB_HELPFORMAT.1.stringlist.text
+msgid "Default"
+msgstr "Типово"
+
+#: optgdlg.src#OFA_TP_MISC.LB_HELPFORMAT.2.stringlist.text
+msgid "High Contrast #1"
+msgstr "Контрастний стиль №1"
+
+#: optgdlg.src#OFA_TP_MISC.LB_HELPFORMAT.3.stringlist.text
+msgid "High Contrast #2"
+msgstr "Контрастний стиль №2"
+
+#: optgdlg.src#OFA_TP_MISC.LB_HELPFORMAT.4.stringlist.text
+msgid "High Contrast Black"
+msgstr "Контрастний чорний"
+
+#: optgdlg.src#OFA_TP_MISC.LB_HELPFORMAT.5.stringlist.text
+msgid "High Contrast White"
+msgstr "Контрастний білий"
+
+#: optgdlg.src#OFA_TP_MISC.CB_HELPAGENT.checkbox.text
+msgid "~Help Agent"
+msgstr "~Помічник"
+
+#: optgdlg.src#OFA_TP_MISC.PB_HELPAGENT_RESET.pushbutton.text
+msgid "~Reset Help Agent"
+msgstr "~Скинути"
+
+#: optgdlg.src#OFA_TP_MISC.FL_FILEDLG.fixedline.text
+msgid "Open/Save dialogs"
+msgstr "Діалоги відкриття/збереження"
+
+#: optgdlg.src#OFA_TP_MISC.CB_FILEDLG.checkbox.text
+msgid "~Use %PRODUCTNAME dialogs"
+msgstr "~Використовувати діалоги %PRODUCTNAME"
+
+#: optgdlg.src#OFA_TP_MISC.CB_ODMADLG.checkbox.text
+msgid "Show ODMA DMS dialogs first"
+msgstr "Спочатку показувати діалоги ODMA DMS"
+
+#: optgdlg.src#OFA_TP_MISC.FL_PRINTDLG.fixedline.text
+msgid "Print dialogs"
+msgstr "Діалоги друку"
+
+#: optgdlg.src#OFA_TP_MISC.CB_PRINTDLG.checkbox.text
+msgid "Use %PRODUCTNAME ~dialogs"
+msgstr "Використовувати ~діалоги %PRODUCTNAME"
+
+#: optgdlg.src#OFA_TP_MISC.FL_DOCSTATUS.fixedline.text
+msgid "Document status"
+msgstr "Стан документу"
+
+#: optgdlg.src#OFA_TP_MISC.CB_DOCSTATUS.checkbox.text
+msgid "~Printing sets \"document modified\" status"
+msgstr "~Друк встановлює стан «документ змінено»"
+
+#: optgdlg.src#OFA_TP_MISC.CB_SAVE_ALWAYS.checkbox.text
+msgid "Allow to save document even when the document is not modified"
+msgstr "Дозволити збереження документу навіть коли його не було змінено"
+
+#: optgdlg.src#OFA_TP_MISC.FL_TWOFIGURE.fixedline.text
+msgid "Year (two digits)"
+msgstr "Рік (дві цифри)"
+
+#: optgdlg.src#OFA_TP_MISC.FT_INTERPRET.fixedtext.text
+msgid "Interpret as years between"
+msgstr "Інтерпретувати як роки між"
+
+#: optgdlg.src#OFA_TP_MISC.FT_TOYEAR.fixedtext.text
+msgid "and "
+msgstr "та "
+
+#: optgdlg.src#OFA_TP_MISC.CB_EXPERIMENTAL.checkbox.text
+msgid "Enable experimental (unstable) features"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_MISC.CB_MACRORECORDER.checkbox.text
+msgid "Enable macro recording (limited)"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.FL_USERINTERFACE.fixedline.text
+msgid "User Interface"
+msgstr "Інтерфейс користувача"
+
+#: optgdlg.src#OFA_TP_VIEW.FT_WINDOWSIZE.fixedtext.text
+msgid "Sc~aling"
+msgstr "Мас~штаб"
+
+#: optgdlg.src#OFA_TP_VIEW.FT_ICONSIZESTYLE.fixedtext.text
+msgid "Icon size and style"
+msgstr "Розмір та стиль значків"
+
+#: optgdlg.src#OFA_TP_VIEW.STR_ICONSIZE.string.text
+msgid "Icon size"
+msgstr "Розмір значків"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSIZE.1.stringlist.text
+msgctxt "optgdlg.src#OFA_TP_VIEW.LB_ICONSIZE.1.stringlist.text"
+msgid "Automatic"
+msgstr "Автоматично"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSIZE.2.stringlist.text
+msgid "Small"
+msgstr "Маленькі"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSIZE.3.stringlist.text
+msgid "Large"
+msgstr "Великі"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.1.stringlist.text
+msgctxt "optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.1.stringlist.text"
+msgid "Automatic"
+msgstr "Автоматично"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.2.stringlist.text
+msgid "Galaxy (default)"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.3.stringlist.text
+msgid "High Contrast"
+msgstr "Контрастний стиль №1"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.4.stringlist.text
+msgid "Industrial"
+msgstr "Індустріальний"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.5.stringlist.text
+msgid "Crystal"
+msgstr "Кристал"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.6.stringlist.text
+msgid "Tango"
+msgstr "Танго"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.7.stringlist.text
+msgid "Oxygen"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.8.stringlist.text
+msgid "Classic"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.9.stringlist.text
+msgid "Human"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.CB_SYSTEM_FONT.checkbox.text
+msgid "Use system ~font for user interface"
+msgstr "Використовувати системний ~шрифт для інтерфейсу"
+
+#: optgdlg.src#OFA_TP_VIEW.CB_FONTANTIALIASING.checkbox.text
+msgid "Screen font antialiasing"
+msgstr "Згладжування екранних шрифтів"
+
+#: optgdlg.src#OFA_TP_VIEW.FT_POINTLIMIT_LABEL.fixedtext.text
+msgid "from"
+msgstr "з"
+
+#: optgdlg.src#OFA_TP_VIEW.FT_POINTLIMIT_UNIT.fixedtext.text
+msgid "Pixels"
+msgstr "точок"
+
+#: optgdlg.src#OFA_TP_VIEW.FL_MENU.fixedline.text
+msgid "Menu"
+msgstr "Меню"
+
+#: optgdlg.src#OFA_TP_VIEW.FT_MENU_ICONS.fixedtext.text
+msgid "Icons in menus"
+msgstr ""
+
+#: 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 "Автоматично"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MENU_ICONS.2.stringlist.text
+msgid "Hide"
+msgstr "Сховати"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MENU_ICONS.3.stringlist.text
+msgid "Show"
+msgstr "Показати"
+
+#: optgdlg.src#OFA_TP_VIEW.FL_FONTLISTS.fixedline.text
+msgid "Font Lists"
+msgstr "Список шрифтів"
+
+#: optgdlg.src#OFA_TP_VIEW.CB_FONT_SHOW.checkbox.text
+msgid "Show p~review of fonts"
+msgstr "Попередній ~перегляд шрифтів"
+
+#: optgdlg.src#OFA_TP_VIEW.CB_FONT_HISTORY.checkbox.text
+msgid "Show font h~istory"
+msgstr "Показувати ~історію шрифтів"
+
+#: optgdlg.src#OFA_TP_VIEW.FL_RENDERING.fixedline.text
+msgid "Graphics output"
+msgstr "Графічний вивід"
+
+#: optgdlg.src#OFA_TP_VIEW.CB_USE_HARDACCELL.checkbox.text
+msgid "Use hardware acceleration"
+msgstr "Використовувати апаратне прискорення"
+
+#: optgdlg.src#OFA_TP_VIEW.CB_USE_ANTIALIASE.checkbox.text
+msgid "Use Anti-Aliasing"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.FL_MOUSE.fixedline.text
+msgid "Mouse"
+msgstr "Миша"
+
+#: optgdlg.src#OFA_TP_VIEW.FT_MOUSEPOS.fixedtext.text
+msgid "Mouse positioning"
+msgstr "Позиціювання миші"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEPOS.1.stringlist.text
+msgid "Default button"
+msgstr "Стандартна кнопка"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEPOS.2.stringlist.text
+msgid "Dialog center"
+msgstr "У центрі діалогового вікна"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEPOS.3.stringlist.text
+msgid "No automatic positioning"
+msgstr "Без автоматичного позиціювання"
+
+#: optgdlg.src#OFA_TP_VIEW.FT_MOUSEMIDDLE.fixedtext.text
+msgid "Middle mouse button"
+msgstr "Середня кнопка миші"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEMIDDLE.1.stringlist.text
+msgid "No function"
+msgstr "Без функції"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEMIDDLE.2.stringlist.text
+msgid "Automatic scrolling"
+msgstr "Автоматична прокрутка"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEMIDDLE.3.stringlist.text
+msgid "Paste clipboard"
+msgstr "Вставити з буферу обміну"
+
+#: optgdlg.src#OFA_TP_VIEW.FL_SELECTION.fixedline.text
+#, fuzzy
+msgid "Selection"
+msgstr ""
+"#-#-#-#-# utlui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Виділене\n"
+"#-#-#-#-# ribbar.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Виділення\n"
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вибір\n"
+"#-#-#-#-# uiview.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Виділене\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вибір\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Виділеного\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вибір\n"
+"#-#-#-#-# euro.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Виділення\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Виділення\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Виділення\n"
+"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Виділення"
+
+#: optgdlg.src#OFA_TP_VIEW.CB_SELECTION.checkbox.text
+msgid "Transparency"
+msgstr "Прозорість"
+
+#: 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 "Мова для"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_USERINTERFACE.fixedtext.text
+msgid "~User interface"
+msgstr "~Інтерфейс користувача"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_LOCALESETTING.fixedtext.text
+msgid "Locale setting"
+msgstr "Локальні параметри"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_DECIMALSEPARATOR.fixedtext.text
+msgid "Decimal separator key"
+msgstr "Розділювач цілої та дробової частин"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.CB_DECIMALSEPARATOR.checkbox.text
+msgid "~Same as locale setting ( %1 )"
+msgstr "~З параметрів ОС ( %1 )"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_CURRENCY.fixedtext.text
+msgid "~Default currency"
+msgstr "~Типова валюта"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FL_LINGU_LANG.fixedline.text
+msgid "Default languages for documents"
+msgstr "Типові мови для документів"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_WEST_LANG.fixedtext.text
+msgid "Western"
+msgstr "Західні"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_ASIAN_LANG.fixedtext.text
+msgid "Asian"
+msgstr "Азіатські"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_COMPLEX_LANG.fixedtext.text
+msgid "C~TL"
+msgstr "~Зі складними системами писемності"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.CB_CURRENT_DOC.checkbox.text
+msgid "For the current document only"
+msgstr "Лише для поточного документу"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FL_ENHANCED.fixedline.text
+msgid "Enhanced language support"
+msgstr "Розширена підтримка мов"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.CB_ASIANSUPPORT.checkbox.text
+msgid "E~nabled for Asian languages"
+msgstr "Для ~азіатських мов"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.CB_CTLSUPPORT.checkbox.text
+msgid "Ena~bled for complex text layout (CTL)"
+msgstr "Для ~складних систем писемності"
+
+#: 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 "Параметри мов інтерфейсу користувача оновлені та будуть застосовані при наступному запуску %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 "Завантажувати ~код 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 "Виконуваний ~код"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_WBAS_STG.checkbox.text
+msgid "Save ~original Basic code"
+msgstr "Зберегти ~первинний варіант коду Basic"
+
+#: 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 "З~авантажувати код 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 "В~иконуваний код"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_EBAS_STG.checkbox.text
+msgid "Sa~ve original Basic code"
+msgstr "З~берегти первинний варіант коду Basic"
+
+#: 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 "За~вантажувати код Basic"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_PBAS_STG.checkbox.text
+msgid "Sav~e original Basic code"
+msgstr "Зб~ерегти первинний варіант коду Basic"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_HEADER1.string.text
+msgid "[L]"
+msgstr "[З]"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_HEADER2.string.text
+msgid "[S]"
+msgstr "[б]"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.FT_HEADER1_EXPLANATION.fixedtext.text
+msgid "[L]: Load and convert the object"
+msgstr "[З]: Завантажити та перетворити вбудований об'єкт"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.FT_HEADER2_EXPLANATION.fixedtext.text
+msgid "[S]: Convert and save the object"
+msgstr "[б]: Перетворити та зберегти вбудований об'єкт"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_CHG_MATH.string.text
+msgid "MathType to %PRODUCTNAME Math or reverse"
+msgstr ""
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_CHG_WRITER.string.text
+msgid "WinWord to %PRODUCTNAME Writer or reverse"
+msgstr ""
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_CHG_CALC.string.text
+msgid "Excel to %PRODUCTNAME Calc or reverse"
+msgstr ""
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_CHG_IMPRESS.string.text
+msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
+msgstr ""
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.FT_TYPE.fixedtext.text
+msgid "Registered name"
+msgstr "Назва бази"
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.FT_PATH.fixedtext.text
+msgid "Database file"
+msgstr "Файл бази даних"
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_NEW.pushbutton.text
+msgctxt "dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_NEW.pushbutton.text"
+msgid "~New..."
+msgstr "~Створити..."
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_EDIT.pushbutton.text
+msgctxt "dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_EDIT.pushbutton.text"
+msgid "~Edit..."
+msgstr "~Редагувати…"
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_DELETE.pushbutton.text
+msgctxt "dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_DELETE.pushbutton.text"
+msgid "~Delete"
+msgstr "В~идалити"
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.GB_STD.fixedline.text
+msgctxt "dbregister.src#RID_SFXPAGE_DBREGISTER.GB_STD.fixedline.text"
+msgid "Registered databases"
+msgstr "Зареєстровані бази даних"
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.tabpage.text
+msgctxt "dbregister.src#RID_SFXPAGE_DBREGISTER.tabpage.text"
+msgid "Registered databases"
+msgstr "Зареєстровані бази даних"
+
+#: certpath.src#RID_SVXDLG_CERTPATH.FL_CERTPATH.fixedline.text
+msgctxt "certpath.src#RID_SVXDLG_CERTPATH.FL_CERTPATH.fixedline.text"
+msgid "Certificate Path"
+msgstr ""
+
+#: 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 ""
+
+#: certpath.src#RID_SVXDLG_CERTPATH.PB_ADD.pushbutton.text
+#, fuzzy
+msgctxt "certpath.src#RID_SVXDLG_CERTPATH.PB_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr "~Додати..."
+
+#: certpath.src#RID_SVXDLG_CERTPATH.STR_ADDDLGTEXT.string.text
+msgid "Select a Certificate directory"
+msgstr ""
+
+#: certpath.src#RID_SVXDLG_CERTPATH.STR_MANUAL.string.text
+#, fuzzy
+msgid "manual"
+msgstr "Вручну"
+
+#: certpath.src#RID_SVXDLG_CERTPATH.STR_PROFILE.string.text
+msgid "Profile"
+msgstr ""
+
+#: certpath.src#RID_SVXDLG_CERTPATH.STR_DIRECTORY.string.text
+msgid "Directory"
+msgstr ""
+
+#: certpath.src#RID_SVXDLG_CERTPATH.modaldialog.text
+msgctxt "certpath.src#RID_SVXDLG_CERTPATH.modaldialog.text"
+msgid "Certificate Path"
+msgstr ""
+
+#: 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 "Параметри"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.FT_EDIT_MODULES_LANGUAGE.fixedtext.text
+msgid "Language"
+msgstr "Мова"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.PB_EDIT_MODULES_PRIO_UP.pushbutton.text
+msgid "Move Up"
+msgstr "Вгору"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.PB_EDIT_MODULES_PRIO_DOWN.pushbutton.text
+msgid "Move Down"
+msgstr "Вниз"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.PB_EDIT_MODULES_PRIO_BACK.pushbutton.text
+#, fuzzy
+msgid "~Back"
+msgstr "~Назад"
+
+#: 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 "~Отримати словники з мережі..."
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.PB_OK.okbutton.text
+msgctxt "optlingu.src#RID_SVXDLG_EDIT_MODULES.PB_OK.okbutton.text"
+msgid "Close"
+msgstr "Закрити"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.ST_SPELL.string.text
+msgid "Spelling"
+msgstr "Перевірка орфографії"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.ST_HYPH.string.text
+msgctxt "optlingu.src#RID_SVXDLG_EDIT_MODULES.ST_HYPH.string.text"
+msgid "Hyphenation"
+msgstr "Розстановка переносів"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.ST_THES.string.text
+msgid "Thesaurus"
+msgstr "Тезаурус"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.ST_GRAMMAR.string.text
+msgid "Grammar"
+msgstr "Граматика"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.modaldialog.text
+msgid "Edit Modules"
+msgstr "Редагування модулів"
+
+#: optlingu.src#RID_SVXDLG_LNG_ED_NUM_PREBREAK.STR_NUM_PRE_BREAK_DLG.string.text
+msgid "Characters before break"
+msgstr "Символів перед переносом"
+
+#: optlingu.src#RID_SVXDLG_LNG_ED_NUM_PREBREAK.STR_NUM_POST_BREAK_DLG.string.text
+msgid "Characters after break"
+msgstr "Символів після переносу"
+
+#: optlingu.src#RID_SVXDLG_LNG_ED_NUM_PREBREAK.STR_NUM_MIN_WORDLEN_DLG.string.text
+msgid "Minimal word length"
+msgstr "Мінімальна довжина слова"
+
+#: optlingu.src#RID_SVXDLG_LNG_ED_NUM_PREBREAK.modaldialog.text
+msgctxt "optlingu.src#RID_SVXDLG_LNG_ED_NUM_PREBREAK.modaldialog.text"
+msgid "Hyphenation"
+msgstr "Розстановка переносів"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.FL_LINGUISTIC.fixedline.text
+msgctxt "optlingu.src#RID_SFXPAGE_LINGU.FL_LINGUISTIC.fixedline.text"
+msgid "Writing aids"
+msgstr "Лінгвістика"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.FT_LINGU_MODULES.fixedtext.text
+msgid "Available language modules"
+msgstr "Доступні мовні модулі"
+
+#: 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 "~Редагування..."
+
+#: 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 "Словники користувачів"
+
+#: 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 "~Створити..."
+
+#: optlingu.src#RID_SFXPAGE_LINGU.PB_LINGU_DICS_EDIT_DIC.pushbutton.text
+msgid "Ed~it..."
+msgstr "~Редагування..."
+
+#: 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 "В~идалити"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.FT_LINGU_OPTIONS.fixedtext.text
+msgid "~Options"
+msgstr "П~араметри"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.PB_LINGU_OPTIONS_EDIT.pushbutton.text
+msgid "Edi~t..."
+msgstr "~Редагування..."
+
+#: 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 "~Отримати словники з мережі..."
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_CAPITAL_WORDS.string.text
+msgid "Check uppercase words"
+msgstr "Перевіряти слова написані великими літерами"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_WORDS_WITH_DIGITS.string.text
+msgid "Check words with numbers "
+msgstr "Перевіряти слова з цифрами "
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_CAPITALIZATION.string.text
+msgid "Check capitalization"
+msgstr "Перевіряти регістр"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_SPELL_SPECIAL.string.text
+msgid "Check special regions"
+msgstr "Перевіряти спеціальні області"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_SPELL_AUTO.string.text
+msgid "Check spelling as you type"
+msgstr "Автоматично перевіряти орфографію"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_GRAMMAR_AUTO.string.text
+msgid "Check grammar as you type"
+msgstr "Перевіряти граматику під час вводу тексту"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_NUM_MIN_WORDLEN.string.text
+msgid "Minimal number of characters for hyphenation: "
+msgstr "Мінімальна довжина слова для переносу: "
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_NUM_PRE_BREAK.string.text
+msgid "Characters before line break: "
+msgstr "Символи перед розривом рядка: "
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_NUM_POST_BREAK.string.text
+msgid "Characters after line break: "
+msgstr "Символи після переносу рядка: "
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_HYPH_AUTO.string.text
+msgid "Hyphenate without inquiry"
+msgstr "Автоматична розстановка переносів"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_HYPH_SPECIAL.string.text
+msgid "Hyphenate special regions"
+msgstr "Перенос у спеціальних областях"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_LINGU_MODULES_EDIT.string.text
+#, fuzzy
+msgid "Edit Available language modules"
+msgstr "Доступні мовні модулі"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_LINGU_DICS_EDIT_DIC.string.text
+#, fuzzy
+msgid "Edit User-defined dictionaries"
+msgstr "Словники користувача"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_LINGU_OPTIONS_EDIT.string.text
+#, fuzzy
+msgid "Edit Options"
+msgstr "Параметри друку"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.tabpage.text
+msgctxt "optlingu.src#RID_SFXPAGE_LINGU.tabpage.text"
+msgid "Options"
+msgstr "Параметри"
+
+#: optlingu.src#RID_SFXQB_DELDICT.querybox.text
+msgid "Do you want to delete the dictionary?"
+msgstr "Видалити словник?"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.FL_TREAT_AS_EQUAL.fixedline.text
+msgid "Treat as equal"
+msgstr "Вважати рівнозначними"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_CASE.checkbox.text
+msgid "~uppercase/lowercase"
+msgstr "~верхній/нижній регістр"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_FULL_HALF_WIDTH.checkbox.text
+msgid "~full-width/half-width forms"
+msgstr "~повний/скорочений формат форми"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_HIRAGANA_KATAKANA.checkbox.text
+msgid "~hiragana/katakana"
+msgstr "~хірагана/катакана"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_CONTRACTIONS.checkbox.text
+msgid "~contractions (yo-on, sokuon)"
+msgstr "~контракція голосних (yo-on, sokuon)"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_MINUS_DASH_CHOON.checkbox.text
+msgid "~minus/dash/cho-on"
+msgstr "~дефіс/cho-on"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_REPEAT_CHAR_MARKS.checkbox.text
+msgid "'re~peat character' marks"
+msgstr "символи, що ~повторюються"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_VARIANT_FORM_KANJI.checkbox.text
+msgid "~variant-form kanji (itaiji)"
+msgstr "~варіант кандзі (ітаідзі)"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_OLD_KANA_FORMS.checkbox.text
+msgid "~old Kana forms"
+msgstr "~старі форми кани"
+
+#: 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 "~Довгі голосні (ka-/kaa)"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.FL_IGNORE.fixedline.text
+msgid "Ignore"
+msgstr "Пропускати"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_IGNORE_PUNCTUATION.checkbox.text
+msgid "Pu~nctuation characters"
+msgstr "~Знаки пунктуації"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_IGNORE_WHITESPACES.checkbox.text
+msgid "~Whitespace characters"
+msgstr "~Символи пробілів"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_IGNORE_MIDDLE_DOT.checkbox.text
+msgid "Midd~le dots"
+msgstr "Точка у ~центрі"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.tabpage.text
+msgctxt "optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.tabpage.text"
+msgid "Searching in Japanese"
+msgstr "Пошук в японській мові"
+
+#: doclinkdialog.src#DLG_DOCUMENTLINK.FT_URL.fixedtext.text
+msgid "~Database file"
+msgstr "Файл ~бази даних"
+
+#: doclinkdialog.src#DLG_DOCUMENTLINK.PB_BROWSEFILE.pushbutton.text
+msgid "~Browse..."
+msgstr "О~гляд..."
+
+#: doclinkdialog.src#DLG_DOCUMENTLINK.FT_NAME.fixedtext.text
+msgid "Registered ~name"
+msgstr "Зареєстрована ~назва"
+
+#: doclinkdialog.src#DLG_DOCUMENTLINK.STR_EDIT_LINK.string.text
+msgid "Edit Database Link"
+msgstr "Змінити зв'язок з базою даних"
+
+#: doclinkdialog.src#DLG_DOCUMENTLINK.STR_NEW_LINK.string.text
+msgid "Create Database Link"
+msgstr "Створити зв'язок з базою даних"
+
+#: doclinkdialog.src#STR_LINKEDDOC_DOESNOTEXIST.string.text
+msgid ""
+"The file\n"
+"$file$\n"
+"does not exist."
+msgstr ""
+"Файл\n"
+"$file$\n"
+"не знайдено"
+
+#: doclinkdialog.src#STR_LINKEDDOC_NO_SYSTEM_FILE.string.text
+msgid ""
+"The file\n"
+"$file$\n"
+"does not exist in the local file system."
+msgstr ""
+
+#: doclinkdialog.src#STR_NAME_CONFLICT.string.text
+msgid ""
+"The name '$file$' is already used for another database.\n"
+"Please choose a different name."
+msgstr ""
+"Назва '$file$' вже використовується іншою базою даних.\n"
+"Виберіть іншу назву."
+
+#: doclinkdialog.src#QUERY_DELETE_CONFIRM.querybox.text
+msgid "Do you want to delete the entry?"
+msgstr "Видалити цей елемент?"
+
+#: optpath.src#RID_SFXPAGE_PATH.FT_TYPE.fixedtext.text
+#, fuzzy
+msgid "Type"
+msgstr "Тип"
+
+#: optpath.src#RID_SFXPAGE_PATH.FT_PATH.fixedtext.text
+msgid "Path"
+msgstr "Шлях"
+
+#: optpath.src#RID_SFXPAGE_PATH.BTN_PATH.pushbutton.text
+msgctxt "optpath.src#RID_SFXPAGE_PATH.BTN_PATH.pushbutton.text"
+msgid "~Edit..."
+msgstr "~Редагування..."
+
+#: optpath.src#RID_SFXPAGE_PATH.BTN_STANDARD.pushbutton.text
+msgctxt "optpath.src#RID_SFXPAGE_PATH.BTN_STANDARD.pushbutton.text"
+msgid "~Default"
+msgstr "~Стандарт"
+
+#: optpath.src#RID_SFXPAGE_PATH.GB_STD.fixedline.text
+msgid "Paths used by %PRODUCTNAME"
+msgstr "Шляхи, що використовуються %PRODUCTNAME"
+
+#: optpath.src#RID_SFXPAGE_PATH.STR_MULTIPATHDLG.string.text
+msgid "Edit Paths: %1"
+msgstr "Змінити шляхи: %1"
+
+#: optpath.src#RID_SFXPAGE_PATH.tabpage.text
+msgctxt "optpath.src#RID_SFXPAGE_PATH.tabpage.text"
+msgid "Paths"
+msgstr "Шляхи"
+
+#: 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 ""
+"Конфігурація та поштові каталоги мають знаходитися у різних каталогах.\n"
+"Виберіть новий шлях."
+
+#: optpath.src#RID_SVXSTR_KEY_CONFIG_DIR.string.text
+msgid "Configuration"
+msgstr "Налаштовування"
+
+#: optpath.src#RID_SVXSTR_KEY_WORK_PATH.string.text
+msgid "My Documents"
+msgstr "Мої документи"
+
+#: optpath.src#RID_SVXSTR_KEY_GRAPHICS_PATH.string.text
+msgid "Graphics"
+msgstr "Зображення"
+
+#: optpath.src#RID_SVXSTR_KEY_BITMAP_PATH.string.text
+msgid "Icons"
+msgstr "Значки"
+
+#: optpath.src#RID_SVXSTR_KEY_PALETTE_PATH.string.text
+msgid "Palettes"
+msgstr "Палітра"
+
+#: optpath.src#RID_SVXSTR_KEY_BACKUP_PATH.string.text
+msgid "Backups"
+msgstr "Резервні копії"
+
+#: optpath.src#RID_SVXSTR_KEY_MODULES_PATH.string.text
+msgid "Modules"
+msgstr "Модулі"
+
+#: optpath.src#RID_SVXSTR_KEY_TEMPLATE_PATH.string.text
+msgid "Templates"
+msgstr "Шаблони"
+
+#: optpath.src#RID_SVXSTR_KEY_GLOSSARY_PATH.string.text
+msgid "AutoText"
+msgstr "Автотекст"
+
+#: optpath.src#RID_SVXSTR_KEY_DICTIONARY_PATH.string.text
+#, fuzzy
+msgid "Dictionaries"
+msgstr "Словники"
+
+#: optpath.src#RID_SVXSTR_KEY_HELP_DIR.string.text
+msgctxt "optpath.src#RID_SVXSTR_KEY_HELP_DIR.string.text"
+msgid "Help"
+msgstr "Довідка"
+
+#: optpath.src#RID_SVXSTR_KEY_GALLERY_DIR.string.text
+msgid "Gallery"
+msgstr "Галерея"
+
+#: optpath.src#RID_SVXSTR_KEY_STORAGE_DIR.string.text
+msgid "Message Storage"
+msgstr "Сховище повідомлень"
+
+#: optpath.src#RID_SVXSTR_KEY_TEMP_PATH.string.text
+msgid "Temporary files"
+msgstr "Тимчасові файли"
+
+#: optpath.src#RID_SVXSTR_KEY_PLUGINS_PATH.string.text
+msgid "Plug-ins"
+msgstr "Додаткові модулі"
+
+#: optpath.src#RID_SVXSTR_KEY_FAVORITES_DIR.string.text
+msgid "Folder Bookmarks"
+msgstr "Закладки теки"
+
+#: optpath.src#RID_SVXSTR_KEY_FILTER_PATH.string.text
+msgid "Filters"
+msgstr "Фільтри"
+
+#: optpath.src#RID_SVXSTR_KEY_ADDINS_PATH.string.text
+msgid "Add-ins"
+msgstr "Надбудови"
+
+#: optpath.src#RID_SVXSTR_KEY_USERCONFIG_PATH.string.text
+msgid "User Configuration"
+msgstr "Конфігурація користувача"
+
+#: optpath.src#RID_SVXSTR_KEY_USERDICTIONARY_DIR.string.text
+msgctxt "optpath.src#RID_SVXSTR_KEY_USERDICTIONARY_DIR.string.text"
+msgid "User-defined dictionaries"
+msgstr "Словники користувачів"
+
+#: optpath.src#RID_SVXSTR_KEY_AUTOCORRECT_DIR.string.text
+msgid "AutoCorrect"
+msgstr "Автозаміна"
+
+#: optpath.src#RID_SVXSTR_KEY_LINGUISTIC_DIR.string.text
+msgctxt "optpath.src#RID_SVXSTR_KEY_LINGUISTIC_DIR.string.text"
+msgid "Writing aids"
+msgstr "Лінгвістика"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.FL_OPTIONS.fixedline.text
+msgid "Online Update Options"
+msgstr "Параметри перевірки оновлень"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.CB_AUTOCHECK.checkbox.text
+msgid "~Check for updates automatically"
+msgstr "~Перевіряти оновлення автоматично"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.RB_EVERYDAY.radiobutton.text
+msgid "Every Da~y"
+msgstr "Що~дня"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.RB_EVERYWEEK.radiobutton.text
+msgid "Every ~Week"
+msgstr "Що~тижня"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.RB_EVERYMONTH.radiobutton.text
+msgid "Every ~Month"
+msgstr "Що~місяця"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.FT_LASTCHECKED.fixedtext.text
+msgid "Last checked: %DATE%, %TIME%"
+msgstr "Остання перевірка: %DATE% о %TIME%"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.PB_CHECKNOW.pushbutton.text
+msgid "Check ~now"
+msgstr "Перевірити ~зараз"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.CB_AUTODOWNLOAD.checkbox.text
+msgid "~Download updates automatically"
+msgstr "~Завантажити оновлення автоматично"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.FT_DESTPATHLABEL.fixedtext.text
+msgid "Download destination:"
+msgstr "Каталог для завантаження:"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.PB_CHANGEPATH.pushbutton.text
+msgid "Ch~ange..."
+msgstr "~Змінити..."
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.STR_NEVERCHECKED.string.text
+msgid "Last checked: Not yet"
+msgstr "Остання перевірка: ще не було"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.tabpage.text
+msgid "OnlineUpdate"
+msgstr "Перевірка оновлень"
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.FI_NEVERSHOWN.fixedtext.text
+msgid "Web login information (passwords are never shown)"
+msgstr "Інформація про веб-аутентифікацію (пароль ніколи не відображається)"
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.PB_REMOVE.pushbutton.text
+msgid "Remove"
+msgstr "Видалити"
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.PB_REMOVEALL.pushbutton.text
+msgid "Remove All"
+msgstr "Видалити все"
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.PB_CHANGE.pushbutton.text
+msgid "Change Password..."
+msgstr "Змінити пароль..."
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.PB_CLOSE.cancelbutton.text
+msgctxt "webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.PB_CLOSE.cancelbutton.text"
+msgid "Close"
+msgstr "Закрити"
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.STR_WEBSITE.string.text
+msgid "Website"
+msgstr "Сайт"
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.STR_USERNAME.string.text
+msgid "User name"
+msgstr "Ім'я користувача"
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.modaldialog.text
+msgid "Stored Web Connection Information"
+msgstr "Збережена інформація веб-підключень"
diff --git a/source/uk/cui/source/tabpages.po b/source/uk/cui/source/tabpages.po
new file mode 100644
index 00000000000..4d1ad8363e8
--- /dev/null
+++ b/source/uk/cui/source/tabpages.po
@@ -0,0 +1,5164 @@
+#. 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-05-15 15:21+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.STR_EVENT.string.text
+msgid "Event"
+msgstr "Подія"
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.STR_ASSMACRO.string.text
+msgid "Assigned macro"
+msgstr ""
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.FT_LABEL4LB_MACROS.fixedtext.text
+#, fuzzy
+msgid "~Existing macros\n"
+msgstr "Існуючі макроси ~в:"
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.PB_ASSIGN.pushbutton.text
+msgid "~Assign"
+msgstr "П~ризначити"
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.PB_DELETE.pushbutton.text
+msgid "~Remove"
+msgstr "Видалити"
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.STR_MACROS.string.text
+msgid "Macros"
+msgstr "Макроси"
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.tabpage.text
+msgid "Assign Macro"
+msgstr ""
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_POSITION.fixedline.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_POSITION.fixedline.text"
+msgid "Position"
+msgstr "Позиція"
+
+#: 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 "Позиція ~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 "Позиція ~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 "Базова точка"
+
+#: 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 "Базова точка"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_SIZE.fixedline.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_SIZE.fixedline.text"
+msgid "Size"
+msgstr "Розмір"
+
+#: 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 "~Ширина"
+
+#: 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 "~Висота"
+
+#: 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 "Базова точка"
+
+#: 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 "Базова точка"
+
+#: 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 "~Пропорційно"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_PROTECT.fixedline.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_PROTECT.fixedline.text"
+msgid "Protect"
+msgstr "Захист"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.TSB_POSPROTECT.tristatebox.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.TSB_POSPROTECT.tristatebox.text"
+msgid "Position"
+msgstr "~Положення"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.TSB_SIZEPROTECT.tristatebox.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.TSB_SIZEPROTECT.tristatebox.text"
+msgid "~Size"
+msgstr "~Розмір"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_ADJUST.fixedline.text
+msgid "Adapt"
+msgstr "Узгодити"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.TSB_AUTOGROW_WIDTH.tristatebox.text
+msgid "~Fit width to text"
+msgstr "~Підігнати текст у ширину"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.TSB_AUTOGROW_HEIGHT.tristatebox.text
+msgid "Fit ~height to text"
+msgstr "Підігнати текст у ~висоту"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_ANCHOR.fixedline.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_ANCHOR.fixedline.text"
+msgid "Anchor"
+msgstr "Прив'язка"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_ANCHOR.fixedtext.text
+msgid "~Anchor"
+msgstr "~Прив'язка"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ANCHOR.1.stringlist.text
+msgid "To paragraph"
+msgstr "До абзацу"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ANCHOR.2.stringlist.text
+msgid "As character"
+msgstr "Як символ"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ANCHOR.3.stringlist.text
+msgid "To page"
+msgstr "До сторінки"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ANCHOR.4.stringlist.text
+msgid "To frame"
+msgstr "До кадру"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_ORIENT.fixedtext.text
+msgid "P~osition"
+msgstr "~Позиція"
+
+#: 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 "Згори"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.2.stringlist.text
+msgid "Above"
+msgstr "Згори"
+
+#: 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 "У центрі"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.4.stringlist.text
+msgid "Below"
+msgstr "Знизу"
+
+#: 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 "Символ згори"
+
+#: 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 "Символ у центрі"
+
+#: 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 "Символ знизу"
+
+#: 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 "Рядок згори"
+
+#: 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 "Рядок у центрі"
+
+#: 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 "Рядок знизу"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.tabpage.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.tabpage.text"
+msgid "Position and Size"
+msgstr "Положення та розмір"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.FL_POSITION.fixedline.text
+msgid "Pivot point"
+msgstr "Обертання навколо"
+
+#: 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 "Позиція ~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 "Позиція ~Y"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.FT_POSPRESETS.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_ANGLE.FT_POSPRESETS.fixedtext.text"
+msgid "Default settings"
+msgstr "Типові параметри"
+
+#: 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 "Точка обертання"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.FL_ANGLE.fixedline.text
+msgid "Rotation angle"
+msgstr "Кут повороту"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.FT_ANGLE.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_ANGLE.FT_ANGLE.fixedtext.text"
+msgid "~Angle"
+msgstr "~Кут"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.MTR_FLD_ANGLE.metricfield.text
+msgctxt "transfrm.src#RID_SVXPAGE_ANGLE.MTR_FLD_ANGLE.metricfield.text"
+msgid " degrees"
+msgstr " градусів"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.FT_ANGLEPRESETS.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_ANGLE.FT_ANGLEPRESETS.fixedtext.text"
+msgid "Default settings"
+msgstr "Типові параметри"
+
+#: 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 "Кут оберту"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.tabpage.text
+msgid "Angle"
+msgstr "Кут"
+
+#: transfrm.src#RID_SVXPAGE_SLANT.FL_RADIUS.fixedline.text
+msgid "Corner radius"
+msgstr "Радіус закругленого кута"
+
+#: transfrm.src#RID_SVXPAGE_SLANT.FT_RADIUS.fixedtext.text
+msgid "~Radius"
+msgstr "~Радіус"
+
+#: transfrm.src#RID_SVXPAGE_SLANT.FL_SLANT.fixedline.text
+msgid "Slant"
+msgstr "Нахил"
+
+#: transfrm.src#RID_SVXPAGE_SLANT.FT_ANGLE.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_SLANT.FT_ANGLE.fixedtext.text"
+msgid "~Angle"
+msgstr "~Кут"
+
+#: transfrm.src#RID_SVXPAGE_SLANT.MTR_FLD_ANGLE.metricfield.text
+msgctxt "transfrm.src#RID_SVXPAGE_SLANT.MTR_FLD_ANGLE.metricfield.text"
+msgid " degrees"
+msgstr " градусів"
+
+#: transfrm.src#RID_SVXPAGE_SLANT.tabpage.text
+msgctxt "transfrm.src#RID_SVXPAGE_SLANT.tabpage.text"
+msgid "Slant & Corner Radius"
+msgstr "Нахил та радіус закруглення куту"
+
+#: transfrm.src#_POS_SIZE_TEXT.#define.text
+msgctxt "transfrm.src#_POS_SIZE_TEXT.#define.text"
+msgid "Position and Size"
+msgstr "Положення та розмір"
+
+#: transfrm.src#RID_SVXDLG_TRANSFORM.TAB_CONTROL.RID_SVXPAGE_ANGLE.pageitem.text
+msgid "Rotation"
+msgstr "Обертання"
+
+#: 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 "Нахил та радіус закруглення куту"
+
+#: transfrm.src#RID_SVXDLG_TRANSFORM.tabdialog.text
+msgctxt "transfrm.src#RID_SVXDLG_TRANSFORM.tabdialog.text"
+msgid "Position and Size"
+msgstr "Положення та розмір"
+
+#: 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 "Обрамлення"
+
+#: 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 "Тло"
+
+#: bbdlg.src#RID_SVXDLG_BBDLG.tabdialog.text
+msgid "Border / Background"
+msgstr "Рамка / Тло"
+
+#: backgrnd.src#UNLINKED_IMAGE.#define.text
+msgid "Unlinked graphic"
+msgstr "Незв'язаний графічний об'єкт"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.FT_SELECTOR.fixedtext.text
+msgid "A~s"
+msgstr "~Тип"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_SELECTOR.1.stringlist.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_SELECTOR.1.stringlist.text"
+msgid "Color"
+msgstr "Колір"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_SELECTOR.2.stringlist.text
+msgid "Graphic"
+msgstr "Графічний об'єкт"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.FT_TBL_DESC.fixedtext.text
+msgid "F~or"
+msgstr "~Для"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_TBL_BOX.1.stringlist.text
+msgid "Cell"
+msgstr "Комірка"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_TBL_BOX.2.stringlist.text
+msgid "Row"
+msgstr "Рядок"
+
+#: 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 "Таблиця"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_PARA_BOX.1.stringlist.text
+msgid "Paragraph"
+msgstr "Абзац"
+
+#: 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 "Символ"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.GB_BGDCOLOR.fixedline.text
+msgid "Background color"
+msgstr "Колір тла"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.FT_COL_TRANS.fixedtext.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.FT_COL_TRANS.fixedtext.text"
+msgid "~Transparency"
+msgstr "~Прозорість"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.GB_FILE.fixedline.text
+msgid "File"
+msgstr "Файл"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_BROWSE.pushbutton.text
+msgid "~Browse..."
+msgstr "О~гляд..."
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_LINK.checkbox.text
+msgid "~Link"
+msgstr "Зв'~язок з файлом"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.GB_POSITION.fixedline.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.GB_POSITION.fixedline.text"
+msgid "Type"
+msgstr "Тип"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_POSITION.radiobutton.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_POSITION.radiobutton.text"
+msgid "~Position"
+msgstr "~Позиція"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_AREA.radiobutton.text
+msgid "Ar~ea"
+msgstr "~Область"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_TILE.radiobutton.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_TILE.radiobutton.text"
+msgid "~Tile"
+msgstr "~Плитка"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.FL_GRAPH_TRANS.fixedline.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.FL_GRAPH_TRANS.fixedline.text"
+msgid "Transparency"
+msgstr "Прозорий"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_PREVIEW.checkbox.text
+msgid "Pre~view"
+msgstr "~Попередній перегляд"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.STR_BROWSE.string.text
+msgid "Find graphics"
+msgstr "Знайти графічні об'єкти"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.tabpage.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.tabpage.text"
+msgid "Background"
+msgstr "Тло"
+
+#: numpages.src#RID_SVXPAGE_PICK_BULLET.FL_VALUES.fixedline.text
+msgctxt "numpages.src#RID_SVXPAGE_PICK_BULLET.FL_VALUES.fixedline.text"
+msgid "Selection"
+msgstr "Вибір"
+
+#: 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 "Вибір"
+
+#: numpages.src#RID_SVXPAGE_PICK_NUM.FL_VALUES.fixedline.text
+msgctxt "numpages.src#RID_SVXPAGE_PICK_NUM.FL_VALUES.fixedline.text"
+msgid "Selection"
+msgstr "Вибір"
+
+#: numpages.src#RID_SVXPAGE_PICK_BMP.FL_VALUES.fixedline.text
+msgctxt "numpages.src#RID_SVXPAGE_PICK_BMP.FL_VALUES.fixedline.text"
+msgid "Selection"
+msgstr "Вибір"
+
+#: numpages.src#RID_SVXPAGE_PICK_BMP.CB_LINKED.checkbox.text
+msgid "~Link graphics"
+msgstr "~Зв'язати графічні об'єкти"
+
+#: numpages.src#RID_SVXPAGE_PICK_BMP.FT_ERROR.fixedtext.text
+msgid "The Gallery theme 'Bullets' is empty (no graphics)."
+msgstr "Тема галереї 'Маркери' порожня (немає графічних об'єктів)."
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_LEVEL.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_LEVEL.fixedtext.text"
+msgid "Level"
+msgstr "Показати рівні"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FL_FORMAT.fixedline.text
+msgid "Format"
+msgstr "Формат"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_FMT.fixedtext.text
+msgid "~Numbering"
+msgstr "~Нумерація"
+
+#: 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, В, 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
+#, fuzzy
+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 "Рисунок"
+
+#: 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 "Зображення"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.10.stringlist.text
+msgid "Linked graphics"
+msgstr "Зв'язаний графічний об'єкт"
+
+#: 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 "Немає"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.12.stringlist.text
+msgid "Native Numbering"
+msgstr "Національна нумерація"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.13.stringlist.text
+msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
+msgstr "А, Б, .., Аа, Аб, ... (болгарська)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.14.stringlist.text
+msgid "а, б, .., аа, аб, ... (Bulgarian)"
+msgstr "а, б, .., аа, аб, ... (болгарська)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.15.stringlist.text
+msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
+msgstr "А, Б, .., Аа, Бб, ... (болгарська)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.16.stringlist.text
+msgid "а, б, .., аа, бб, ... (Bulgarian)"
+msgstr "а, б, .., аа, бб, ... (болгарська)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.17.stringlist.text
+msgid "А, Б, .., Аа, Аб, ... (Russian)"
+msgstr "А, Б, .., Аа, Аб, ... (російська)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.18.stringlist.text
+msgid "а, б, .., аа, аб, ... (Russian)"
+msgstr "а, б, .., аа, аб, ... (російська)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.19.stringlist.text
+msgid "А, Б, .., Аа, Бб, ... (Russian)"
+msgstr "А, Б, .., Аа, Бб, ... (російська)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.20.stringlist.text
+msgid "а, б, .., аа, бб, ... (Russian)"
+msgstr "а, б, .., аа, бб, ... (російська)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.21.stringlist.text
+msgid "А, Б, .., Аа, Аб, ... (Serbian)"
+msgstr "А, Б, .., Аа, Аб, ... (російська)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.22.stringlist.text
+msgid "а, б, .., аа, аб, ... (Serbian)"
+msgstr "а, б, .., аа, аб, ... (російська)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.23.stringlist.text
+msgid "А, Б, .., Аа, Бб, ... (Serbian)"
+msgstr "А, Б, .., Аа, Бб, ... (російська)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.24.stringlist.text
+msgid "а, б, .., аа, бб, ... (Serbian)"
+msgstr "а, б, .., аа, бб, ... (російська)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.25.stringlist.text
+msgid "Α, Β, Γ, ... (Greek Upper Letter)"
+msgstr ""
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.26.stringlist.text
+msgid "α, β, γ, ... (Greek Lower Letter)"
+msgstr ""
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_PREFIX.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_PREFIX.fixedtext.text"
+msgid "Before"
+msgstr "Перед"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_SUFFIX.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_SUFFIX.fixedtext.text"
+msgid "After"
+msgstr "Після"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_CHARFMT.fixedtext.text
+msgid "~Character Style"
+msgstr "~Стиль символу"
+
+#: 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 "Колір"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_BUL_REL_SIZE.fixedtext.text
+msgid "~Relative size"
+msgstr "~Відносний розмір"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_ALL_LEVEL.fixedtext.text
+msgid "Show sublevels"
+msgstr "Всі рівні"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_START.fixedtext.text
+msgid "Start at"
+msgstr "Починати з"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_ALIGN.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_ALIGN.fixedtext.text"
+msgid "~Alignment"
+msgstr "~Вирівнювання"
+
+#: 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 "Ліворуч"
+
+#: 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 "У центрі"
+
+#: 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 "Праворуч"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.STR_BULLET.string.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.STR_BULLET.string.text"
+msgid "Character"
+msgstr "Символ"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_BITMAP.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_BITMAP.fixedtext.text"
+msgid "Graphics"
+msgstr "Зображення"
+
+#: 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 "З файлу..."
+
+#: 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 "Галерея"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.MB_BITMAP.menubutton.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.MB_BITMAP.menubutton.text"
+msgid "Select..."
+msgstr "Вибрати..."
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_SIZE.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_SIZE.fixedtext.text"
+msgid "Width"
+msgstr "Ширина"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_MULT.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_MULT.fixedtext.text"
+msgid "Height"
+msgstr "Висота"
+
+#: 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 "Пропорційно"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_ORIENT.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_ORIENT.fixedtext.text"
+msgid "Alignment"
+msgstr "Вирівнювання"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.1.stringlist.text
+msgid "Top of baseline"
+msgstr "Основна лінія згори"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.2.stringlist.text
+msgid "Center of baseline"
+msgstr "Основна лінія у центрі"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.3.stringlist.text
+msgid "Bottom of baseline"
+msgstr "Основна лінія знизу"
+
+#: 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 "Символ згори"
+
+#: 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 "Символ у центрі"
+
+#: 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 "Символ знизу"
+
+#: 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 "Рядок зверху"
+
+#: 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 "Рядок у центрі"
+
+#: 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 "Рядок знизу"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FL_SAME_LEVEL.fixedline.text
+msgid "All levels"
+msgstr "Усі рівні"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.CB_SAME_LEVEL.checkbox.text
+msgid "~Consecutive numbering"
+msgstr "~Послідовна нумерація"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.ST_POPUP_EMPTY_ENTRY.string.text
+msgid "There are no graphics in the 'Bullets' Gallery theme."
+msgstr "В темі Галереї 'Маркери' відсутні графічні об'єкти."
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_LEVEL.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_POSITION.FT_LEVEL.fixedtext.text"
+msgid "Level"
+msgstr "Показати рівні"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FL_POSITION.fixedline.text
+msgid "Position and spacing"
+msgstr "Розташування та інтервал"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_BORDERDIST.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_POSITION.FT_BORDERDIST.fixedtext.text"
+msgid "Indent"
+msgstr "Відступ"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.CB_RELATIVE.checkbox.text
+msgid "Relati~ve"
+msgstr "~Відносно"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_INDENT.fixedtext.text
+msgid "Width of numbering"
+msgstr "Ширина нумерації"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_NUMDIST.fixedtext.text
+msgid "Minimum space numbering <-> text"
+msgstr "Мінімальна відстань номер <-> текст"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_ALIGN.fixedtext.text
+msgid "N~umbering alignment"
+msgstr "~Вирівнювання нумерації"
+
+#: 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 "Зліва"
+
+#: 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 "У центрі"
+
+#: 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 "Праворуч"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_LABEL_FOLLOWED_BY.fixedtext.text
+msgid "Numbering followed by"
+msgstr "Нумерація слідує за"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.LB_LABEL_FOLLOWED_BY.1.stringlist.text
+msgid "Tab stop"
+msgstr "Шаг табуляції"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.LB_LABEL_FOLLOWED_BY.2.stringlist.text
+msgid "Space"
+msgstr "Космос"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.LB_LABEL_FOLLOWED_BY.3.stringlist.text
+msgid "Nothing"
+msgstr "Нічого"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_LISTTAB.fixedtext.text
+msgid "at"
+msgstr "на"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_ALIGNED_AT.fixedtext.text
+msgid "Aligned at"
+msgstr "Вирівнювання"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_INDENT_AT.fixedtext.text
+msgid "Indent at"
+msgstr "Початок відступу"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.PB_STANDARD.pushbutton.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_POSITION.PB_STANDARD.pushbutton.text"
+msgid "Default"
+msgstr "Типово"
+
+#: numpages.src#RID_STR_EDIT_GRAPHIC.string.text
+msgid "Link"
+msgstr "Посилання"
+
+#: strings.src#RID_SVXSTR_DESC_GRADIENT.string.text
+msgid "Please enter a name for the gradient:"
+msgstr "Введіть назву градієнту:"
+
+#: strings.src#RID_SVXSTR_ASK_DEL_GRADIENT.string.text
+msgid "Do you want to delete the gradient?"
+msgstr "Видалити градієнт?"
+
+#: 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 ""
+"Градієнт був змінений без збереження. \n"
+"Змініть вибраний градієнт або додайте новий градієнт."
+
+#: strings.src#RID_SVXSTR_DESC_NEW_BITMAP.string.text
+msgid "Please enter a name for the bitmap:"
+msgstr "Введіть назву растрового зображення:"
+
+#: strings.src#RID_SVXSTR_DESC_EXT_BITMAP.string.text
+msgid "Please enter a name for the external bitmap:"
+msgstr "Введіть назву зовнішнього растрового зображення:"
+
+#: strings.src#RID_SVXSTR_ASK_DEL_BITMAP.string.text
+msgid "Are you sure you want to delete the bitmap?"
+msgstr "Ви справді хочете видалити це растрове зображення?"
+
+#: 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 ""
+"Растрове зображення змінено, але не збережено. \n"
+"Змініть вибране зображення або додайте нове."
+
+#: strings.src#RID_SVXSTR_DESC_LINESTYLE.string.text
+msgid "Please enter a name for the line style:"
+msgstr "Введіть назву стилю лінії:"
+
+#: strings.src#RID_SVXSTR_ASK_DEL_LINESTYLE.string.text
+msgid "Do you want to delete the line style?"
+msgstr "Видалити стиль лінії?"
+
+#: 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 ""
+"Тип лінії був змінений без збереження. \n"
+"Змініть вибраний тип або додайте новий стиль лінії."
+
+#: strings.src#RID_SVXSTR_DESC_HATCH.string.text
+msgid "Please enter a name for the hatching:"
+msgstr "Введіть назву нового штрихування:"
+
+#: strings.src#RID_SVXSTR_ASK_DEL_HATCH.string.text
+msgid "Do you want to delete the hatching?"
+msgstr "Видалити штрихування?"
+
+#: 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 ""
+"Тип штрихування був змінений без збереження. \n"
+"Змініть тип штрихування або додайте новий тип штрихування."
+
+#: strings.src#RID_SVXSTR_CHANGE.string.text
+msgid "Modify"
+msgstr "Змінити"
+
+#: strings.src#RID_SVXSTR_ADD.string.text
+msgctxt "strings.src#RID_SVXSTR_ADD.string.text"
+msgid "Add"
+msgstr "Додати"
+
+#: strings.src#RID_SVXSTR_DESC_COLOR.string.text
+msgid "Please enter a name for the new color:"
+msgstr "Введіть назву нового кольору:"
+
+#: strings.src#RID_SVXSTR_ASK_DEL_COLOR.string.text
+msgid "Do you want to delete the color?"
+msgstr "Видалити колір?"
+
+#: 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 ""
+"Колір було змінено без збереження.\n"
+"Змініть вибраний колір або додайте новий колір."
+
+#: strings.src#RID_SVXSTR_TABLE.string.text
+msgctxt "strings.src#RID_SVXSTR_TABLE.string.text"
+msgid "Table"
+msgstr "Таблиця"
+
+#: strings.src#RID_SVXSTR_WRITE_DATA_ERROR.string.text
+msgid "The file could not be saved!"
+msgstr "Не вдається зберегти файл!"
+
+#: strings.src#RID_SVXSTR_READ_DATA_ERROR.string.text
+msgid "The file could not be loaded!"
+msgstr "Не вдається завантажити файл!"
+
+#: 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 ""
+"Таблицю було змінено без збереження. \n"
+"Зберегти таблицю?"
+
+#: strings.src#RID_SVXSTR_WARN_NAME_DUPLICATE.string.text
+msgid ""
+"The name you have entered already exists. \n"
+"Please choose another name."
+msgstr ""
+"Введена назва вже існує. \n"
+"Виберіть іншу назву."
+
+#: strings.src#RID_SVXSTR_DESC_LINEEND.string.text
+msgid "Please enter a name for the new arrowhead:"
+msgstr "Введіть назву нової розмірної стрілки:"
+
+#: strings.src#RID_SVXSTR_ASK_DEL_LINEEND.string.text
+msgid "Do you want to delete the arrowhead?"
+msgstr "Видалити розмірну стрілку?"
+
+#: 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 ""
+"Розмірна стрілку змінено без збереження.\n"
+"Зберегти розмірну стрілку?"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FL_ALIGNMENT.fixedline.text
+msgid "Text alignment"
+msgstr "Вирівнювання тексту"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FT_HORALIGN.fixedtext.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.FT_HORALIGN.fixedtext.text"
+msgid "Hori~zontal"
+msgstr "~Горизонтально"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.1.stringlist.text
+#, fuzzy
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.1.stringlist.text"
+msgid "Default"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Типово\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Типово\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Типово\n"
+"#-#-#-#-# options.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Типово\n"
+"#-#-#-#-# dlged.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Типова\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандарт\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Типово"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.2.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.2.stringlist.text"
+msgid "Left"
+msgstr "Ліворуч"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.3.stringlist.text
+msgid "Center"
+msgstr "У центрі"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.4.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.4.stringlist.text"
+msgid "Right"
+msgstr "Праворуч"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.5.stringlist.text
+#, fuzzy
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.5.stringlist.text"
+msgid "Justified"
+msgstr ""
+"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"У ширину\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"У ширину\n"
+"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"По ширині"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.6.stringlist.text
+msgid "Filled"
+msgstr "Заповнення"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.7.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.7.stringlist.text"
+msgid "Distributed"
+msgstr "Поставка"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FT_INDENT.fixedtext.text
+msgid "I~ndent"
+msgstr "~Відступ"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FT_VERALIGN.fixedtext.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.FT_VERALIGN.fixedtext.text"
+msgid "~Vertical"
+msgstr "~Вертикально"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.1.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.1.stringlist.text"
+msgid "Default"
+msgstr "Типово"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.2.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.2.stringlist.text"
+msgid "Top"
+msgstr "Згори"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.3.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.3.stringlist.text"
+msgid "Middle"
+msgstr "Посередині"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.4.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.4.stringlist.text"
+msgid "Bottom"
+msgstr "Знизу"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.5.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.5.stringlist.text"
+msgid "Justified"
+msgstr "Вирівняно"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.6.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.6.stringlist.text"
+msgid "Distributed"
+msgstr "Поставка"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FL_ORIENTATION.fixedline.text
+msgid "Text orientation"
+msgstr "Напрямок тексту"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.BTN_TXTSTACKED.tristatebox.text
+msgid "Ve~rtically stacked"
+msgstr "З накопиченням по ~вертикалі"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FT_DEGREES.fixedtext.text
+msgid "De~grees"
+msgstr "~Нахил,градусів"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FT_BORDER_LOCK.fixedtext.text
+msgid "Re~ference edge"
+msgstr "~Межа посилання"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.BTN_ASIAN_VERTICAL.tristatebox.text
+msgid "Asian layout ~mode"
+msgstr "Використовувати азіатський ~режим вертикального розміщення тексту"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FL_WRAP.fixedline.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.FL_WRAP.fixedline.text"
+msgid "Properties"
+msgstr "Властивості"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.BTN_WRAP.tristatebox.text
+msgid "~Wrap text automatically"
+msgstr "~Переносити по словам"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.BTN_HYPH.tristatebox.text
+msgid "Hyphenation ~active"
+msgstr "Переносити по ~складах"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.BTN_SHRINK.tristatebox.text
+msgid "~Shrink to fit cell size"
+msgstr "~Зменшити за розміром комірки"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FT_TEXTFLOW.fixedtext.text
+msgid "Te~xt direction"
+msgstr "Напрямок ~тексту"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.STR_BOTTOMLOCK.string.text
+msgid "Text Extension From Lower Cell Border"
+msgstr "Розтягування тексту від нижнього канту комірки"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.STR_TOPLOCK.string.text
+msgid "Text Extension From Upper Cell Border"
+msgstr "Розтягування тексту від верхнього канту комірки"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.STR_CELLLOCK.string.text
+msgid "Text Extension Inside Cell"
+msgstr "Розширення тексту всередині комірки"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.tabpage.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.tabpage.text"
+msgid "Alignment"
+msgstr "Вирівнювання"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FL_WEST.fixedline.text
+msgid "Western text font"
+msgstr "Шрифт західного тексту"
+
+#: 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 "Звичайний"
+
+#: 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 "Курсив"
+
+#: 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 "Жирний"
+
+#: 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 "Жирний курсив"
+
+#: 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 "Звичайний"
+
+#: 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 "Курсив"
+
+#: 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 "Жирний"
+
+#: 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 "Жирний курсив"
+
+#: 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 "~Розмір"
+
+#: 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 "~Розмір"
+
+#: 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 "~Мова"
+
+#: 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 "~Мова"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FL_EAST.fixedline.text
+msgid "Asian text font"
+msgstr "Шрифт азіатського тексту"
+
+#: 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 "Звичайний"
+
+#: 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 "Курсив"
+
+#: 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 "Жирний"
+
+#: 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 "Жирний курсив"
+
+#: 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 "~Розмір"
+
+#: 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 "~Мова"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FL_CTL.fixedline.text
+msgid "CTL font"
+msgstr "Шрифт для складних систем письменності"
+
+#: 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 "Звичайний"
+
+#: 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 "Курсив"
+
+#: 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 "Жирний"
+
+#: 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 "Жирний курсив"
+
+#: 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 "~Розмір"
+
+#: 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 "~Мова"
+
+#: 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 "Приклад"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FL_COLOR2.fixedline.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.FL_COLOR2.fixedline.text"
+msgid "Color"
+msgstr "Колір"
+
+#: 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 "Колір ~шрифту"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_NOSTYLE.string.text
+msgid "No %1"
+msgstr "Не %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 "Прозорий"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_FAMILY.string.text
+#, fuzzy
+msgid "Family"
+msgstr "Тамільська"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_FONT.string.text
+#, fuzzy
+msgid "Font"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Шрифт\n"
+"#-#-#-#-# inspection.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Набір символів\n"
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Шрифт\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Шрифт\n"
+"#-#-#-#-# styleui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Шрифт\n"
+"#-#-#-#-# options.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Шрифт\n"
+"#-#-#-#-# animations.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Шрифт\n"
+"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Шрифт\n"
+"#-#-#-#-# form.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Шрифт\n"
+"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Шрифт"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_STYLE.string.text
+#, fuzzy
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_STYLE.string.text"
+msgid "Style"
+msgstr "Стиль"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_TYPEFACE.string.text
+msgid "Typeface"
+msgstr "Креслення"
+
+#: 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 "Колір ~шрифту"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_EFFECTS.fixedtext.text
+msgid "~Effects"
+msgstr ""
+
+#: 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 "(немає)"
+
+#: 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 "Великі літери"
+
+#: 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 "Малі літери"
+
+#: 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 "Капіталізація"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EFFECTS2.5.stringlist.text
+msgid "Small capitals"
+msgstr "Маленькі у верхньому регістрі"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_RELIEF.fixedtext.text
+msgid "~Relief"
+msgstr "~Рельєф"
+
+#: 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 "(немає)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_RELIEF.2.stringlist.text
+msgid "Embossed"
+msgstr "Піднесений"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_RELIEF.3.stringlist.text
+msgid "Engraved"
+msgstr "Утоплений"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.CB_OUTLINE.tristatebox.text
+msgid "Out~line"
+msgstr "~Контур"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.CB_SHADOW.tristatebox.text
+msgid "Sha~dow"
+msgstr "Тінь"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.CB_BLINKING.tristatebox.text
+msgid "~Blinking"
+msgstr "~Блимання"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.CB_CHARHIDDEN.tristatebox.text
+msgid "H~idden"
+msgstr "С~хований"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_OVERLINE.fixedtext.text
+msgid "~Overlining"
+msgstr ""
+
+#: 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 "(немає)"
+
+#: 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 "Звичайне"
+
+#: 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 "Подвійне"
+
+#: 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 "Жирний"
+
+#: 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 "Пунктир"
+
+#: 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 "Пунктир (жирний)"
+
+#: 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 "Штрих"
+
+#: 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 "Штрих (жирний)"
+
+#: 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 "Довгий штрих"
+
+#: 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 "Довгий штрих (жирний)"
+
+#: 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 "Штрих-пунктир"
+
+#: 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 "Штрих-пунктир (жирний)"
+
+#: 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 "Штрих-пунктир з 2 точками"
+
+#: 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 "Штрих-пунктир з 2 точками (жирний)"
+
+#: 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 "Хвиля"
+
+#: 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 "Хвиля (жирна)"
+
+#: 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 "Подвійна хвиля"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_OVERLINE_COLOR.fixedtext.text
+msgid "O~verline color"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_STRIKEOUT.fixedtext.text
+msgid "~Strikethrough"
+msgstr ""
+
+#: 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 "(немає)"
+
+#: 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 "Звичайне"
+
+#: 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 "Подвійне"
+
+#: 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 "Жирний"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_STRIKEOUT.5.stringlist.text
+msgid "With /"
+msgstr "Символом: /"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_STRIKEOUT.6.stringlist.text
+msgid "With X"
+msgstr "Символом: X"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_UNDERLINE.fixedtext.text
+msgid "~Underlining"
+msgstr ""
+
+#: 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 "(немає)"
+
+#: 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 "Звичайне"
+
+#: 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 "Подвійне"
+
+#: 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 "Жирний"
+
+#: 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 "Пунктир"
+
+#: 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 "Пунктир (жирний)"
+
+#: 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 "Штрих"
+
+#: 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 "Штрих (жирний)"
+
+#: 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 "Довгий штрих"
+
+#: 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 "Довгий штрих (жирний)"
+
+#: 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 "Штрих-пунктир"
+
+#: 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 "Штрих-пунктир (жирний)"
+
+#: 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 "Штрих-пунктир з 2 точками"
+
+#: 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 "Штрих-пунктир з 2 точками (жирний)"
+
+#: 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 "Хвиля"
+
+#: 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 "Хвиля (жирна)"
+
+#: 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 "Подвійна хвиля"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_UNDERLINE_COLOR.fixedtext.text
+msgid "U~nderline color"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.CB_INDIVIDUALWORDS.checkbox.text
+msgid "Individual ~words"
+msgstr "~Лише слова"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_EMPHASIS.fixedtext.text
+msgid "Emp~hasis mark"
+msgstr "~Діакритичний знак"
+
+#: 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 "(немає)"
+
+#: 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 "Точка"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EMPHASIS.3.stringlist.text
+msgid "Circle"
+msgstr "Коло"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EMPHASIS.4.stringlist.text
+msgid "Disc"
+msgstr "Диск"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EMPHASIS.5.stringlist.text
+msgid "Accent"
+msgstr "Акцент"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_POSITION.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_POSITION.fixedtext.text"
+msgid "~Position"
+msgstr "~Позиція"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_POSITION.1.stringlist.text
+msgid "Above text"
+msgstr "Над текстом"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_POSITION.2.stringlist.text
+msgid "Below text"
+msgstr "Під текстом"
+
+#: 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 "Приклад"
+
+#: 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 "Великі літери"
+
+#: 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 "Малі літери"
+
+#: 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 "Капіталізація"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_SMALL.string.text
+msgid "Small Capitals"
+msgstr "Капітель"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_OUTLINE.string.text
+msgid "Outline"
+msgstr "~Контур"
+
+#: 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 "Тінь"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_BLINKING.string.text
+msgid "Blinking"
+msgstr "Блимання"
+
+#: 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 "Прозорий"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FL_POSITION.fixedline.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_POSITION.FL_POSITION.fixedline.text"
+msgid "Position"
+msgstr "~Положення"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_HIGHPOS.radiobutton.text
+msgid "Superscript"
+msgstr "Вер~хній індекс"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_NORMALPOS.radiobutton.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_NORMALPOS.radiobutton.text"
+msgid "Normal"
+msgstr "Звичайний"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_LOWPOS.radiobutton.text
+msgid "Subscript"
+msgstr "Ни~жній індекс"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FT_HIGHLOW.fixedtext.text
+msgid "~Raise/lower by"
+msgstr "~Зміщувати на"
+
+#: 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 "~Автоматично"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FT_FONTSIZE.fixedtext.text
+msgid "Relative font size"
+msgstr "Мас~штаб шрифту"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FL_ROTATION_SCALING.fixedline.text
+msgid "Rotation / scaling"
+msgstr "Обертання / масштаб"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FL_SCALING.fixedline.text
+msgid "Scaling"
+msgstr "Зміна масштабу"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_0_DEG.radiobutton.text
+msgid "~0 degrees"
+msgstr "~0 градусів"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_90_DEG.radiobutton.text
+msgid "~90 degrees"
+msgstr "~90 градусів"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_270_DEG.radiobutton.text
+msgid "~270 degrees"
+msgstr "~270 градусів"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.CB_FIT_TO_LINE.checkbox.text
+msgid "Fit to line"
+msgstr "~Вмістити у рядку"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FT_SCALE_WIDTH.fixedtext.text
+msgid "Scale ~width"
+msgstr "~Масштаб у ширину"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FL_KERNING2.fixedline.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_POSITION.FL_KERNING2.fixedline.text"
+msgid "Spacing"
+msgstr "Міжсимвольний інтервал"
+
+#: 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 "Типово"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.LB_KERNING2.2.stringlist.text
+msgid "Expanded"
+msgstr "Розріджений"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.LB_KERNING2.3.stringlist.text
+msgid "Condensed"
+msgstr "Ущільнений"
+
+#: 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 "~на"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.CB_PAIRKERNING.checkbox.text
+msgid "~Pair kerning"
+msgstr "~Парний кернінг"
+
+#: 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 "Приклад"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.FL_SWITCHON.fixedline.text
+msgid "Double-lined"
+msgstr "Набір у два рядки"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.CB_TWOLINES.checkbox.text
+msgid "~Write in double lines"
+msgstr "~Набрати у два рядки"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.FL_ENCLOSE.fixedline.text
+msgid "Enclosing character"
+msgstr "Символи обрамлення"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.FT_STARTBRACKET.fixedtext.text
+msgid "I~nitial character"
+msgstr "По~чатковий символ"
+
+#: 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 "(немає)"
+
+#: 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 "Інші символи..."
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.FT_ENDBRACKET.fixedtext.text
+msgid "Final charact~er"
+msgstr "~Кінцевий символ"
+
+#: 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 "(немає)"
+
+#: 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 "Інші символи..."
+
+#: 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 "Приклад"
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_AUTOCORR_REPLACE.pageitem.text
+msgid "Replace"
+msgstr "Замінити"
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_AUTOCORR_EXCEPT.pageitem.text
+msgid "Exceptions"
+msgstr "Винятки"
+
+#: 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 "Параметри"
+
+#: 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 "Параметри"
+
+#: 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 ""
+
+#: 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 "Доповнення слова"
+
+#: 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 "Смарт-теги"
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.FT_LANG.fixedtext.text
+msgid "Replacements and exceptions for language:"
+msgstr "Заміни та винятки для мови:"
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.tabdialog.text
+msgid "AutoCorrect"
+msgstr "Автозаміна"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_USE_REPLACE.string.text
+msgid "Use replacement table"
+msgstr "Застосувати таблицю замін"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_CPTL_STT_WORD.string.text
+msgid "Correct TWo INitial CApitals"
+msgstr "Виправляти ДВі ВЕликі літери на початку слова"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_CPTL_STT_SENT.string.text
+msgid "Capitalize first letter of every sentence"
+msgstr "Починати кожну пропозицію з великої літери"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_BOLD_UNDER.string.text
+msgid "Automatic *bold* and _underline_"
+msgstr "Автоматично виділяти *жирним* та _підкресленням_"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.STR_NO_DBL_SPACES.string.text
+msgid "Ignore double spaces"
+msgstr "Пропускати подвійні пробіли"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_DETECT_URL.string.text
+msgid "URL Recognition"
+msgstr "Розпізнавати URL"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_DASH.string.text
+msgid "Replace dashes"
+msgstr "Замінювати дефіси"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_CORRECT_ACCIDENTAL_CAPS_LOCK.string.text
+msgid "Correct accidental use of cAPS LOCK key"
+msgstr "Виправляти випадкове натискання cAPS LOCK"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_OPTIONS.tabpage.text
+msgid "Settings"
+msgstr "Параметри"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.PB_EDIT.pushbutton.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.PB_EDIT.pushbutton.text"
+msgid "~Edit..."
+msgstr "~Редагування..."
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_HEADER1.string.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_HEADER1.string.text"
+msgid "[M]"
+msgstr "[І]"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_HEADER2.string.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_HEADER2.string.text"
+msgid "[T]"
+msgstr "[В]"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.FT_HEADER1_EXPLANATION.fixedtext.text
+msgid "[M]: Replace while modifying existing text"
+msgstr "[M]: Замінювати при зміні існуючого тексту"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.FT_HEADER2_EXPLANATION.fixedtext.text
+msgid "[T]: AutoFormat/AutoCorrect while typing"
+msgstr "[T]: Автоформат/автозаміна при наборі нового тексту"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.ST_DEL_EMPTY_PARA.string.text
+msgid "Remove blank paragraphs"
+msgstr "Видаляти порожні абзаци"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.ST_USER_STYLE.string.text
+msgid "Replace Custom Styles"
+msgstr "Замінювати стилі користувача"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.ST_BULLET.string.text
+msgid "Replace bullets with: "
+msgstr "Замінювати маркери на:"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.ST_RIGHT_MARGIN.string.text
+msgid "Combine single line paragraphs if length greater than"
+msgstr "Об’єднати однорядкові абзаци з"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_NUM.string.text
+msgid "Apply numbering - symbol: "
+msgstr "Застосовувати нумерацію - символ:"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_BORDER.string.text
+msgid "Apply border"
+msgstr "Застосувати обрамлення"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_TABLE.string.text
+msgid "Create table"
+msgstr "Створити таблицю"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_REPLACE_TEMPLATES.string.text
+msgid "Apply Styles"
+msgstr "Застосувати стилі"
+
+#: 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 "Видаляти пробіли та табуляції на початку та в кінці абзацу"
+
+#: 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 "Видаляти пропуски та табуляції в кінці та початку рядка"
+
+#: autocdlg.src#RID_OFADLG_PRCNT_SET.FL_PRCNT.fixedline.text
+msgid "Minimum size"
+msgstr "Мінімальний розмір"
+
+#: autocdlg.src#RID_OFADLG_PRCNT_SET.modaldialog.text
+msgid "Combine"
+msgstr "Об'єднувати"
+
+#: 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 "~Замінити"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.FT_REPLACE.fixedtext.text
+msgid "~With:"
+msgstr "Замінити н~а:"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.CB_TEXT_ONLY.checkbox.text
+msgid "~Text only"
+msgstr "~Лише текст"
+
+#: 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 "~Встановити"
+
+#: 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 "В~идалити"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.STR_MODIFY.string.text
+msgid "~Replace"
+msgstr "~Замінити"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.FL_ABBREV.fixedline.text
+msgid "Abbreviations (no subsequent capital)"
+msgstr "Скорочення, після яких не слідують великі літери"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.PB_NEWABBREV.pushbutton.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.PB_NEWABBREV.pushbutton.text"
+msgid "~New"
+msgstr "~Встановити"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.PB_DELABBREV.pushbutton.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.PB_DELABBREV.pushbutton.text"
+msgid "~Delete"
+msgstr "В~идалити"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.CB_AUTOABBREV.checkbox.text
+msgid "~AutoInclude"
+msgstr "~Включати автоматично"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.FL_DOUBLECAPS.fixedline.text
+msgid "Words with TWo INitial CApitals"
+msgstr "Слова, що починаються ДВома ВЕликими літерами"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.PB_NEWDOUBLECAPS.pushbutton.text
+msgid "Ne~w"
+msgstr "~Додати"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.PB_DELDOUBLECAPS.pushbutton.text
+msgid "Dele~te"
+msgstr "В~идалити"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.CB_AUTOCAPS.checkbox.text
+msgid "A~utoInclude"
+msgstr "Включати ~автоматично"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.STR_PB_NEWABBREV.string.text
+#, fuzzy
+msgid "New abbreviations"
+msgstr "Абревіатура"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.STR_PB_DELABBREV.string.text
+#, fuzzy
+msgid "Delete abbreviations"
+msgstr "Параметри видалення"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.STR_PB_NEWDOUBLECAPS.string.text
+#, fuzzy
+msgid "New words with two initial capitals"
+msgstr "Слова, що починаються ДВома ВЕликими літерами"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.STR_PB_DELDOUBLECAPS.string.text
+#, fuzzy
+msgid "Delete words with two initial capitals"
+msgstr "Слова, що починаються ДВома ВЕликими літерами"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_HEADER1.string.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_HEADER1.string.text"
+msgid "[M]"
+msgstr "[І]"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_HEADER2.string.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_HEADER2.string.text"
+msgid "[T]"
+msgstr "[В]"
+
+#: 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 ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.ST_ORDINAL.string.text
+msgid "Format ordinal numbers suffixes (1st -> 1^st)"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.FL_SINGLE.fixedline.text
+msgid "Single quotes"
+msgstr "Одинарні лапки"
+
+#: 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 "~Замінити"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.FT_SGL_STARTQUOTE.fixedtext.text
+msgid "~Start quote:"
+msgstr "~Початкові лапки:"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.FT_SGL_ENDQUOTE.fixedtext.text
+msgid "~End quote:"
+msgstr "~Кінцеві лапки:"
+
+#: 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 "~Типово"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.FL_DOUBLE.fixedline.text
+msgid "Double quotes"
+msgstr "Подвійні лапки"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.CB_TYPO.checkbox.text
+msgid "Repl~ace"
+msgstr "~Замінити"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.FT_STARTQUOTE.fixedtext.text
+msgid "Start q~uote:"
+msgstr "Початкові ~лапки:"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.FT_ENDQUOTE.fixedtext.text
+msgid "E~nd quote:"
+msgstr "~Кінцеві лапки:"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.PB_DBL_STD.pushbutton.text
+msgid "De~fault"
+msgstr "~Типово"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_CHANGE_START.string.text
+msgid "Start quote"
+msgstr "Початкові лапки"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_CHANGE_END.string.text
+msgid "End quote"
+msgstr "Кінцеві лапки"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.ST_STANDARD.string.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.ST_STANDARD.string.text"
+msgid "Default"
+msgstr "Типово"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_PB_SGL_STD.string.text
+#, fuzzy
+msgid "Single quotes default"
+msgstr "Одинарні лапки"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_PB_DBL_STD.string.text
+#, fuzzy
+msgid "Double quotes default"
+msgstr "Подвійні лапки"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_PB_SGL_START.string.text
+#, fuzzy
+msgid "Start quote of single quotes"
+msgstr "Одинарні лапки"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_PB_DBL_START.string.text
+#, fuzzy
+msgid "Start quote of double quotes"
+msgstr "Одинарні лапки"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_PB_SGL_END.string.text
+#, fuzzy
+msgid "End quote of single quotes"
+msgstr "Одинарні лапки"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_PB_DBL_END.string.text
+#, fuzzy
+msgid "End quote of double quotes"
+msgstr "Подвійні лапки"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.tabpage.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.tabpage.text"
+msgid "Localized Options"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.CB_ACTIV.checkbox.text
+msgid "Enable word ~completion"
+msgstr "~Доповнювати слова"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.CB_APPEND_SPACE.checkbox.text
+msgid "~Append space"
+msgstr "~Додати пробіл"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.CB_AS_TIP.checkbox.text
+msgid "~Show as tip"
+msgstr "~Показувати як підказку"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.CB_COLLECT.checkbox.text
+msgid "C~ollect words"
+msgstr "~Збирати слова"
+
+#: 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 ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.FT_EXPAND_KEY.fixedtext.text
+msgid "Acc~ept with"
+msgstr "~Приймати автозаміну при натисканні"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.FT_MIN_WORDLEN.fixedtext.text
+msgid "Mi~n. word length"
+msgstr "~Мінімальна довжина слова"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.FT_MAX_ENTRIES.fixedtext.text
+msgid "~Max. entries"
+msgstr "~Максимум записів"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.PB_ENTRIES.pushbutton.text
+msgid "~Delete Entry"
+msgstr "В~идалити запис"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.tabpage.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.tabpage.text"
+msgid "Word Completion"
+msgstr "Доповнення слова"
+
+#: autocdlg.src#RID_OFAPAGE_SMARTTAG_OPTIONS.CB_SMARTTAGS.checkbox.text
+msgid "Label text with smart tags"
+msgstr "Позначити текст смарт-тегами"
+
+#: autocdlg.src#RID_OFAPAGE_SMARTTAG_OPTIONS.FT_SMARTTAGS.fixedtext.text
+msgid "Currently installed smart tags"
+msgstr "Встановлені смарт-теги"
+
+#: autocdlg.src#RID_OFAPAGE_SMARTTAG_OPTIONS.PB_SMARTTAGS.pushbutton.text
+msgid "Properties..."
+msgstr "Властивості..."
+
+#: autocdlg.src#RID_OFAPAGE_SMARTTAG_OPTIONS.tabpage.text
+msgctxt "autocdlg.src#RID_OFAPAGE_SMARTTAG_OPTIONS.tabpage.text"
+msgid "Smart Tags"
+msgstr "Смарт-теги"
+
+#: page.src#RID_SVXPAGE_PAGE.FL_PAPER_SIZE.fixedline.text
+msgid "Paper format"
+msgstr "Формат паперу"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_PAPER_FORMAT.fixedtext.text
+msgid "~Format"
+msgstr "Фор~мат"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_PAPER_WIDTH.fixedtext.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.FT_PAPER_WIDTH.fixedtext.text"
+msgid "~Width"
+msgstr "~Ширина"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_PAPER_HEIGHT.fixedtext.text
+msgid "~Height"
+msgstr "~Висота"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_ORIENTATION.fixedtext.text
+msgid "Orientation"
+msgstr "Орієнтація"
+
+#: page.src#RID_SVXPAGE_PAGE.RB_PORTRAIT.radiobutton.text
+msgid "~Portrait"
+msgstr "~Книжна"
+
+#: page.src#RID_SVXPAGE_PAGE.RB_LANDSCAPE.radiobutton.text
+msgid "L~andscape"
+msgstr "~Альбомна"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_TEXT_FLOW.fixedtext.text
+msgid "~Text direction"
+msgstr "Напрямок ~тексту"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_PAPER_TRAY.fixedtext.text
+msgid "Paper ~tray"
+msgstr "~Подача паперу"
+
+#: page.src#RID_SVXPAGE_PAGE.FL_MARGIN.fixedline.text
+msgid "Margins"
+msgstr "Поля"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_LEFT_MARGIN.fixedtext.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.FT_LEFT_MARGIN.fixedtext.text"
+msgid "~Left"
+msgstr "~Ліворуч"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_RIGHT_MARGIN.fixedtext.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.FT_RIGHT_MARGIN.fixedtext.text"
+msgid "~Right"
+msgstr "~Праворуч"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_TOP_MARGIN.fixedtext.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.FT_TOP_MARGIN.fixedtext.text"
+msgid "~Top"
+msgstr "З~гори"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_BOTTOM_MARGIN.fixedtext.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.FT_BOTTOM_MARGIN.fixedtext.text"
+msgid "~Bottom"
+msgstr "З~низу"
+
+#: page.src#RID_SVXPAGE_PAGE.FL_LAYOUT.fixedline.text
+msgid "Layout settings"
+msgstr "Параметри розмітки"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_PAGELAYOUT.fixedtext.text
+msgid "Page layout"
+msgstr "Розмітка сторінки"
+
+#: page.src#RID_SVXPAGE_PAGE.LB_LAYOUT.1.stringlist.text
+msgid "Right and left"
+msgstr "Справа та зліва"
+
+#: page.src#RID_SVXPAGE_PAGE.LB_LAYOUT.2.stringlist.text
+msgid "Mirrored"
+msgstr "Дзеркально"
+
+#: page.src#RID_SVXPAGE_PAGE.LB_LAYOUT.3.stringlist.text
+msgid "Only right"
+msgstr "Лише праворуч"
+
+#: page.src#RID_SVXPAGE_PAGE.LB_LAYOUT.4.stringlist.text
+msgid "Only left"
+msgstr "Лише ліворуч"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_NUMBER_FORMAT.fixedtext.text
+msgid "For~mat"
+msgstr "Фор~мат"
+
+#: page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.1.stringlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.1.stringlist.text"
+msgid "A, B, C, ..."
+msgstr "A, В, 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
+#, fuzzy
+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
+#, fuzzy
+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
+#, fuzzy
+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 "Немає"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_TBL_ALIGN.fixedtext.text
+msgid "Table alignment"
+msgstr "Вирівнювання таблиці"
+
+#: page.src#RID_SVXPAGE_PAGE.CB_HORZ.checkbox.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.CB_HORZ.checkbox.text"
+msgid "Hori~zontal"
+msgstr "~Горизонтально"
+
+#: page.src#RID_SVXPAGE_PAGE.CB_VERT.checkbox.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.CB_VERT.checkbox.text"
+msgid "~Vertical"
+msgstr "~Вертикально"
+
+#: page.src#RID_SVXPAGE_PAGE.CB_ADAPT.checkbox.text
+msgid "~Fit object to paper format"
+msgstr "~Узгодити об'єкт з форматом паперу"
+
+#: page.src#RID_SVXPAGE_PAGE.CB_REGISTER.checkbox.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.CB_REGISTER.checkbox.text"
+msgid "Register-true"
+msgstr "Приведення"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_REGISTER.fixedtext.text
+msgid "Reference ~Style"
+msgstr "~Стиль посилань"
+
+#: page.src#RID_SVXPAGE_PAGE.STR_INSIDE.string.text
+msgid "I~nner"
+msgstr "~Всередині"
+
+#: page.src#RID_SVXPAGE_PAGE.STR_OUTSIDE.string.text
+msgid "O~uter"
+msgstr "~Зовні"
+
+#: 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 ""
+"Поля виходять за діапазон друку.\n"
+"\n"
+"Застосувати параметри попри все?"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.1.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.1.itemlist.text"
+msgid "A6"
+msgstr "A"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.2.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.2.itemlist.text"
+msgid "A5"
+msgstr "A"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.3.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.3.itemlist.text"
+msgid "A4"
+msgstr "A4"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.4.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.4.itemlist.text"
+msgid "A3"
+msgstr "A"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.5.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.5.itemlist.text"
+msgid "B6 (ISO)"
+msgstr "B5 (ISO)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.6.itemlist.text
+#, fuzzy
+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
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.7.itemlist.text"
+msgid "B4 (ISO)"
+msgstr "B5 (ISO)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.8.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.8.itemlist.text"
+msgid "Letter"
+msgstr "Лист"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.9.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.9.itemlist.text"
+msgid "Legal"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.10.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.10.itemlist.text"
+msgid "Long Bond"
+msgstr "Довгий штрих (жирний)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.11.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.11.itemlist.text"
+msgid "Tabloid"
+msgstr "Таблиця"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.12.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.12.itemlist.text"
+msgid "B6 (JIS)"
+msgstr "B5 (ISO)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.13.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.13.itemlist.text"
+msgid "B5 (JIS)"
+msgstr "B5 (ISO)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.14.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.14.itemlist.text"
+msgid "B4 (JIS)"
+msgstr "B5 (ISO)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.15.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.15.itemlist.text"
+msgid "16 Kai"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.16.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.16.itemlist.text"
+msgid "32 Kai"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.17.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.17.itemlist.text"
+msgid "Big 32 Kai"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.18.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.18.itemlist.text"
+msgid "User"
+msgstr "Користувач"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.19.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.19.itemlist.text"
+msgid "DL Envelope"
+msgstr "Конверт"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.20.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.20.itemlist.text"
+msgid "C6 Envelope"
+msgstr "Конверт"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.21.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.21.itemlist.text"
+msgid "C6/5 Envelope"
+msgstr "Конверт"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.22.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.22.itemlist.text"
+msgid "C5 Envelope"
+msgstr "Конверт"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.23.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.23.itemlist.text"
+msgid "C4 Envelope"
+msgstr "Конверт"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.24.itemlist.text
+msgid "#6 3/4 (Personal) Envelope"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.25.itemlist.text
+msgid "#8 (Monarch) Envelope"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.26.itemlist.text
+#, fuzzy
+msgid "#9 Envelope"
+msgstr "Конверт"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.27.itemlist.text
+#, fuzzy
+msgid "#10 Envelope"
+msgstr "Конверт"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.28.itemlist.text
+#, fuzzy
+msgid "#11 Envelope"
+msgstr "Конверт"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.29.itemlist.text
+#, fuzzy
+msgid "#12 Envelope"
+msgstr "Конверт"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.30.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.30.itemlist.text"
+msgid "Japanese Postcard"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.1.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.1.itemlist.text"
+msgid "A6"
+msgstr "A"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.2.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.2.itemlist.text"
+msgid "A5"
+msgstr "A"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.3.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.3.itemlist.text"
+msgid "A4"
+msgstr "A4"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.4.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.4.itemlist.text"
+msgid "A3"
+msgstr "A"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.5.itemlist.text
+msgid "A2"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.6.itemlist.text
+msgid "A1"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.7.itemlist.text
+msgid "A0"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.8.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.8.itemlist.text"
+msgid "B6 (ISO)"
+msgstr "B5 (ISO)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.9.itemlist.text
+#, fuzzy
+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
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.10.itemlist.text"
+msgid "B4 (ISO)"
+msgstr "B5 (ISO)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.11.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.11.itemlist.text"
+msgid "Letter"
+msgstr "Лист"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.12.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.12.itemlist.text"
+msgid "Legal"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.13.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.13.itemlist.text"
+msgid "Long Bond"
+msgstr "Довгий штрих (жирний)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.14.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.14.itemlist.text"
+msgid "Tabloid"
+msgstr "Таблиця"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.15.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.15.itemlist.text"
+msgid "B6 (JIS)"
+msgstr "B5 (ISO)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.16.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.16.itemlist.text"
+msgid "B5 (JIS)"
+msgstr "B5 (ISO)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.17.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.17.itemlist.text"
+msgid "B4 (JIS)"
+msgstr "B5 (ISO)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.18.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.18.itemlist.text"
+msgid "16 Kai"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.19.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.19.itemlist.text"
+msgid "32 Kai"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.20.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.20.itemlist.text"
+msgid "Big 32 Kai"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.21.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.21.itemlist.text"
+msgid "User"
+msgstr "Користувач"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.22.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.22.itemlist.text"
+msgid "DL Envelope"
+msgstr "Конверт"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.23.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.23.itemlist.text"
+msgid "C6 Envelope"
+msgstr "Конверт"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.24.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.24.itemlist.text"
+msgid "C6/5 Envelope"
+msgstr "Конверт"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.25.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.25.itemlist.text"
+msgid "C5 Envelope"
+msgstr "Конверт"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.26.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.26.itemlist.text"
+msgid "C4 Envelope"
+msgstr "Конверт"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.27.itemlist.text
+msgid "Dia Slide"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.28.itemlist.text
+msgid "Screen 4:3"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.29.itemlist.text
+msgid "Screen 16:9"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.30.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.30.itemlist.text"
+msgid "Japanese Postcard"
+msgstr ""
+
+#: measure.src#RID_SVXPAGE_MEASURE.FL_LINE.fixedline.text
+msgctxt "measure.src#RID_SVXPAGE_MEASURE.FL_LINE.fixedline.text"
+msgid "Line"
+msgstr "Лінія"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_LINE_DIST.fixedtext.text
+msgid "Line ~distance"
+msgstr "~Відстань до лінії"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_HELPLINE_OVERHANG.fixedtext.text
+msgid "Guide ~overhang"
+msgstr "~Виступ"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_HELPLINE_DIST.fixedtext.text
+msgid "~Guide distance"
+msgstr "~На відстані"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_HELPLINE1_LEN.fixedtext.text
+msgid "~Left guide"
+msgstr "~Ліва напрямна"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_HELPLINE2_LEN.fixedtext.text
+msgid "~Right guide"
+msgstr "~Права напрямна"
+
+#: measure.src#RID_SVXPAGE_MEASURE.TSB_BELOW_REF_EDGE.tristatebox.text
+msgid "Measure ~below object"
+msgstr "Розмір ~під об'єктом"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_DECIMALPLACES.fixedtext.text
+msgid "Decimal places"
+msgstr "Кількість знаків після коми"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FL_LABEL.fixedline.text
+msgid "Legend"
+msgstr "Легенда"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_POSITION.fixedtext.text
+msgid "~Text position"
+msgstr "~Розташування тексту"
+
+#: measure.src#RID_SVXPAGE_MEASURE.TSB_AUTOPOSV.tristatebox.text
+msgid "~AutoVertical"
+msgstr "~Вертикально (авто)"
+
+#: measure.src#RID_SVXPAGE_MEASURE.TSB_AUTOPOSH.tristatebox.text
+msgid "A~utoHorizontal"
+msgstr "~Горизонтально (авто)"
+
+#: measure.src#RID_SVXPAGE_MEASURE.TSB_PARALLEL.tristatebox.text
+msgid "~Parallel to line"
+msgstr "~Паралельно лінії"
+
+#: measure.src#RID_SVXPAGE_MEASURE.TSB_SHOW_UNIT.tristatebox.text
+msgid "Show ~meas. units"
+msgstr "Показати ~одиниці виміру"
+
+#: measure.src#RID_SVXPAGE_MEASURE.STR_MEASURE_AUTOMATIC.string.text
+msgctxt "measure.src#RID_SVXPAGE_MEASURE.STR_MEASURE_AUTOMATIC.string.text"
+msgid "Automatic"
+msgstr "Автоматично"
+
+#: measure.src#RID_SVXPAGE_MEASURE.tabpage.text
+msgid "Dimensioning"
+msgstr "Розмірна лінія"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FL_EFFECT.fixedline.text
+msgid "Text animation effects"
+msgstr "Ефекти анімації тексту"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FT_EFFECTS.fixedtext.text
+msgid "E~ffect"
+msgstr "~Ефект"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.LB_EFFECT.1.stringlist.text
+msgid "No Effect"
+msgstr "Без ефектів"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.LB_EFFECT.2.stringlist.text
+msgid "Blink"
+msgstr "Блимання"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.LB_EFFECT.3.stringlist.text
+msgid "Scroll Through"
+msgstr "Безперервно біжить"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.LB_EFFECT.4.stringlist.text
+msgid "Scroll Back and Forth"
+msgstr "Біжить вперед-назад"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.LB_EFFECT.5.stringlist.text
+msgid "Scroll In"
+msgstr "Рядок виїздить"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FT_DIRECTION.fixedtext.text
+msgid "Direction"
+msgstr "Напрямок"
+
+#: 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 "Вгору"
+
+#: 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 "Ліворуч"
+
+#: 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 "Праворуч"
+
+#: 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 "Вниз"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FL_PROPERTIES.fixedline.text
+msgctxt "textanim.src#RID_SVXPAGE_TEXTANIMATION.FL_PROPERTIES.fixedline.text"
+msgid "Properties"
+msgstr "Властивості"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.TSB_START_INSIDE.tristatebox.text
+msgid "S~tart inside"
+msgstr "~Запуск зсередини"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.TSB_STOP_INSIDE.tristatebox.text
+msgid "Text visible when exiting"
+msgstr "Показувати ~текст при виході"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FT_COUNT.fixedtext.text
+msgid "Animation cycles"
+msgstr "Цикли анімації"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.TSB_ENDLESS.tristatebox.text
+msgid "~Continuous"
+msgstr "~Нескінченно"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FT_AMOUNT.fixedtext.text
+msgid "Increment"
+msgstr "Крок"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.TSB_PIXEL.tristatebox.text
+msgid "~Pixels"
+msgstr "~Точок"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.MTR_FLD_AMOUNT.metricfield.text
+msgid " Pixel"
+msgstr " пікс."
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FT_DELAY.fixedtext.text
+msgid "Delay"
+msgstr "Затримка"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.TSB_AUTO.tristatebox.text
+msgctxt "textanim.src#RID_SVXPAGE_TEXTANIMATION.TSB_AUTO.tristatebox.text"
+msgid "~Automatic"
+msgstr "~Автоматично"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.MTR_FLD_DELAY.metricfield.text
+msgid " ms"
+msgstr ""
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.tabpage.text
+msgid "Animation"
+msgstr "Анімація"
+
+#: 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 "Текст"
+
+#: textanim.src#RID_SVXDLG_TEXT.1.RID_SVXPAGE_TEXTANIMATION.pageitem.text
+msgid "Text Animation"
+msgstr "Анімація тексту"
+
+#: textanim.src#RID_SVXDLG_TEXT.tabdialog.text
+msgctxt "textanim.src#RID_SVXDLG_TEXT.tabdialog.text"
+msgid "Text"
+msgstr "Текст"
+
+#: border.src#RID_SVXPAGE_BORDER.FL_BORDER.fixedline.text
+msgid "Line arrangement"
+msgstr "Розташування лінії"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_DEFAULT.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_DEFAULT.fixedtext.text"
+msgid "~Default"
+msgstr "~Типово"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_USERDEF.fixedtext.text
+msgid "~User-defined"
+msgstr "~Особливе"
+
+#: border.src#RID_SVXPAGE_BORDER.FL_LINE.fixedline.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FL_LINE.fixedline.text"
+msgid "Line"
+msgstr "Лінія"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_STYLE.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_STYLE.fixedtext.text"
+msgid "St~yle"
+msgstr "~Стиль"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_WIDTH.fixedtext.text
+#, fuzzy
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_WIDTH.fixedtext.text"
+msgid "~Width"
+msgstr "~Ширина"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_COLOR.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_COLOR.fixedtext.text"
+msgid "~Color"
+msgstr "~Колір"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_LEFT.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_LEFT.fixedtext.text"
+msgid "~Left"
+msgstr "~Ліворуч"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_RIGHT.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_RIGHT.fixedtext.text"
+msgid "Right"
+msgstr "Праворуч"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_TOP.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_TOP.fixedtext.text"
+msgid "~Top"
+msgstr "З~гори"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_BOTTOM.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_BOTTOM.fixedtext.text"
+msgid "~Bottom"
+msgstr "З~низу"
+
+#: border.src#RID_SVXPAGE_BORDER.CB_SYNC.checkbox.text
+msgid "Synchronize"
+msgstr "Син~хронізувати"
+
+#: border.src#RID_SVXPAGE_BORDER.FL_DISTANCE.fixedline.text
+msgid "Spacing to contents"
+msgstr "Відступи від змісту"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_SHADOWPOS.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_SHADOWPOS.fixedtext.text"
+msgid "~Position"
+msgstr "~Позиція"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_SHADOWSIZE.fixedtext.text
+msgid "Distan~ce"
+msgstr "~Ширина"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_SHADOWCOLOR.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_SHADOWCOLOR.fixedtext.text"
+msgid "C~olor"
+msgstr "К~олір"
+
+#: border.src#RID_SVXPAGE_BORDER.FL_SHADOW.fixedline.text
+msgid "Shadow style"
+msgstr "Стиль тіні"
+
+#: border.src#RID_SVXPAGE_BORDER.FL_PROPERTIES.fixedline.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FL_PROPERTIES.fixedline.text"
+msgid "Properties"
+msgstr "Властивості"
+
+#: border.src#RID_SVXPAGE_BORDER.CB_MERGEWITHNEXT.checkbox.text
+msgid "~Merge with next paragraph"
+msgstr "~Об'єднати з наступним абзацом"
+
+#: border.src#RID_SVXPAGE_BORDER.CB_MERGEADJACENTBORDERS.checkbox.text
+msgid "~Merge adjacent line styles"
+msgstr "Об'~єднати стилі суміжних ліній"
+
+#: border.src#RID_SVXPAGE_BORDER.tabpage.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.tabpage.text"
+msgid "Borders"
+msgstr "Обрамлення"
+
+#: border.src#RID_SVXSTR_TABLE_PRESET_NONE.string.text
+msgid "Set No Borders"
+msgstr "Прибрати обрамлення"
+
+#: border.src#RID_SVXSTR_TABLE_PRESET_ONLYOUTER.string.text
+msgid "Set Outer Border Only"
+msgstr "Встановити лише зовнішню рамку"
+
+#: border.src#RID_SVXSTR_TABLE_PRESET_OUTERHORI.string.text
+msgid "Set Outer Border and Horizontal Lines"
+msgstr "Встановити зовнішню рамку та горизонтальні лінії"
+
+#: border.src#RID_SVXSTR_TABLE_PRESET_OUTERALL.string.text
+msgid "Set Outer Border and All Inner Lines"
+msgstr "Встановити зовнішню рамку та лінії всередині"
+
+#: border.src#RID_SVXSTR_TABLE_PRESET_OUTERINNER.string.text
+msgid "Set Outer Border Without Changing Inner Lines"
+msgstr "Зовнішня рамка без зміни внутрішніх ліній"
+
+#: border.src#RID_SVXSTR_PARA_PRESET_DIAGONAL.string.text
+msgid "Set Diagonal Lines Only"
+msgstr "Встановити лише діагональні лінії"
+
+#: border.src#RID_SVXSTR_PARA_PRESET_ALL.string.text
+msgid "Set All Four Borders"
+msgstr "Рамка з усіх боків"
+
+#: border.src#RID_SVXSTR_PARA_PRESET_LEFTRIGHT.string.text
+msgid "Set Left and Right Borders Only"
+msgstr "Рамка ліворуч та праворуч"
+
+#: border.src#RID_SVXSTR_PARA_PRESET_TOPBOTTOM.string.text
+msgid "Set Top and Bottom Borders Only"
+msgstr "Рамка згори та знизу"
+
+#: border.src#RID_SVXSTR_PARA_PRESET_ONLYLEFT.string.text
+msgid "Set Left Border Only"
+msgstr "Рамка лише ліворуч"
+
+#: border.src#RID_SVXSTR_HOR_PRESET_ONLYHOR.string.text
+msgid "Set Top and Bottom Borders, and All Inner Lines"
+msgstr "Верхня та нижня рамка, а також всі внутрішні лінії"
+
+#: border.src#RID_SVXSTR_VER_PRESET_ONLYVER.string.text
+msgid "Set Left and Right Borders, and All Inner Lines"
+msgstr "Ліве та праве обрамлення, а також всі внутрішні лінії"
+
+#: border.src#RID_SVXSTR_SHADOW_STYLE_NONE.string.text
+msgid "No Shadow"
+msgstr "Без тіні"
+
+#: border.src#RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT.string.text
+msgid "Cast Shadow to Bottom Right"
+msgstr "Тінь відкидається направо вниз"
+
+#: border.src#RID_SVXSTR_SHADOW_STYLE_TOPRIGHT.string.text
+msgid "Cast Shadow to Top Right"
+msgstr "Тінь відкидається праворуч вгору"
+
+#: border.src#RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT.string.text
+msgid "Cast Shadow to Bottom Left"
+msgstr "Тінь відкидається ліворуч вгору"
+
+#: border.src#RID_SVXSTR_SHADOW_STYLE_TOPLEFT.string.text
+msgid "Cast Shadow to Top Left"
+msgstr "Тінь відкидається ліворуч вгору"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FL_CROP.fixedline.text
+msgid "Crop"
+msgstr "Кадрувати"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_LEFT.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_LEFT.fixedtext.text"
+msgid "~Left"
+msgstr "~Ліворуч"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_RIGHT.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_RIGHT.fixedtext.text"
+msgid "~Right"
+msgstr "~Праворуч"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_TOP.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_TOP.fixedtext.text"
+msgid "~Top"
+msgstr "З~гори"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_BOTTOM.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_BOTTOM.fixedtext.text"
+msgid "~Bottom"
+msgstr "З~низу"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.RB_SIZECONST.radiobutton.text
+msgid "Keep image si~ze"
+msgstr "Зберегти розмір з~ображення"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.RB_ZOOMCONST.radiobutton.text
+msgid "Keep ~scale"
+msgstr "Зберігати мас~штаб"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FL_ZOOM.fixedline.text
+msgid "Scale"
+msgstr "Масштаб"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_WIDTHZOOM.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_WIDTHZOOM.fixedtext.text"
+msgid "~Width"
+msgstr "~Ширина"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_HEIGHTZOOM.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_HEIGHTZOOM.fixedtext.text"
+msgid "H~eight"
+msgstr "~Висота"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FL_SIZE.fixedline.text
+msgid "Image size"
+msgstr "Розмір зображення"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_WIDTH.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_WIDTH.fixedtext.text"
+msgid "~Width"
+msgstr "~Ширина"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_HEIGHT.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_HEIGHT.fixedtext.text"
+msgid "H~eight"
+msgstr "~Висота"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.PB_ORGSIZE.pushbutton.text
+msgid "~Original Size"
+msgstr "По~чатковий розмір"
+
+#. PPI is pixel per inch, %1 is a number
+#: grfpage.src#STR_PPI.string.text
+msgid "(%1 PPI)"
+msgstr ""
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FL_TEXT.fixedline.text
+msgctxt "textattr.src#RID_SVXPAGE_TEXTATTR.FL_TEXT.fixedline.text"
+msgid "Text"
+msgstr "Текст"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_AUTOGROW_WIDTH.tristatebox.text
+msgid "Fit wi~dth to text"
+msgstr "Вирівняти ~ширину по тексту"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_AUTOGROW_HEIGHT.tristatebox.text
+msgid "Fit h~eight to text"
+msgstr "Вирівняти ~висоту по тексту"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_FIT_TO_SIZE.tristatebox.text
+msgid "~Fit to frame"
+msgstr "Підігнати до ~кадру"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_CONTOUR.tristatebox.text
+msgid "~Adjust to contour"
+msgstr "~У межах контуру"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_WORDWRAP_TEXT.tristatebox.text
+msgid "~Word wrap text in shape"
+msgstr "~Переносити слова у фігурі"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_AUTOGROW_SIZE.tristatebox.text
+msgid "~Resize shape to fit text"
+msgstr "П~ідігнати розмір фігури під текст"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FL_DISTANCE.fixedline.text
+msgid "Spacing to borders"
+msgstr "Відстань до рамки"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FT_LEFT.fixedtext.text
+msgctxt "textattr.src#RID_SVXPAGE_TEXTATTR.FT_LEFT.fixedtext.text"
+msgid "~Left"
+msgstr "~Ліворуч"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FT_RIGHT.fixedtext.text
+msgctxt "textattr.src#RID_SVXPAGE_TEXTATTR.FT_RIGHT.fixedtext.text"
+msgid "~Right"
+msgstr "~Праворуч"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FT_TOP.fixedtext.text
+msgctxt "textattr.src#RID_SVXPAGE_TEXTATTR.FT_TOP.fixedtext.text"
+msgid "~Top"
+msgstr "З~гори"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FT_BOTTOM.fixedtext.text
+msgctxt "textattr.src#RID_SVXPAGE_TEXTATTR.FT_BOTTOM.fixedtext.text"
+msgid "~Bottom"
+msgstr "З~низу"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FL_POSITION.fixedline.text
+msgid "Text anchor"
+msgstr "Прив'язка тексту"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_FULL_WIDTH.tristatebox.text
+msgid "Full ~width"
+msgstr "Повна ~ширина"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.tabpage.text
+msgctxt "textattr.src#RID_SVXPAGE_TEXTATTR.tabpage.text"
+msgid "Text"
+msgstr "Текст"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_TYPE.fixedtext.text
+msgctxt "connect.src#RID_SVXPAGE_CONNECTION.FT_TYPE.fixedtext.text"
+msgid "~Type"
+msgstr "~Тип"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FL_DELTA.fixedline.text
+msgid "Line skew"
+msgstr "Нахил лінії"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_LINE_1.fixedtext.text
+msgid "Line ~1"
+msgstr "Лінія ~1"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_LINE_2.fixedtext.text
+msgid "Line ~2"
+msgstr "Лінія ~2"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_LINE_3.fixedtext.text
+msgid "Line ~3"
+msgstr "Лінія ~3"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FL_DISTANCE.fixedline.text
+msgctxt "connect.src#RID_SVXPAGE_CONNECTION.FL_DISTANCE.fixedline.text"
+msgid "Line spacing"
+msgstr "Міжрядковий інтервал"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_HORZ_1.fixedtext.text
+msgid "~Begin horizontal"
+msgstr "~Початок горизонтально"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_HORZ_2.fixedtext.text
+msgid "End ~horizontal"
+msgstr "~Кінець горизонтально"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_VERT_1.fixedtext.text
+msgid "Begin ~vertical"
+msgstr "Початок ~вертикально"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_VERT_2.fixedtext.text
+msgid "~End vertical"
+msgstr "Кінець в~ертикально"
+
+#: 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 "Перегляд"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.tabpage.text
+msgid "Connector"
+msgstr "З'єднувальна лінія"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.FT_ABSTAND.fixedtext.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.FT_ABSTAND.fixedtext.text"
+msgid "~Spacing"
+msgstr "~Інтервал"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.FT_WINKEL.fixedtext.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.FT_WINKEL.fixedtext.text"
+msgid "~Angle"
+msgstr "~Кут"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_WINKEL.1.stringlist.text
+msgid "Free"
+msgstr "За бажанням"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_WINKEL.2.stringlist.text
+msgid "30 Degrees"
+msgstr "30 градусів"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_WINKEL.3.stringlist.text
+msgid "45 Degrees"
+msgstr "45 градусів"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_WINKEL.4.stringlist.text
+msgid "60 Degrees"
+msgstr "60 градусів"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_WINKEL.5.stringlist.text
+msgid "90 Degrees"
+msgstr "90 градусів"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.FT_ANSATZ.fixedtext.text
+msgid "~Extension"
+msgstr "~Розширення"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.1.stringlist.text
+msgid "Optimal"
+msgstr "Оптимально"
+
+#: 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 "Згори"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.3.stringlist.text
+msgid "From left"
+msgstr "Ліворуч"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.4.stringlist.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.4.stringlist.text"
+msgid "Horizontal"
+msgstr "Горизонтально"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.5.stringlist.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.5.stringlist.text"
+msgid "Vertical"
+msgstr "Вертикально"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.FT_UM.fixedtext.text
+msgid "~By"
+msgstr "~На"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.FT_ANSATZ_REL.fixedtext.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.FT_ANSATZ_REL.fixedtext.text"
+msgid "~Position"
+msgstr "~Позиція"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.FT_LAENGE.fixedtext.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.FT_LAENGE.fixedtext.text"
+msgid "~Length"
+msgstr "~Довжина"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.CB_LAENGE.checkbox.text
+msgid "~Optimal"
+msgstr "~Оптимально"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.STR_CAPTTYPE_1.string.text
+msgid "Straight Line"
+msgstr "Пряма лінія"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.STR_CAPTTYPE_2.string.text
+msgid "Angled Line"
+msgstr "Ламана лінія"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.STR_CAPTTYPE_3.string.text
+msgid "Angled Connector Line"
+msgstr "Ламана лінія з одним згином"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.STR_CAPTTYPE_4.string.text
+msgid "Double-angled line"
+msgstr "Ламана лінія з подвійним згином"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.STR_HORZ_LIST.string.text
+msgid "Top;Middle;Bottom"
+msgstr "Зверху;Посередині;Знизу"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.STR_VERT_LIST.string.text
+msgid "Left;Middle;Right"
+msgstr "Зліва;Посередині;Справа"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.tabpage.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.tabpage.text"
+msgid "Callouts"
+msgstr "Виноска"
+
+#: labdlg.src#_POS_SIZE_TEXT.#define.text
+msgctxt "labdlg.src#_POS_SIZE_TEXT.#define.text"
+msgid "Position and Size"
+msgstr "Положення та розмір"
+
+#: labdlg.src#RID_SVXDLG_CAPTION.TAB_CONTROL.RID_SVXPAGE_CAPTION.pageitem.text
+msgid "Callout"
+msgstr "Виноска"
+
+#: labdlg.src#RID_SVXDLG_CAPTION.tabdialog.text
+msgctxt "labdlg.src#RID_SVXDLG_CAPTION.tabdialog.text"
+msgid "Callouts"
+msgstr "Виноска"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.FL_HORIZONTAL.fixedline.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.FL_HORIZONTAL.fixedline.text"
+msgid "Horizontal"
+msgstr "Горизонтально"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_NONE.radiobutton.text
+msgid "~None"
+msgstr "~Немає"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_LEFT.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_LEFT.radiobutton.text"
+msgid "~Left"
+msgstr "~Ліворуч"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_CENTER.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_CENTER.radiobutton.text"
+msgid "~Center"
+msgstr "У ~центрі"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_DISTANCE.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_DISTANCE.radiobutton.text"
+msgid "~Spacing"
+msgstr "~Інтервал"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_RIGHT.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_RIGHT.radiobutton.text"
+msgid "~Right"
+msgstr "~Праворуч"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.FL_VERTICAL.fixedline.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.FL_VERTICAL.fixedline.text"
+msgid "Vertical"
+msgstr "Вертикально"
+
+#: 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 "Н~емає"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_TOP.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_TOP.radiobutton.text"
+msgid "~Top"
+msgstr "З~гори"
+
+#: 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 "У ~центрі"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_DISTANCE.radiobutton.text
+msgid "S~pacing"
+msgstr "~Інтервал"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_BOTTOM.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_BOTTOM.radiobutton.text"
+msgid "~Bottom"
+msgstr "З~низу"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.tabpage.text
+msgid "Distribution"
+msgstr "Розподіл"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FT_LEFTINDENT.fixedtext.text
+msgid "Before text"
+msgstr "~Ліворуч"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FT_RIGHTINDENT.fixedtext.text
+msgid "After text"
+msgstr "~Праворуч"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FT_FLINEINDENT.fixedtext.text
+msgid "~First line"
+msgstr "Перший ~рядок"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.CB_AUTO.checkbox.text
+msgctxt "paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.CB_AUTO.checkbox.text"
+msgid "~Automatic"
+msgstr "~Автоматично"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FL_INDENT.fixedline.text
+msgctxt "paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FL_INDENT.fixedline.text"
+msgid "Indent"
+msgstr "Відступ"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FT_TOPDIST.fixedtext.text
+msgid "Ab~ove paragraph"
+msgstr "П~еред абзацом"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FT_BOTTOMDIST.fixedtext.text
+msgid "Below paragraph"
+msgstr "П~ісля абзацу"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.CB_CONTEXTUALSPACING.checkbox.text
+msgid "Don't add space between paragraphs of the same style"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FL_DIST.fixedline.text
+msgctxt "paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FL_DIST.fixedline.text"
+msgid "Spacing"
+msgstr "Міжсимвольний інтервал"
+
+#: 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 "Звичайний"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.LB_LINEDIST.2.stringlist.text
+msgid "1.5 lines"
+msgstr "Полуторний"
+
+#: 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 "Подвійний"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.LB_LINEDIST.4.stringlist.text
+msgid "Proportional"
+msgstr "Пропорційно"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.LB_LINEDIST.5.stringlist.text
+msgid "At least"
+msgstr "Принаймні"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.LB_LINEDIST.6.stringlist.text
+msgid "Leading"
+msgstr "Додатково"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.ST_LINEDIST_ABS.string.text
+msgid "Fixed"
+msgstr "Точно"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FT_LINEDIST.fixedtext.text
+msgid "of"
+msgstr "~розмір:"
+
+#: 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 "Міжрядковий інтервал"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.CB_REGISTER.checkbox.text
+msgid "A~ctivate"
+msgstr "~Активувати"
+
+#: 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 "Приведення"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.tabpage.text
+msgid "Indents and Spacing"
+msgstr "Відступи та інтервали"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FL_ALIGN.fixedline.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FL_ALIGN.fixedline.text"
+msgid "Options"
+msgstr "Параметри"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_LEFTALIGN.radiobutton.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_LEFTALIGN.radiobutton.text"
+msgid "~Left"
+msgstr "~Ліворуч"
+
+#: 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 "~Праворуч"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_CENTERALIGN.radiobutton.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_CENTERALIGN.radiobutton.text"
+msgid "~Center"
+msgstr "У ~центрі"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_JUSTIFYALIGN.radiobutton.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_JUSTIFYALIGN.radiobutton.text"
+msgid "Justified"
+msgstr "У ~ширину"
+
+#: 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 "~Ліворуч/згори"
+
+#: 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 "~Праворуч/знизу"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FT_LASTLINE.fixedtext.text
+msgid "~Last line"
+msgstr "~Останній рядок"
+
+#: 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 "Типово"
+
+#: 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 "Ліворуч"
+
+#: 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 "У центрі"
+
+#: 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 "У ~ширину"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.CB_EXPAND.checkbox.text
+msgid "~Expand single word"
+msgstr "~Розігнати одиночне слово"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.CB_SNAP.checkbox.text
+msgid "Snap to text grid (if active)"
+msgstr "Прив'язати до текстової ~сітки (якщо вона активна)"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FL_VERTALIGN.fixedline.text
+msgid "Text-to-text"
+msgstr "Розміщення символів по вертикалі"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FT_VERTALIGN.fixedtext.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FT_VERTALIGN.fixedtext.text"
+msgid "~Alignment"
+msgstr "~Вирівнювання"
+
+#: 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 "Автоматично"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN.2.stringlist.text
+msgid "Base line"
+msgstr "За базовою лінією"
+
+#: 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 "Згори"
+
+#: 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 "Посередині"
+
+#: 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 "Знизу"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FL_PROPERTIES.fixedline.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FL_PROPERTIES.fixedline.text"
+msgid "Properties"
+msgstr "Властивості"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FT_TEXTDIRECTION.fixedtext.text
+msgid "Text ~direction"
+msgstr "~Напрямок тексту"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.tabpage.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.tabpage.text"
+msgid "Alignment"
+msgstr "Вирівнювання"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.BTN_HYPHEN.tristatebox.text
+msgid "A~utomatically"
+msgstr "~Автоматичний перенос"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_HYPHENBEFORE.fixedtext.text
+msgid "C~haracters at line end"
+msgstr "Символів напри~кінці рядка"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_HYPHENAFTER.fixedtext.text
+msgid "Cha~racters at line begin"
+msgstr "Символів на ~початку рядка"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_MAXHYPH.fixedtext.text
+msgid "~Maximum number of consecutive hyphens"
+msgstr "~Максимальна кількість послідовних дефісів"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FL_HYPHEN.fixedline.text
+msgid "Hyphenation"
+msgstr "Розстановка переносів"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FL_OPTIONS.fixedline.text
+msgctxt "paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FL_OPTIONS.fixedline.text"
+msgid "Options"
+msgstr "Параметри"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FL_BREAKS.fixedline.text
+msgid "Breaks"
+msgstr "Розриви"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.BTN_PAGEBREAK.tristatebox.text
+msgid "Insert"
+msgstr "Додавати ~розрив"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_BREAKTYPE.fixedtext.text
+msgctxt "paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_BREAKTYPE.fixedtext.text"
+msgid "~Type"
+msgstr "~Тип"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.LB_BREAKTYPE.1.stringlist.text
+msgid "Page"
+msgstr "Сторінка"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.LB_BREAKTYPE.2.stringlist.text
+msgid "Column"
+msgstr "Стовпчик"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_BREAKPOSITION.fixedtext.text
+msgctxt "paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_BREAKPOSITION.fixedtext.text"
+msgid "Position"
+msgstr "Позиція"
+
+#: 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 "Перед"
+
+#: 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 "Після"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.BTN_PAGECOLL.tristatebox.text
+msgid "With Page St~yle"
+msgstr "Зі стилем ~сторінки"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_PAGENUM.fixedtext.text
+msgid "Page ~number"
+msgstr "~Номер сторінки"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.BTN_KEEPTOGETHER.tristatebox.text
+msgid "~Do not split paragraph"
+msgstr "Н~е розривати абзац"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.CB_KEEPTOGETHER.tristatebox.text
+msgid "~Keep with next paragraph"
+msgstr "Не ~відривати від наступного"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.BTN_ORPHANS.tristatebox.text
+msgid "~Orphan control"
+msgstr "Висячі рядки на ~початку абзацу"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_ORPHANS.fixedtext.text
+msgctxt "paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_ORPHANS.fixedtext.text"
+msgid "Lines"
+msgstr "Рядки"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.BTN_WIDOWS.tristatebox.text
+msgid "~Widow control"
+msgstr "Висячі рядки напри~кінці абзацу"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_WIDOWS.fixedtext.text
+msgctxt "paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_WIDOWS.fixedtext.text"
+msgid "Lines"
+msgstr "Рядки"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.tabpage.text
+msgid "Text Flow"
+msgstr "На сторінці"
+
+#: paragrph.src#RID_SVXPAGE_PARA_ASIAN.FL_AS_OPTIONS.fixedline.text
+msgid "Line change"
+msgstr "Оформлення рядка"
+
+#: 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 "~Враховувати список символів, неприпустимих на початку на наприкінці рядка"
+
+#: paragrph.src#RID_SVXPAGE_PARA_ASIAN.CB_AS_HANG_PUNC.tristatebox.text
+msgid "Allow hanging punctuation"
+msgstr "Дозволити винос знаків ~пунктуації на поля"
+
+#: paragrph.src#RID_SVXPAGE_PARA_ASIAN.CB_AS_SCRIPT_SPACE.tristatebox.text
+msgid "Apply spacing between Asian, Latin and Complex text"
+msgstr "~Інтервал між азіатським текстом та іншими системами писемності"
+
+#: paragrph.src#RID_SVXPAGE_PARA_ASIAN.tabpage.text
+msgid "Asian Typography"
+msgstr "Азіатські правила набору"
+
+#: paragrph.src#STR_EXAMPLE.string.text
+#, fuzzy
+msgctxt "paragrph.src#STR_EXAMPLE.string.text"
+msgid "Example"
+msgstr "Приклад"
+
+#: paragrph.src#STR_PAGE_STYLE.string.text
+msgid "Page Style"
+msgstr "Стиль сторінки"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_CATEGORY.fixedtext.text
+msgid "~Category"
+msgstr "~Категорія"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.1.stringlist.text
+msgid "All"
+msgstr "Усі"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.2.stringlist.text
+msgid "User-defined"
+msgstr "Особливий"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.3.stringlist.text
+msgid "Number"
+msgstr "Число"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.4.stringlist.text
+msgid "Percent"
+msgstr "Відсотковий"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.5.stringlist.text
+msgid "Currency"
+msgstr "Грошовий"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.6.stringlist.text
+msgid "Date"
+msgstr "Дата"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.7.stringlist.text
+msgid "Time"
+msgstr "Час"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.8.stringlist.text
+msgid "Scientific"
+msgstr "Науковий"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.9.stringlist.text
+msgid "Fraction"
+msgstr "Дробовий"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.10.stringlist.text
+msgid "Boolean Value"
+msgstr "Логічне значення"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.11.stringlist.text
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.11.stringlist.text"
+msgid "Text"
+msgstr "Текст"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_EDFORMAT.fixedtext.text
+msgid "~Format code"
+msgstr "Код ~формату"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_FORMAT.fixedtext.text
+msgid "F~ormat"
+msgstr "Фор~мат"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CURRENCY.1.stringlist.text
+msgid "Automatically"
+msgstr "Автоматично"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_DECIMALS.fixedtext.text
+msgid "~Decimal places"
+msgstr "~Дробова частина"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_LEADZEROES.fixedtext.text
+msgid "Leading ~zeroes"
+msgstr "~Початкові нулі"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.BTN_NEGRED.checkbox.text
+msgid "~Negative numbers red"
+msgstr "~Від'ємні числа червоним"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.BTN_THOUSAND.checkbox.text
+msgid "~Thousands separator"
+msgstr "~Розділення розрядів"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FL_OPTIONS.fixedline.text
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FL_OPTIONS.fixedline.text"
+msgid "Options"
+msgstr "Параметри"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_LANGUAGE.fixedtext.text
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_LANGUAGE.fixedtext.text"
+msgid "~Language"
+msgstr "~Мова"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.CB_SOURCEFORMAT.checkbox.text
+msgid "So~urce format"
+msgstr "~Первинний формат"
+
+#: 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 "Додати"
+
+#: 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 "Видалити"
+
+#: 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 "Змінити коментар"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.STR_AUTO_ENTRY.string.text
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.STR_AUTO_ENTRY.string.text"
+msgid "Automatic"
+msgstr "Автоматично"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.tabpage.text
+msgid "Number Format"
+msgstr "Числовий формат"
+
+#: frmdirlbox.src#RID_SVXSTR_FRAMEDIR_LTR.string.text
+msgid "Left-to-right"
+msgstr "Зліва направо"
+
+#: frmdirlbox.src#RID_SVXSTR_FRAMEDIR_RTL.string.text
+msgid "Right-to-left"
+msgstr "Справа наліво"
+
+#: frmdirlbox.src#RID_SVXSTR_FRAMEDIR_SUPER.string.text
+msgid "Use superordinate object settings"
+msgstr "Успадковувати від батьківського об'єкту"
+
+#: frmdirlbox.src#RID_SVXSTR_PAGEDIR_LTR_HORI.string.text
+msgid "Left-to-right (horizontal)"
+msgstr "Зліва направо (горизонтально)"
+
+#: frmdirlbox.src#RID_SVXSTR_PAGEDIR_RTL_HORI.string.text
+msgid "Right-to-left (horizontal)"
+msgstr "Справа наліво (горизонтально)"
+
+#: frmdirlbox.src#RID_SVXSTR_PAGEDIR_RTL_VERT.string.text
+msgid "Right-to-left (vertical)"
+msgstr "Справа наліво (вертикально)"
+
+#: frmdirlbox.src#RID_SVXSTR_PAGEDIR_LTR_VERT.string.text
+msgid "Left-to-right (vertical)"
+msgstr "Зліва направо (вертикально)"
+
+#: tabline.src#RID_SVXPAGE_LINE.FL_LINE.fixedline.text
+msgid "Line properties"
+msgstr "Властивості лінії"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_LINE_STYLE.fixedtext.text
+msgid "~Style"
+msgstr "~Стиль"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_COLOR.fixedtext.text
+msgid "Colo~r"
+msgstr "~Колір"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_LINE_WIDTH.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.FT_LINE_WIDTH.fixedtext.text"
+msgid "~Width"
+msgstr "~Ширина"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_TRANSPARENT.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.FT_TRANSPARENT.fixedtext.text"
+msgid "~Transparency"
+msgstr "~Прозорість"
+
+#: tabline.src#RID_SVXPAGE_LINE.FL_LINE_ENDS.fixedline.text
+msgid "Arrow styles"
+msgstr "Стилі стрілок"
+
+#: 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 "~Стиль"
+
+#: 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 "~Ширина"
+
+#: tabline.src#RID_SVXPAGE_LINE.TSB_CENTER_START.tristatebox.text
+msgid "Ce~nter"
+msgstr "У ~центрі"
+
+#: 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 "У ~центрі"
+
+#: tabline.src#RID_SVXPAGE_LINE.CBX_SYNCHRONIZE.checkbox.text
+msgid "Synchroni~ze ends"
+msgstr "~Синхронізувати кінці"
+
+#: tabline.src#RID_SVXPAGE_LINE.FL_EDGE_STYLE.fixedline.text
+msgid "Corner style"
+msgstr "Стиль кута"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_EDGE_STYLE.fixedtext.text
+msgid "Sty~le"
+msgstr "~Стиль"
+
+#: tabline.src#RID_SVXPAGE_LINE.LB_EDGE_STYLE.1.stringlist.text
+msgid "Rounded"
+msgstr "Закруглений"
+
+#: tabline.src#RID_SVXPAGE_LINE.LB_EDGE_STYLE.2.stringlist.text
+msgid "- none -"
+msgstr "- нічого -"
+
+#: tabline.src#RID_SVXPAGE_LINE.LB_EDGE_STYLE.3.stringlist.text
+msgid "Mitered"
+msgstr "Звичайні"
+
+#: tabline.src#RID_SVXPAGE_LINE.LB_EDGE_STYLE.4.stringlist.text
+msgid "Beveled"
+msgstr "Випуклий"
+
+#: tabline.src#RID_SVXPAGE_LINE.FL_SYMBOL_FORMAT.fixedline.text
+msgid "Icon"
+msgstr "Значок"
+
+#: tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.MN_SYMBOLS_NONE.menuitem.text
+msgid "No Symbol"
+msgstr "Без символу"
+
+#: 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 "Автоматично"
+
+#: 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 "З файлу..."
+
+#: 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 "Галерея"
+
+#: tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.MN_SYMBOLS.menuitem.text
+msgid "Symbols"
+msgstr "Символи"
+
+#: tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.menubutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.menubutton.text"
+msgid "Select..."
+msgstr "Вибрати..."
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_SYMBOL_WIDTH.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.FT_SYMBOL_WIDTH.fixedtext.text"
+msgid "Width"
+msgstr "Ширина"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_SYMBOL_HEIGHT.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.FT_SYMBOL_HEIGHT.fixedtext.text"
+msgid "Height"
+msgstr "Висота"
+
+#: 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 "Зберігати пропорції"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_STYLE.string.text
+#, fuzzy
+msgctxt "tabline.src#RID_SVXPAGE_LINE.STR_STYLE.string.text"
+msgid "Style"
+msgstr "Стиль"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_LB_START_STYLE.string.text
+#, fuzzy
+msgid "Start style"
+msgstr "Початкова дата"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_LB_END_STYLE.string.text
+#, fuzzy
+msgid "End style"
+msgstr "Стиль лінії"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_MTR_FLD_START_WIDTH.string.text
+#, fuzzy
+msgid "Start width"
+msgstr "По~чати з"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_MTR_FLD_END_WIDTH.string.text
+#, fuzzy
+msgid "End width"
+msgstr "Ширина лінії"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_CENTER_START.string.text
+#, fuzzy
+msgid "Start with center"
+msgstr "По~чати з"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_CENTER_END.string.text
+#, fuzzy
+msgid "End with center"
+msgstr "Праворуч у центрі"
+
+#: tabline.src#RID_SVXPAGE_LINE.tabpage.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.tabpage.text"
+msgid "Lines"
+msgstr "Рядки"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.FL_DEFINITION.fixedline.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.FL_DEFINITION.fixedline.text"
+msgid "Properties"
+msgstr "Властивості"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.FT_TYPE.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.FT_TYPE.fixedtext.text"
+msgid "~Type"
+msgstr "~Тип"
+
+#: 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 "Точка"
+
+#: 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 "Штрих"
+
+#: 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 "Точка"
+
+#: 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 "Штрих"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.FT_NUMBER.fixedtext.text
+msgid "~Number"
+msgstr "~Кількість"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.FT_LENGTH.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.FT_LENGTH.fixedtext.text"
+msgid "~Length"
+msgstr "~Довжина"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.FT_DISTANCE.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.FT_DISTANCE.fixedtext.text"
+msgid "~Spacing"
+msgstr "~Інтервал"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.CBX_SYNCHRONIZE.checkbox.text
+msgid "~Fit to line width"
+msgstr "~По ширині лінії"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.FT_LINESTYLE.fixedtext.text
+msgid "Line style"
+msgstr "Стиль лінії"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.BTN_ADD.pushbutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.BTN_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr "~Додати..."
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.BTN_MODIFY.pushbutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.BTN_MODIFY.pushbutton.text"
+msgid "~Modify..."
+msgstr "~Змінити..."
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.BTN_DELETE.pushbutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.BTN_DELETE.pushbutton.text"
+msgid "~Delete..."
+msgstr "В~идалити..."
+
+#: 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 "Завантажити набір стилів ліній"
+
+#: 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 "Зберегти набір стилів ліній"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.STR_START_TYPE.string.text
+#, fuzzy
+msgid "Start type"
+msgstr "Тип діаграми"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.STR_END_TYPE.string.text
+#, fuzzy
+msgid "End type"
+msgstr "Кінцеві лапки"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.STR_START_NUM.string.text
+#, fuzzy
+msgid "Start number"
+msgstr "Почати нумерацію заново"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.STR_END_NUM.string.text
+#, fuzzy
+msgid "End number"
+msgstr "Без нумерації"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.STR_START_LENGTH.string.text
+#, fuzzy
+msgid "Start length"
+msgstr "Починати з"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.STR_END_LENGTH.string.text
+#, fuzzy
+msgid "End length"
+msgstr "Довжина лінії"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.tabpage.text
+msgid "Define line styles"
+msgstr "Вказати стилі ліній"
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.FL_TIP.fixedline.text
+msgid "Organize arrow styles"
+msgstr "Впорядкувати стилі стрілок"
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.FI_TIP.fixedtext.text
+msgid "Add a selected object to create new arrow styles."
+msgstr "Додати вибраний об'єкт для створення нових стилів стрілок."
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.FT_LINE_END_STYLE.fixedtext.text
+msgid "Arrow style"
+msgstr "Стиль стрілок"
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.FT_TITLE.fixedtext.text
+msgid "~Title"
+msgstr "~Заголовок"
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_ADD.pushbutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr "~Додати..."
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_MODIFY.pushbutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_MODIFY.pushbutton.text"
+msgid "~Modify..."
+msgstr "~Змінити..."
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_DELETE.pushbutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_DELETE.pushbutton.text"
+msgid "~Delete..."
+msgstr "В~идалити..."
+
+#: 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 "Завантажити набір кінців ліній"
+
+#: 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 "Зберегти набір кінців ліній"
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.tabpage.text
+msgid "Arrowheads"
+msgstr "Стилі стрілок"
+
+#: 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 "Лінія"
+
+#: 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 "Тінь"
+
+#: tabline.src#RID_SVXDLG_LINE.TAB_CONTROL.RID_SVXPAGE_LINE_DEF.pageitem.text
+msgid "Line Styles"
+msgstr "Стилі лінії"
+
+#: tabline.src#RID_SVXDLG_LINE.TAB_CONTROL.RID_SVXPAGE_LINEEND_DEF.pageitem.text
+msgid "Arrow Styles"
+msgstr "Стилі стрілок"
+
+#: tabline.src#RID_SVXDLG_LINE.tabdialog.text
+msgctxt "tabline.src#RID_SVXDLG_LINE.tabdialog.text"
+msgid "Line"
+msgstr "Лінія"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.FL_TABPOS.fixedline.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.FL_TABPOS.fixedline.text"
+msgid "Position"
+msgstr "Позиція"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.FL_TABTYPE.fixedline.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.FL_TABTYPE.fixedline.text"
+msgid "Type"
+msgstr "Тип"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_TABTYPE_LEFT.radiobutton.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_TABTYPE_LEFT.radiobutton.text"
+msgid "~Left"
+msgstr "~Ліворуч"
+
+#: 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 "~Праворуч"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_TABTYPE_CENTER.radiobutton.text
+msgid "C~entered"
+msgstr "У ~центрі"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_TABTYPE_DECIMAL.radiobutton.text
+msgid "Deci~mal"
+msgstr "За ~розділювачем"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.FT_TABTYPE_DECCHAR.fixedtext.text
+msgid "~Character"
+msgstr "Си~мвол"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.FL_FILLCHAR.fixedline.text
+msgid "Fill character"
+msgstr "Заповнювач"
+
+#: 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 "Н~емає"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_FILLCHAR_OTHER.radiobutton.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_FILLCHAR_OTHER.radiobutton.text"
+msgid "Character"
+msgstr "Символ"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_NEW.pushbutton.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_NEW.pushbutton.text"
+msgid "~New"
+msgstr "~Встановити"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_DELALL.pushbutton.text
+msgid "Delete ~All"
+msgstr "Видалити вс~е"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_DEL.pushbutton.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_DEL.pushbutton.text"
+msgid "~Delete"
+msgstr "В~идалити"
+
+#: 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 "~Ліворуч/згори"
+
+#: 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 "~Праворуч/знизу"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.ST_FILLCHAR_OTHER.string.text
+#, fuzzy
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.ST_FILLCHAR_OTHER.string.text"
+msgid "Character"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Символи\n"
+"#-#-#-#-# chrdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Символи\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Символ\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Шрифт\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Символ\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Символ\n"
+"#-#-#-#-# form.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Символ\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Символ\n"
+"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Символ"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.tabpage.text
+msgid "Tabs"
+msgstr "Табуляція"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_SIZE.fixedline.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_SIZE.fixedline.text"
+msgid "Size"
+msgstr "Розмір"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_WIDTH.fixedtext.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_WIDTH.fixedtext.text"
+msgid "~Width"
+msgstr "~Ширина"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HEIGHT.fixedtext.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HEIGHT.fixedtext.text"
+msgid "H~eight"
+msgstr "~Висота"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_KEEPRATIO.checkbox.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_KEEPRATIO.checkbox.text"
+msgid "~Keep ratio"
+msgstr "~Пропорційно"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_ANCHOR.fixedline.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_ANCHOR.fixedline.text"
+msgid "Anchor"
+msgstr "Прив'язка"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.RB_TOPAGE.radiobutton.text
+msgid "To ~page"
+msgstr "До ~сторінки"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.RB_TOPARA.radiobutton.text
+msgid "To paragrap~h"
+msgstr "До ~абзацу"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.RB_TOCHAR.radiobutton.text
+msgid "To cha~racter"
+msgstr "До ~символу"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.RB_ASCHAR.radiobutton.text
+msgid "~As character"
+msgstr "~Як символ"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.RB_TOFRAME.radiobutton.text
+msgid "To ~frame"
+msgstr "У ~кадр"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_PROTECTION.fixedline.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_PROTECTION.fixedline.text"
+msgid "Protect"
+msgstr "Захист"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_POSITION.tristatebox.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_POSITION.tristatebox.text"
+msgid "Position"
+msgstr "Позиція"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_SIZE.tristatebox.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_SIZE.tristatebox.text"
+msgid "~Size"
+msgstr "~Розмір"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_POSITION.fixedline.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_POSITION.fixedline.text"
+msgid "Position"
+msgstr "Позиція"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HORI.fixedtext.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HORI.fixedtext.text"
+msgid "Hori~zontal"
+msgstr "~Горизонтально"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HORIBY.fixedtext.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HORIBY.fixedtext.text"
+msgid "b~y"
+msgstr "~на"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HORITO.fixedtext.text
+msgid "~to"
+msgstr "~до"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_HORIMIRROR.checkbox.text
+msgid "~Mirror on even pages"
+msgstr "~Віддзеркалити на парних сторінках"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_VERT.fixedtext.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_VERT.fixedtext.text"
+msgid "~Vertical"
+msgstr "~Вертикально"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_VERTBY.fixedtext.text
+msgid "by"
+msgstr "від"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_VERTTO.fixedtext.text
+msgid "t~o"
+msgstr "~до"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_FOLLOW.checkbox.text
+msgid "Follow text flow"
+msgstr "За текстом"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.tabpage.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.tabpage.text"
+msgid "Position and Size"
+msgstr "Положення та розмір"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FL_PROP.fixedline.text
+msgid "Transparency mode"
+msgstr "Режим прозорості"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.RBT_TRANS_OFF.radiobutton.text
+msgid "~No transparency"
+msgstr "~Непрозорий"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.RBT_TRANS_LINEAR.radiobutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.RBT_TRANS_LINEAR.radiobutton.text"
+msgid "~Transparency"
+msgstr "~Прозорість"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.RBT_TRANS_GRADIENT.radiobutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.RBT_TRANS_GRADIENT.radiobutton.text"
+msgid "Gradient"
+msgstr "Градієнт"
+
+#: 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 "~Тип"
+
+#: 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 "Лінійна"
+
+#: 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 "Осьова"
+
+#: 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 "Радіальна"
+
+#: 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 "Еліпсоїдна"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.LB_TRGR_GRADIENT_TYPES.5.stringlist.text
+msgid "Quadratic"
+msgstr "Квадратна"
+
+#: 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 "Квадрат"
+
+#: 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 "Центр ~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 "Центр ~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 "~Кут"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.MTR_TRGR_ANGLE.metricfield.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.MTR_TRGR_ANGLE.metricfield.text"
+msgid " degrees"
+msgstr " градусів"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_BORDER.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_BORDER.fixedtext.text"
+msgid "~Border"
+msgstr "Конт~ур"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_START_VALUE.fixedtext.text
+msgid "~Start value"
+msgstr "~Початкове значення"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_END_VALUE.fixedtext.text
+msgid "~End value"
+msgstr "~Кінцеве значення"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.tabpage.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.tabpage.text"
+msgid "Transparency"
+msgstr "Прозорий"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FL_PROP.fixedline.text
+msgid "Fill"
+msgstr "Заповнення"
+
+#: 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 "Немає"
+
+#: 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 "Колір"
+
+#: 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 "Градієнт"
+
+#: 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 "Штрихування"
+
+#: 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 "Растрове зображення"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FL_STEPCOUNT.fixedline.text
+msgid "Increments"
+msgstr "Кроки"
+
+#: tabarea.src#RID_SVXPAGE_AREA.TSB_STEPCOUNT.tristatebox.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.TSB_STEPCOUNT.tristatebox.text"
+msgid "A~utomatic"
+msgstr "~Автоматично"
+
+#: tabarea.src#RID_SVXPAGE_AREA.CB_HATCHBCKGRD.checkbox.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.CB_HATCHBCKGRD.checkbox.text"
+msgid "~Background color"
+msgstr "Колір ~тла"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FL_SIZE.fixedline.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.FL_SIZE.fixedline.text"
+msgid "Size"
+msgstr "Розмір"
+
+#: tabarea.src#RID_SVXPAGE_AREA.TSB_ORIGINAL.tristatebox.text
+msgid "~Original"
+msgstr "~Оригінал"
+
+#: tabarea.src#RID_SVXPAGE_AREA.TSB_SCALE.tristatebox.text
+msgid "Re~lative"
+msgstr "~Відносно"
+
+#: 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 "~Ширина"
+
+#: 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 "~Висота"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FL_POSITION.fixedline.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.FL_POSITION.fixedline.text"
+msgid "Position"
+msgstr "Позиція"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FT_X_OFFSET.fixedtext.text
+msgid "~X Offset"
+msgstr "Зсув по ~X"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FT_Y_OFFSET.fixedtext.text
+msgid "~Y Offset"
+msgstr "Зсув по ~Y"
+
+#: tabarea.src#RID_SVXPAGE_AREA.TSB_TILE.tristatebox.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.TSB_TILE.tristatebox.text"
+msgid "~Tile"
+msgstr "~Плитка"
+
+#: tabarea.src#RID_SVXPAGE_AREA.TSB_STRETCH.tristatebox.text
+msgid "Auto~Fit"
+msgstr "~Автопідбирання"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FL_OFFSET.fixedline.text
+msgid "Offset"
+msgstr "Зсув"
+
+#: tabarea.src#RID_SVXPAGE_AREA.RBT_ROW.radiobutton.text
+msgid "Ro~w"
+msgstr "~Рядок"
+
+#: tabarea.src#RID_SVXPAGE_AREA.RBT_COLUMN.radiobutton.text
+msgid "Colu~mn"
+msgstr "~Стовпчик"
+
+#: tabarea.src#RID_SVXPAGE_AREA.tabpage.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.tabpage.text"
+msgid "Area"
+msgstr "Область"
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.FL_PROP.fixedline.text
+msgctxt "tabarea.src#RID_SVXPAGE_SHADOW.FL_PROP.fixedline.text"
+msgid "Properties"
+msgstr "Властивості"
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.TSB_SHOW_SHADOW.tristatebox.text
+msgid "~Use shadow"
+msgstr "~Використовувати тінь"
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.FT_POSITION.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_SHADOW.FT_POSITION.fixedtext.text"
+msgid "~Position"
+msgstr "~Позиція"
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.FT_DISTANCE.fixedtext.text
+msgid "~Distance"
+msgstr "~Відстань"
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.FT_SHADOW_COLOR.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_SHADOW.FT_SHADOW_COLOR.fixedtext.text"
+msgid "~Color"
+msgstr "~Колір"
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.FT_TRANSPARENT.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_SHADOW.FT_TRANSPARENT.fixedtext.text"
+msgid "~Transparency"
+msgstr "~Прозорість"
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.tabpage.text
+msgctxt "tabarea.src#RID_SVXPAGE_SHADOW.tabpage.text"
+msgid "Shadow"
+msgstr "Тінь"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.FL_PROP.fixedline.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.FL_PROP.fixedline.text"
+msgid "Properties"
+msgstr "Властивості"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.FT_LINE_DISTANCE.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.FT_LINE_DISTANCE.fixedtext.text"
+msgid "~Spacing"
+msgstr "~Інтервал"
+
+#: 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 "~Кут"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.MTR_FLD_ANGLE.metricfield.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.MTR_FLD_ANGLE.metricfield.text"
+msgid " degrees"
+msgstr " градусів"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.FT_LINE_TYPE.fixedtext.text
+msgid "~Line type"
+msgstr "~Тип лінії"
+
+#: 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 "Звичайний"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.LB_LINE_TYPE.2.stringlist.text
+msgid "Crossed"
+msgstr "Перехресний"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.LB_LINE_TYPE.3.stringlist.text
+msgid "Triple"
+msgstr "Потроєний"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.FT_LINE_COLOR.fixedtext.text
+msgid "Line ~color"
+msgstr "~Колір лінії"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.BTN_ADD.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.BTN_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr "~Додати..."
+
+#: tabarea.src#RID_SVXPAGE_HATCH.BTN_MODIFY.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.BTN_MODIFY.pushbutton.text"
+msgid "~Modify..."
+msgstr "~Змінити..."
+
+#: tabarea.src#RID_SVXPAGE_HATCH.BTN_DELETE.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.BTN_DELETE.pushbutton.text"
+msgid "~Delete..."
+msgstr "В~идалити..."
+
+#: 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 ""
+
+#: 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 ""
+
+#: tabarea.src#RID_SVXPAGE_HATCH.BTN_EMBED.checkbox.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.BTN_EMBED.checkbox.text"
+msgid "Embed"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_HATCH.tabpage.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.tabpage.text"
+msgid "Hatching"
+msgstr "Штрихування"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.FL_PROP.fixedline.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.FL_PROP.fixedline.text"
+msgid "Properties"
+msgstr "Властивості"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.FT_PIXEL_EDIT.fixedtext.text
+msgid "Pattern Editor"
+msgstr "Редактор зразку"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.FT_COLOR.fixedtext.text
+msgid "~Foreground color"
+msgstr "~Передній план"
+
+#: 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 "Колір ~тла"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.FT_BITMAPS_HIDDEN.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.FT_BITMAPS_HIDDEN.fixedtext.text"
+msgid "Bitmap"
+msgstr "Растр"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_ADD.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.BTN_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr "~Додати..."
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_MODIFY.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.BTN_MODIFY.pushbutton.text"
+msgid "~Modify..."
+msgstr "~Змінити..."
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_IMPORT.pushbutton.text
+msgid "~Import..."
+msgstr "~Імпорт..."
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_DELETE.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.BTN_DELETE.pushbutton.text"
+msgid "~Delete..."
+msgstr "В~идалити..."
+
+#: 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 ""
+
+#: 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 ""
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_EMBED.checkbox.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.BTN_EMBED.checkbox.text"
+msgid "Embed"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.tabpage.text
+msgid "Bitmap Patterns"
+msgstr "Зразки растрових зображень"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FL_PROP.fixedline.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.FL_PROP.fixedline.text"
+msgid "Properties"
+msgstr "Властивості"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FT_TYPE.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.FT_TYPE.fixedtext.text"
+msgid "Ty~pe"
+msgstr "~Тип"
+
+#: 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 "Лінійна"
+
+#: 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 "Осьова"
+
+#: 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 "Радіальна"
+
+#: 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 "Еліпсоїдна"
+
+#: 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 "Квадрат"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.LB_GRADIENT_TYPES.6.stringlist.text
+msgid "Rectangular"
+msgstr "Прямокутний"
+
+#: 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 "Центр ~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 "Центр ~Y"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FT_ANGLE.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.FT_ANGLE.fixedtext.text"
+msgid "A~ngle"
+msgstr "~Кут"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.MTR_ANGLE.metricfield.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.MTR_ANGLE.metricfield.text"
+msgid " degrees"
+msgstr " градусів"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FT_BORDER.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.FT_BORDER.fixedtext.text"
+msgid "~Border"
+msgstr "Конт~ур"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FT_COLOR_FROM.fixedtext.text
+msgid "~From"
+msgstr "~Від"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FT_COLOR_TO.fixedtext.text
+msgid "~To"
+msgstr "~До"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.BTN_ADD.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.BTN_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr "~Додати..."
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.BTN_MODIFY.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.BTN_MODIFY.pushbutton.text"
+msgid "~Modify..."
+msgstr "~Змінити..."
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.BTN_DELETE.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.BTN_DELETE.pushbutton.text"
+msgid "~Delete..."
+msgstr "В~идалити..."
+
+#: 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 ""
+
+#: 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 ""
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.BTN_EMBED.checkbox.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.BTN_EMBED.checkbox.text"
+msgid "Embed"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.tabpage.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.tabpage.text"
+msgid "Gradients"
+msgstr "Градієнти"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FL_PROP.fixedline.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.FL_PROP.fixedline.text"
+msgid "Properties"
+msgstr "Властивості"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FT_NAME.fixedtext.text
+msgid "~Name"
+msgstr "~Назва"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FT_COLOR.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.FT_COLOR.fixedtext.text"
+msgid "C~olor"
+msgstr "К~олір"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FT_TABLE_NAME.fixedtext.text
+msgid "Color table"
+msgstr "Таблиця кольорів"
+
+#: 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 ""
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FT_2.fixedtext.text
+msgid "~M"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FT_3.fixedtext.text
+msgid "~Y"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FT_4.fixedtext.text
+msgid "~K"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_ADD.pushbutton.text
+msgid "~Add"
+msgstr "~Додати"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_WORK_ON.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.BTN_WORK_ON.pushbutton.text"
+msgid "~Edit..."
+msgstr "~Редагування..."
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_DELETE.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.BTN_DELETE.pushbutton.text"
+msgid "~Delete..."
+msgstr "В~идалити..."
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_MODIFY.pushbutton.text
+msgid "~Modify"
+msgstr "~Змінити"
+
+#: 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 ""
+
+#: 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 ""
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_EMBED.checkbox.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.BTN_EMBED.checkbox.text"
+msgid "Embed"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_COLOR.tabpage.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.tabpage.text"
+msgid "Colors"
+msgstr "Кольори"
+
+#: 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 "Область"
+
+#: 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 "Тінь"
+
+#: 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 "Прозорий"
+
+#: 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 "Кольори"
+
+#: 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 "Градієнти"
+
+#: 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 "Штрихування"
+
+#: tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_BITMAP.pageitem.text
+msgid "Bitmaps"
+msgstr "Текстура"
+
+#: tabarea.src#RID_SVXDLG_AREA.tabdialog.text
+msgctxt "tabarea.src#RID_SVXDLG_AREA.tabdialog.text"
+msgid "Area"
+msgstr "Область"
+
+#: tabarea.src#STR_LB_HATCHINGSTYLE.string.text
+#, fuzzy
+msgid "Hatching Style"
+msgstr "Штрихування"
+
+#: tabarea.src#STR_CUI_COLORMODEL.string.text
+#, fuzzy
+msgid "Color Mode"
+msgstr "Режим контуру"
diff --git a/source/uk/dbaccess/source/core/resource.po b/source/uk/dbaccess/source/core/resource.po
new file mode 100644
index 00000000000..af636ba06e7
--- /dev/null
+++ b/source/uk/dbaccess/source/core/resource.po
@@ -0,0 +1,303 @@
+#. 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: 2011-04-11 23:35+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "Спроба відкрити таблицю $name$."
+
+#: strings.src#RID_STR_CONNECTION_INVALID.string.text
+msgid "No connection could be established."
+msgstr "Не вдається встановити зв'язок."
+
+#: 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 "Таблиця $name$ вже існує. Вона не є видимою, оскільки була профільтрована."
+
+#: 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 "Ви не маєте прав на зміну конфігурації цього об'єкту."
+
+#: 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 "Неможливо з'єднатися із зовнішнім джерелом даних. Невідома помилка. Можливо спричинено проблемами з драйвером."
+
+#: 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 "Неможливо з'єднатися із зовнішнім джерелом даних. Для вказаного URL не знайдено драйвер SDBC."
+
+#: 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 "Неможливо з'єднатися із зовнішнім джерелом даних. Менеджер драйвер SDBC не завантажується."
+
+#: strings.src#RID_STR_FORM.string.text
+msgid "Form"
+msgstr "Форма"
+
+#: strings.src#RID_STR_REPORT.string.text
+msgid "Report"
+msgstr "Звіт"
+
+#: 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 "Джерело даних не було збережено. Будь-ласка, використовуйте інтерфейс XStorable для збереження джерела даних."
+
+#: strings.src#RID_STR_ONLY_QUERY.string.text
+msgid ""
+"The given command is not a SELECT statement.\n"
+"Only queries are allowed."
+msgstr ""
+"Запит не є запитом типу SELECT.\n"
+"Дозволено лише запити, що не змінюють дані."
+
+#: strings.src#RID_STR_NO_VALUE_CHANGED.string.text
+msgid "No values were modified."
+msgstr "Жодне значення не змінено."
+
+#: strings.src#RID_STR_NO_XROWUPDATE.string.text
+msgid "Values could not be inserted. The XRowUpdate interface is not supported by ResultSet."
+msgstr "Значення не можуть бути вставлені. Інтерфейс XRowUpdate не підтримується ResultSet."
+
+#: strings.src#RID_STR_NO_XRESULTSETUPDATE.string.text
+msgid "Values could not be inserted. The XResultSetUpdate interface is not supported by ResultSet."
+msgstr "Значення не можуть бути вставлені. Інтерфейс XResultSetUpdate не підтримується ResultSet."
+
+#: strings.src#RID_STR_NO_UPDATE_MISSING_CONDITION.string.text
+msgid "Values could not be modified, due to a missing condition statement."
+msgstr "Значення не можуть буди змінені через нестачу твердження умови."
+
+#: strings.src#RID_STR_NO_COLUMN_ADD.string.text
+msgid "The adding of columns is not supported."
+msgstr "Додавання стовпчиків не підтримується."
+
+#: strings.src#RID_STR_NO_COLUMN_DROP.string.text
+msgid "The dropping of columns is not supported."
+msgstr "Вилучення стовпчиків не підтримується."
+
+#: strings.src#RID_STR_NO_CONDITION_FOR_PK.string.text
+msgid "The WHERE condition could not be created for the primary key."
+msgstr "Не можна накладати умову WHERE на первинний ключ."
+
+#: strings.src#RID_STR_COLUMN_UNKNOWN_PROP.string.text
+msgid "The column does not support the property '%value'."
+msgstr "Стовпчик не підтримує властивість '%value'."
+
+#: strings.src#RID_STR_COLUMN_NOT_SEARCHABLE.string.text
+msgid "The column is not searchable!"
+msgstr "Неможливо здійснити пошук за цим стовпчиком!"
+
+#: strings.src#RID_STR_NOT_SEQUENCE_INT8.string.text
+msgid "The value of the columns is not of the type Sequence<sal_Int8>."
+msgstr "Значення стовпчиків не належать до типу Sequence<sal_Int8>."
+
+#: strings.src#RID_STR_COLUMN_NOT_VALID.string.text
+msgid "The column is not valid."
+msgstr "Стовпчик некоректний."
+
+#: strings.src#RID_STR_COLUMN_MUST_VISIBLE.string.text
+msgid "The column '%name' must be visible as a column."
+msgstr "Стовпчик '%name' має бути видимим як стовпчик."
+
+#: strings.src#RID_STR_NO_XQUERIESSUPPLIER.string.text
+msgid "The interface XQueriesSupplier is not available."
+msgstr "Інтерфейс XQueriesSupplier недоступний."
+
+#: strings.src#RID_STR_NOT_SUPPORTED_BY_DRIVER.string.text
+msgid "The driver does not support this function."
+msgstr "Драйвер не підтримує цю функцію."
+
+#: strings.src#RID_STR_NO_ABS_ZERO.string.text
+msgid "An 'absolute(0)' call is not allowed."
+msgstr "Виклик 'absolute(0)' не дозволений."
+
+#: strings.src#RID_STR_NO_RELATIVE.string.text
+msgid "Relative positioning is not allowed in this state."
+msgstr "Відносні позиції недоступні у цьому стані."
+
+#: 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 "Рядок неможливо оновити, коли ResultSet розташований за останнім стовпчиком."
+
+#: 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 "Неможливо додати новий рядок, доки ResultSet не переміщений на доданий рядок."
+
+#: strings.src#RID_STR_NO_UPDATEROW.string.text
+msgid "A row cannot be modified in this state"
+msgstr "Рядок не може бути змінений у цьому стані"
+
+#: strings.src#RID_STR_NO_DELETEROW.string.text
+msgid "A row cannot be deleted in this state."
+msgstr "Рядок не може бути вилучений у цьому стані."
+
+#: strings.src#RID_STR_NO_TABLE_RENAME.string.text
+msgid "The driver does not support table renaming."
+msgstr "Драйвер не підтримує перейменування таблиць."
+
+#: strings.src#RID_STR_NO_ALTER_COLUMN_DEF.string.text
+msgid "The driver does not support the modification of column descriptions."
+msgstr "Драйвер не підтримує зміну описів стовпчиків."
+
+#: 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 "Драйвер не підтримує зміну описів полів шляхом зміни їх назви."
+
+#: 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 "Драйвер не підтримує зміну описів стовпчиків шляхом зміни їх індексу."
+
+#: strings.src#RID_STR_FILE_DOES_NOT_EXIST.string.text
+msgid "The file \"$file$\" does not exist."
+msgstr "Файл \"$file$\" не існує."
+
+#: strings.src#RID_STR_TABLE_DOES_NOT_EXIST.string.text
+msgid "There exists no table named \"$table$\"."
+msgstr "Таблиця \"$table$\" не існує."
+
+#: strings.src#RID_STR_QUERY_DOES_NOT_EXIST.string.text
+msgid "There exists no query named \"$table$\"."
+msgstr "Таблиця \"$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 "Деякі назви таблиць у цій базі даних конфліктують з назвами існуючих запитів. Для можливості використання всіх запитів та таблиць використовуйте унікальні назви."
+
+#: strings.src#RID_STR_COMMAND_LEADING_TO_ERROR.string.text
+msgid ""
+"The SQL command leading to this error is:\n"
+"\n"
+"$command$"
+msgstr ""
+"SQL-запит призвів до помилки:\n"
+"\n"
+"$command$"
+
+#: strings.src#RID_STR_STATEMENT_WITHOUT_RESULT_SET.string.text
+msgid "The SQL command does not describe a result set."
+msgstr "Команда SQL не описує множину результату."
+
+#: strings.src#RID_STR_NAME_MUST_NOT_BE_EMPTY.string.text
+msgid "The name must not be empty."
+msgstr "Назва не повинна бути порожньою."
+
+#: strings.src#RID_STR_NO_NULL_OBJECTS_IN_CONTAINER.string.text
+msgid "The container cannot contain NULL objects."
+msgstr "Контейнер не може містити нульові об'єкти."
+
+#: strings.src#RID_STR_NAME_ALREADY_USED.string.text
+msgid "There already is an object with the given name."
+msgstr "Об'єкт з такою назвою вже існує."
+
+#: strings.src#RID_STR_OBJECT_CONTAINER_MISMATCH.string.text
+msgid "This object cannot be part of this container."
+msgstr "Цей об'єкт не може бути частиною цього контейнера."
+
+#: strings.src#RID_STR_OBJECT_ALREADY_CONTAINED.string.text
+msgid "The object already is, with a different name, part of the container."
+msgstr "Цей об'єкт з іншою назвою вже є частиною цього контейнера."
+
+#: strings.src#RID_STR_NAME_NOT_FOUND.string.text
+msgid "Unable to find the document '$name$'."
+msgstr ""
+
+#: strings.src#RID_STR_ERROR_WHILE_SAVING.string.text
+msgid ""
+"Could not save the document to $location$:\n"
+"$message$"
+msgstr ""
+
+#: strings.src#RID_NO_SUCH_DATA_SOURCE.string.text
+msgid ""
+"Error accessing data source '$name$':\n"
+"$error$"
+msgstr ""
+
+#: strings.src#RID_STR_NO_SUB_FOLDER.string.text
+msgid "There exists no folder named \"$folder$\"."
+msgstr "Таблиця \"$table$\" не існує."
+
+#: strings.src#RID_STR_NO_DELETE_BEFORE_AFTER.string.text
+msgid "Cannot delete the before-first or after-last row."
+msgstr ""
+
+#: strings.src#RID_STR_NO_DELETE_INSERT_ROW.string.text
+msgid "Cannot delete the insert-row."
+msgstr ""
+
+#: strings.src#RID_STR_RESULT_IS_READONLY.string.text
+msgid "Result set is read only."
+msgstr ""
+
+#: strings.src#RID_STR_NO_DELETE_PRIVILEGE.string.text
+msgid "DELETE privilege not available."
+msgstr ""
+
+#: strings.src#RID_STR_ROW_ALREADY_DELETED.string.text
+msgid "Current row is already deleted."
+msgstr ""
+
+#: strings.src#RID_STR_UPDATE_FAILED.string.text
+#, fuzzy
+msgid "Current row could not be updated."
+msgstr "Неможливо оновити посилання."
+
+#: strings.src#RID_STR_NO_INSERT_PRIVILEGE.string.text
+msgid "INSERT privilege not available."
+msgstr ""
+
+#: strings.src#RID_STR_INTERNAL_ERROR.string.text
+msgid "Internal error: no statement object provided by the database driver."
+msgstr ""
+
+#: strings.src#RID_STR_EXPRESSION1.string.text
+msgid "Expression1"
+msgstr ""
+
+#: strings.src#RID_STR_NO_SQL_COMMAND.string.text
+msgid "No SQL command was provided."
+msgstr ""
+
+#: strings.src#RID_STR_INVALID_INDEX.string.text
+msgid "Invalid column index."
+msgstr ""
+
+#: strings.src#RID_STR_INVALID_CURSOR_STATE.string.text
+msgid "Invalid cursor state."
+msgstr ""
+
+#: strings.src#RID_STR_CURSOR_BEFORE_OR_AFTER.string.text
+msgid "The cursor points to before the first or after the last row."
+msgstr ""
+
+#: 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 ""
+
+#: strings.src#RID_STR_NO_BOOKMARK_DELETED.string.text
+msgid "The current row is deleted, and thus doesn't have a bookmark."
+msgstr ""
+
+#: strings.src#RID_STR_NO_EMBEDDING.string.text
+msgid "Embedding of database documents is not supported."
+msgstr ""
+
+#: strings.src#RID_STR_CONNECTION_REQUEST.string.text
+msgid "A connection for the following URL was requested \"$name$\"."
+msgstr ""
+
+#: strings.src#RID_STR_MISSING_EXTENSION.string.text
+msgid "The extension is not installed."
+msgstr ""
diff --git a/source/uk/dbaccess/source/ext/macromigration.po b/source/uk/dbaccess/source/ext/macromigration.po
new file mode 100644
index 00000000000..d0836734b91
--- /dev/null
+++ b/source/uk/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: 2011-04-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: macromigration.src#DLG_MACRO_MIGRATION.STR_STATE_CLOSE_SUB_DOCS.string.text
+msgid "Prepare"
+msgstr "Підготовка"
+
+#: macromigration.src#DLG_MACRO_MIGRATION.STR_STATE_BACKUP_DBDOC.string.text
+msgid "Backup Document"
+msgstr "Резервне копіювання документу"
+
+#: macromigration.src#DLG_MACRO_MIGRATION.STR_STATE_MIGRATE.string.text
+msgid "Migrate"
+msgstr "Міграція"
+
+#: macromigration.src#DLG_MACRO_MIGRATION.STR_STATE_SUMMARY.string.text
+msgctxt "macromigration.src#DLG_MACRO_MIGRATION.STR_STATE_SUMMARY.string.text"
+msgid "Summary"
+msgstr "Зведення"
+
+#: macromigration.src#DLG_MACRO_MIGRATION.modaldialog.text
+msgid "Database Document Macro Migration"
+msgstr "Міграція макросів у документі бази даних"
+
+#: macromigration.src#TP_PREPARE.FT_HEADER.fixedtext.text
+msgid "Welcome to the Database Macro Migration Wizard"
+msgstr "Ласкаво просимо до помічника перетворення макросів бази даних"
+
+#: 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 ""
+"Цей помічник допоможе виконати міграцію ваших макросів та сценаріїв.\n"
+"\n"
+"Після завершення його роботи, усі макроси та сценарії, що були раніше вбудовані у ваші форми та звіти будуть переміщені у документ бази даних. При цьому, відповідним чином будуть перейменовані бібліотеки.\n"
+"\n"
+"Якщо форми та звіти містять посилання на ці макроси та сценарії, такі посилання будуть виправлені, де це можливо.\n"
+"\n"
+"Перш ніж почати міграцію, слід закрити усі форми, звіти запити та таблиці. Для цього натисніть 'Далі'."
+
+#: 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 "Не всі об'єкти можна закрити. Закрийте їх вручну та перезапустіть помічника."
+
+#: macromigration.src#TP_SAVE_DBDOC_AS.FT_HEADER.fixedtext.text
+msgid "Backup your Document"
+msgstr "Резервна копія документу"
+
+#: 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 "Щоб забезпечити можливість повернення до стану перед міграцією, буде створено резервну копію документу бази даних у обраному вами місці. Усі зміни виконуватимуться у оригінальному документі, резервна копія залишатиметься недоторканою."
+
+#: macromigration.src#TP_SAVE_DBDOC_AS.FT_SAVE_AS_LABEL.fixedtext.text
+msgid "Save To:"
+msgstr "Зберегти до:"
+
+#: macromigration.src#TP_SAVE_DBDOC_AS.PB_BROWSE_SAVE_AS_LOCATION.pushbutton.text
+msgid "Browse ..."
+msgstr "Огляд..."
+
+#: 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 "Натисніть 'Далі' щоб зберегти копію документу, та почати міграцію."
+
+#: macromigration.src#TP_MIGRATE.FT_HEADER.fixedtext.text
+msgid "Migration Progress"
+msgstr "Поступ міграції"
+
+#: 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 "Документ бази даних містить $forms$ форм та $reports$ звітів, які наразі обробляються:"
+
+#: macromigration.src#TP_MIGRATE.FT_CURRENT_OBJECT_LABEL.fixedtext.text
+msgid "Current object:"
+msgstr "Поточний об'єкт:"
+
+#: macromigration.src#TP_MIGRATE.FT_CURRENT_PROGRESS_LABEL.fixedtext.text
+msgid "Current progress:"
+msgstr "Поточний поступ:"
+
+#: macromigration.src#TP_MIGRATE.FT_ALL_PROGRESS_LABEL.fixedtext.text
+msgid "Overall progress:"
+msgstr "Загальний поступ:"
+
+#: 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 "документ $current$ з $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 "Усі документи успішно оброблено. Натисніть 'Далі' для відображення зведеного звіту."
+
+#: macromigration.src#TP_SUMMARY.FT_HEADER.fixedtext.text
+msgctxt "macromigration.src#TP_SUMMARY.FT_HEADER.fixedtext.text"
+msgid "Summary"
+msgstr "Зведення"
+
+#: 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 ""
+
+#: macromigration.src#TP_SUMMARY.STR_UNSUCCESSFUL.string.text
+msgid "The migration was not successful. Examine the migration log below for details."
+msgstr ""
+
+#. This refers to a form document inside a database document.
+#: macromigration.src#STR_FORM.string.text
+msgid "Form '$name$'"
+msgstr "Форма '$name$'"
+
+#. This refers to a report document inside a database document.
+#: macromigration.src#STR_REPORT.string.text
+msgid "Report '$name$'"
+msgstr "Звіт '$name$'"
+
+#: macromigration.src#STR_OVERALL_PROGRESS.string.text
+msgctxt "macromigration.src#STR_OVERALL_PROGRESS.string.text"
+msgid "document $current$ of $overall$"
+msgstr "документ $current$ з $overall$"
+
+#: macromigration.src#STR_DATABASE_DOCUMENT.string.text
+msgid "Database Document"
+msgstr "Документ бази даних"
+
+#: macromigration.src#STR_SAVED_COPY_TO.string.text
+msgid "saved copy to $location$"
+msgstr "копію збережено до $location$"
+
+#: macromigration.src#STR_MOVED_LIBRARY.string.text
+msgid "migrated $type$ library '$old$' to '$new$'"
+msgstr "переміщено $type$ біліотеку $old$ до $new$"
+
+#: macromigration.src#STR_LIBRARY_TYPE_AND_NAME.string.text
+msgid "$type$ library '$library$'"
+msgstr ""
+
+#: macromigration.src#STR_MIGRATING_LIBS.string.text
+msgid "migrating libraries ..."
+msgstr ""
+
+#: 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 "діалог"
+
+#: macromigration.src#STR_ERRORS.string.text
+msgid "Error(s)"
+msgstr ""
+
+#: macromigration.src#STR_WARNINGS.string.text
+msgid "Warnings"
+msgstr ""
+
+#: macromigration.src#STR_EXCEPTION.string.text
+msgid "caught exception:"
+msgstr ""
+
+#: macromigration.src#ERR_INVALID_BACKUP_LOCATION.errorbox.text
+msgid "You need to choose a backup location other than the document location itself."
+msgstr ""
+
+#: macromigration.src#STR_INVALID_NUMBER_ARGS.string.text
+msgid "Invalid number of initialization arguments. Expected 1."
+msgstr ""
+
+#: macromigration.src#STR_NO_DATABASE.string.text
+msgid "No database document found in the initialization arguments."
+msgstr ""
+
+#: macromigration.src#STR_NOT_READONLY.string.text
+msgid "Not applicable to read-only documents."
+msgstr ""
diff --git a/source/uk/dbaccess/source/sdbtools/resource.po b/source/uk/dbaccess/source/sdbtools/resource.po
new file mode 100644
index 00000000000..d1df5107542
--- /dev/null
+++ b/source/uk/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: 2011-04-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\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 "Таблиця та запит не можуть мати однакову назву. Використовуйте назву, яка ще не використовувалась для запиту чи таблиці."
+
+#: sdbt_strings.src#STR_BASENAME_TABLE.string.text
+msgid "Table"
+msgstr "Таблиця"
+
+#: sdbt_strings.src#STR_BASENAME_QUERY.string.text
+msgid "Query"
+msgstr "Запит"
+
+#: sdbt_strings.src#STR_CONN_WITHOUT_QUERIES_OR_TABLES.string.text
+msgid "The given connection is no valid query and/or tables supplier."
+msgstr "Вказане з'єднання не постачає коректний запит та/або таблицю."
+
+#: sdbt_strings.src#STR_NO_TABLE_OBJECT.string.text
+msgid "The given object is no table object."
+msgstr "Вказаний об'єкт не є таблицею."
+
+#: sdbt_strings.src#STR_INVALID_COMPOSITION_TYPE.string.text
+msgid "Invalid composition type - need a value from com.sun.star.sdb.tools.CompositionType."
+msgstr "Композиція неправильного типу - потрібне значення з 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 "Команда неправильного типу - дозволяються лише команди TABLE та AND QUERY з com.sun.star.sdb.CommandType."
diff --git a/source/uk/dbaccess/source/ui/app.po b/source/uk/dbaccess/source/ui/app.po
new file mode 100644
index 00000000000..7e30952c2c4
--- /dev/null
+++ b/source/uk/dbaccess/source/ui/app.po
@@ -0,0 +1,297 @@
+#. 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: 2011-04-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: app.src#RID_STR_NEW_FORM.string.text
+msgid "Create Form in Design View..."
+msgstr "Створити форму в режимі дизайнера..."
+
+#: app.src#RID_STR_NEW_FORM_AUTO.string.text
+msgid "Use Wizard to Create Form..."
+msgstr "Використати помічника для створення Форми..."
+
+#: app.src#RID_STR_NEW_REPORT_AUTO.string.text
+msgid "Use Wizard to Create Report..."
+msgstr "Використати помічник для створення звіту..."
+
+#: app.src#RID_STR_NEW_REPORT.string.text
+msgid "Create Report in Design View..."
+msgstr "Створити звіт у режимі дизайну..."
+
+#: app.src#RID_STR_NEW_QUERY.string.text
+msgid "Create Query in Design View..."
+msgstr "Створити запит у режимі дизайну..."
+
+#: app.src#RID_STR_NEW_QUERY_SQL.string.text
+msgid "Create Query in SQL View..."
+msgstr "Створити запит у SQL-представленні..."
+
+#: app.src#RID_STR_NEW_QUERY_AUTO.string.text
+msgid "Use Wizard to Create Query..."
+msgstr "Використати помічника для створення запиту..."
+
+#: app.src#RID_STR_NEW_TABLE.string.text
+msgid "Create Table in Design View..."
+msgstr "Створити таблицю у режимі дизайну..."
+
+#: app.src#RID_STR_NEW_TABLE_AUTO.string.text
+msgid "Use Wizard to Create Table..."
+msgstr "Використати помічника для створення таблиці..."
+
+#: app.src#RID_STR_NEW_VIEW.string.text
+msgid "Create View..."
+msgstr "Створити представлення..."
+
+#: app.src#RID_STR_FORMS_CONTAINER.string.text
+msgid "Forms"
+msgstr "Форми"
+
+#: app.src#RID_STR_REPORTS_CONTAINER.string.text
+msgid "Reports"
+msgstr "Звіти"
+
+#: app.src#RID_MENU_APP_NEW.SID_APP_NEW_FORM.menuitem.text
+msgid "Form..."
+msgstr "Форма..."
+
+#: 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 "Звіт..."
+
+#: app.src#RID_MENU_APP_NEW.SID_DB_NEW_VIEW_SQL.menuitem.text
+msgid "View (Simple)..."
+msgstr "Представлення (просте)..."
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_PASTE_SPECIAL.menuitem.text
+msgid "Paste Special..."
+msgstr "Спеціальна вставка..."
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_DELETE.menuitem.text
+msgid "Delete"
+msgstr "Вилучити"
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_RENAME.menuitem.text
+msgid "Rename"
+msgstr "Перейменувати"
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_EDIT.menuitem.text
+msgid "Edit"
+msgstr "Змінити"
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_EDIT_SQL_VIEW.menuitem.text
+msgid "Edit in SQL View..."
+msgstr "Редагувати у режимі SQL..."
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_OPEN.menuitem.text
+msgid "Open"
+msgstr "Відкрити"
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_CONVERTTOVIEW.menuitem.text
+msgid "Create as View"
+msgstr "Створити як представлення"
+
+#: app.src#RID_MENU_APP_EDIT.SID_FORM_CREATE_REPWIZ_PRE_SEL.menuitem.text
+msgid "Form Wizard..."
+msgstr "Майстер форм..."
+
+#: 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 "Звіт..."
+
+#: app.src#RID_MENU_APP_EDIT.SID_REPORT_CREATE_REPWIZ_PRE_SEL.menuitem.text
+msgid "Report Wizard..."
+msgstr "Майстер звітів..."
+
+#: app.src#RID_MENU_APP_EDIT.SID_SELECTALL.menuitem.text
+msgid "Select All"
+msgstr "Виділити все"
+
+#: app.src#RID_MENU_APP_EDIT.MN_PROPS.SID_DB_APP_DSPROPS.menuitem.text
+#, fuzzy
+msgid "Properties..."
+msgstr "Властивості"
+
+#: app.src#RID_MENU_APP_EDIT.MN_PROPS.SID_DB_APP_DSCONNECTION_TYPE.menuitem.text
+#, fuzzy
+msgid "Connection Type..."
+msgstr "Тип з'єднання"
+
+#: app.src#RID_MENU_APP_EDIT.MN_PROPS.SID_DB_APP_DSADVANCED_SETTINGS.menuitem.text
+#, fuzzy
+msgid "Advanced Settings..."
+msgstr "Додаткові параметри"
+
+#: app.src#RID_MENU_APP_EDIT.MN_PROPS.menuitem.text
+msgid "~Database"
+msgstr "~База даних"
+
+#: app.src#STR_QUERY_DELETE_DATASOURCE.string.text
+msgid "Do you want to delete the data source '%1'?"
+msgstr "Хочете видалити джерело даних '%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 "Помічник допоможе за кілька кроків створити звіт"
+
+#: app.src#RID_STR_FORMS_HELP_TEXT.string.text
+msgid "Create a form by specifying the record source, controls, and control properties."
+msgstr "Створити форму, зазначивши джерело даних, елементи керування та властивості керування."
+
+#: app.src#RID_STR_REPORT_HELP_TEXT.string.text
+msgid "Create a report by specifying the record source, controls, and control properties."
+msgstr "Створити звіт, вказавши джерело звіту, елементи керування та їх властивості."
+
+#: 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 "Помічник допоможе пройти кроки створення форми."
+
+#: app.src#RID_STR_QUERIES_HELP_TEXT.string.text
+#, fuzzy
+msgid "Create a query by specifying the filters, input tables, field names, and properties for sorting or grouping."
+msgstr "Створити запит, вказавши фільтри, первинні таблиці, назви полів та властивості сортування та групування."
+
+#: app.src#RID_STR_QUERIES_HELP_TEXT_SQL.string.text
+#, fuzzy
+msgid "Create a query entering an SQL statement directly."
+msgstr "Створити запит безпосереднім введенням 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 "Цей помічник допоможе вам створити запит."
+
+#: 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 "Створити таблицю, вказавши назви полів та їх властивості, такі як типи даних."
+
+#: 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 "Виберіть з прикладів персональних та бізнес таблиць, які ви налаштуєте для створення таблиці."
+
+#: 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 "Створити представлення, обравши таблиці та назви полів, які мають бути видимі."
+
+#: app.src#RID_STR_VIEWS_HELP_TEXT_WIZARD.string.text
+msgid "Opens the view wizard"
+msgstr "Відкрити майстер представлений."
+
+#: app.src#STR_DATABASE.string.text
+msgid "Database"
+msgstr "База даних"
+
+#: app.src#STR_TASKS.string.text
+msgid "Tasks"
+msgstr "Завдання"
+
+#: app.src#STR_DESCRIPTION.string.text
+msgid "Description"
+msgstr "Опис"
+
+#: app.src#STR_PREVIEW.string.text
+msgid "Preview"
+msgstr "Попередній перегляд"
+
+#: app.src#STR_DISABLEPREVIEW.string.text
+msgid "Disable Preview"
+msgstr "Деактивувати попередній перегляд"
+
+#: app.src#APP_SAVEMODIFIED.querybox.text
+msgid ""
+"The database has been modified.\n"
+"Do you want to save the changes?"
+msgstr ""
+"Базу даних було змінено. \n"
+"Зберегти зміни?"
+
+#: 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 ""
+"Змінився тип з'єднання.\n"
+"Щоб зміни набрали сили, треба закрити всі форми, звіти, запити та таблиці.\n"
+"\n"
+"Закрити всі документи зараз?"
+
+#: app.src#RID_MENU_APP_PREVIEW.SID_DB_APP_DISABLE_PREVIEW.menuitem.text
+msgid "None"
+msgstr "Очиатити"
+
+#: app.src#RID_MENU_APP_PREVIEW.SID_DB_APP_VIEW_DOCINFO_PREVIEW.menuitem.text
+msgid "Document Information"
+msgstr "Інформація про документ"
+
+#: app.src#RID_MENU_APP_PREVIEW.SID_DB_APP_VIEW_DOC_PREVIEW.menuitem.text
+msgid "Document"
+msgstr "Документ"
+
+#: app.src#RID_STR_FORM.string.text
+msgid "Form"
+msgstr "Форма"
+
+#: app.src#RID_STR_REPORT.string.text
+msgid "Report"
+msgstr "Звіт"
+
+#: app.src#STR_FRM_LABEL.string.text
+msgid "F~orm name"
+msgstr "Назва ~форми"
+
+#: app.src#STR_RPT_LABEL.string.text
+msgid "~Report name"
+msgstr "Назва ~звіту"
+
+#: app.src#STR_FOLDER_LABEL.string.text
+msgid "F~older name"
+msgstr "Назва ~теки"
+
+#: app.src#STR_SUB_DOCS_WITH_SCRIPTS.string.text
+msgid "The document contains forms or reports with embedded macros."
+msgstr ""
+
+#: 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 ""
+"Тепер сценарії та макроси мають бути вбудовані у документ бази даних.\n"
+"\n"
+"Ви можете використовувати документ як і раніше, проте, ми радимо мігрувати ваші сценарії та макроси. Для цього слугує пункт меню 'Сервіс / Мігрувати сценарії та макроси ...'.\n"
+"\n"
+"Зверніть увагу, ви не зможете вбудовувати макроси чи сценарії у документ бази даних доки міграція не завершиться."
+
+#: app.src#RID_STR_EMBEDDED_DATABASE.string.text
+msgid "Embedded database"
+msgstr ""
+
+#: app.src#RID_STR_NO_DIFF_CAT.string.text
+msgid "You cannot select different categories."
+msgstr ""
+
+#: app.src#RID_STR_UNSUPPORTED_OBJECT_TYPE.string.text
+msgid "Unsupported object type found ($type$)."
+msgstr ""
diff --git a/source/uk/dbaccess/source/ui/browser.po b/source/uk/dbaccess/source/ui/browser.po
new file mode 100644
index 00000000000..3f7c1e38721
--- /dev/null
+++ b/source/uk/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: 2011-04-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\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 "Таблиця #"
+
+#: sbagrid.src#RID_SBA_GRID_COLCTXMENU.ID_BROWSER_COLATTRSET.menuitem.text
+msgid "Column ~Format..."
+msgstr "~Формат стовпчика..."
+
+#: sbagrid.src#RID_SBA_GRID_COLCTXMENU.ID_BROWSER_COLUMNINFO.menuitem.text
+msgid "Copy Column D~escription"
+msgstr "Копіювати ~опис стовпчика"
+
+#: sbagrid.src#RID_SBA_GRID_ROWCTXMENU.ID_BROWSER_TABLEATTR.menuitem.text
+msgid "Table Format..."
+msgstr "Формат таблиці..."
+
+#: sbagrid.src#RID_SBA_GRID_ROWCTXMENU.ID_BROWSER_ROWHEIGHT.menuitem.text
+msgid "Row Height..."
+msgstr "Висота рядків..."
+
+#: sbagrid.src#RID_STR_UNDO_MODIFY_RECORD.string.text
+msgid "Undo: Data Input"
+msgstr "Скасувати: ввід даних"
+
+#: sbagrid.src#RID_STR_SAVE_CURRENT_RECORD.string.text
+msgid "Save current record"
+msgstr "Зберегти поточний запис"
+
+#: sbagrid.src#STR_QRY_TITLE.string.text
+msgid "Query #"
+msgstr "Запит #"
+
+#: sbagrid.src#STR_TBL_TITLE.string.text
+msgctxt "sbagrid.src#STR_TBL_TITLE.string.text"
+msgid "Table #"
+msgstr "Таблиця #"
+
+#: sbagrid.src#STR_VIEW_TITLE.string.text
+msgid "View #"
+msgstr "Представлення #"
+
+#: sbagrid.src#STR_NAME_ALREADY_EXISTS.string.text
+msgid "The name \"#\" already exists."
+msgstr "Назва \"#\" вже існує."
+
+#: sbagrid.src#STR_NO_COLUMNNAME_MATCHING.string.text
+msgid "No matching column names were found."
+msgstr "Не знайдені відповідні назви стовпчиків."
+
+#: sbagrid.src#STR_ERROR_OCCURRED_WHILE_COPYING.string.text
+msgid "An error occurred. Do you want to continue copying?"
+msgstr "Помилка. Продовжити копіювання?"
+
+#: sbagrid.src#STR_DATASOURCE_GRIDCONTROL_NAME.string.text
+msgid "Data source table view"
+msgstr "Вигляд таблиці джерела даних"
+
+#: sbagrid.src#STR_DATASOURCE_GRIDCONTROL_DESC.string.text
+msgid "Shows the selected table or query."
+msgstr "Покаже вибрану таблицю або запит."
+
+#: sbabrw.src#QUERY_BRW_SAVEMODIFIED.querybox.text
+msgid ""
+"The current record has been changed.\n"
+"Do you want to save the changes?"
+msgstr ""
+"Поточний запис був змінений.\n"
+"Зберегти зміни?"
+
+#: sbabrw.src#QUERY_BRW_DELETE_ROWS.querybox.text
+msgid "Do you want to delete the selected data?"
+msgstr "Видалити обрані дані?"
+
+#: sbabrw.src#RID_STR_DATABROWSER_FILTERED.string.text
+msgid "(filtered)"
+msgstr "(профільтровано)"
+
+#: sbabrw.src#SBA_BROWSER_SETTING_ORDER.string.text
+msgid "Error setting the sort criteria"
+msgstr "Помилка при встановленні умов сортування"
+
+#: sbabrw.src#SBA_BROWSER_SETTING_FILTER.string.text
+msgid "Error setting the filter criteria"
+msgstr "Помилка при встановленні умов фільтрації"
+
+#: sbabrw.src#RID_STR_CONNECTION_LOST.string.text
+msgid "Connection lost"
+msgstr "Розрив зв'язку"
+
+#: sbabrw.src#RID_STR_QUERIES_CONTAINER.string.text
+msgid "Queries"
+msgstr "Запити"
+
+#: sbabrw.src#RID_STR_TABLES_CONTAINER.string.text
+msgid "Tables"
+msgstr "Таблиці"
+
+#: sbabrw.src#MID_EDIT_DATABASE.#define.text
+msgid "Edit ~Database File..."
+msgstr "~Редагування бази даних..."
+
+#: sbabrw.src#MID_ADMINISTRATE.#define.text
+msgid "Registered databases ..."
+msgstr "Зареєстровані бази даних..."
+
+#: sbabrw.src#MID_CLOSECONN.#define.text
+msgid "Disco~nnect"
+msgstr "~Відключити"
+
+#: sbabrw.src#STR_TITLE_CONFIRM_DELETION.string.text
+msgid "Confirm Deletion"
+msgstr "Підтвердження видалення"
+
+#: sbabrw.src#STR_QUERY_DELETE_TABLE.string.text
+msgid "Do you want to delete the table '%1'?"
+msgstr "Видалити таблицю '%1'?"
+
+#: sbabrw.src#QUERY_BRW_DELETE_QUERY_CONFIRM.querybox.text
+msgid "The query already exists. Do you want to delete it?"
+msgstr "Запит вже існує. Видалити його?"
+
+#: sbabrw.src#QUERY_CONNECTION_LOST.querybox.text
+msgid "The connection to the database has been lost. Do you want to reconnect?"
+msgstr "З'єднання з базою даних втрачено. Відновити?"
+
+#: sbabrw.src#STR_OPENTABLES_WARNINGS.string.text
+msgid "Warnings encountered"
+msgstr "Попередження"
+
+#: sbabrw.src#STR_OPENTABLES_WARNINGS_DETAILS.string.text
+msgid "While retrieving the tables, warnings were reported by the database connection."
+msgstr "При отриманні таблиці із з'єднання з базою даних виявлено попередження."
+
+#: sbabrw.src#STR_CONNECTING_DATASOURCE.string.text
+msgid "Connecting to \"$name$\" ..."
+msgstr "З'єднання з \"$name$\" ..."
+
+#: sbabrw.src#STR_LOADING_QUERY.string.text
+msgid "Loading query $name$ ..."
+msgstr "Завантаження запиту $name$ ..."
+
+#: sbabrw.src#STR_LOADING_TABLE.string.text
+msgid "Loading table $name$ ..."
+msgstr "Відкриття таблиці $name$ ..."
+
+#: sbabrw.src#STR_NO_TABLE_FORMAT_INSIDE.string.text
+msgid "No table format could be found."
+msgstr "Неможливо знайти формат таблиці."
+
+#: sbabrw.src#STR_COULDNOTCONNECT_DATASOURCE.string.text
+msgid "The connection to the data source \"$name$\" could not be established."
+msgstr "Неможливо встановити з'єднання з джерелом даних \"$name$\"."
+
+#: sbabrw.src#RID_MENU_REFRESH_DATA.ID_BROWSER_REFRESH_REBUILD.menuitem.text
+msgid "Rebuild"
+msgstr "Перечитати"
diff --git a/source/uk/dbaccess/source/ui/control.po b/source/uk/dbaccess/source/ui/control.po
new file mode 100644
index 00000000000..c853ff85876
--- /dev/null
+++ b/source/uk/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: 2011-04-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "Змінити інструкції SQL"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_NAME.string.text
+msgid "Table name"
+msgstr "Назва таблиці"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_INSERT.string.text
+msgid "Insert data"
+msgstr "Додавання"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_DELETE.string.text
+msgid "Delete data"
+msgstr "Видалення"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_UPDATE.string.text
+msgid "Modify data"
+msgstr "Редагування"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_ALTER.string.text
+msgid "Alter structure"
+msgstr "Змінити структуру"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_SELECT.string.text
+msgid "Read data"
+msgstr "Читання"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_REFERENCE.string.text
+msgid "Modify references"
+msgstr "Змінити посилання"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_DROP.string.text
+msgid "Drop structure"
+msgstr "Ігнорувати структуру"
+
+#: tabletree.src#MENU_TABLETREE_POPUP.MID_SORT_ASCENDING.menuitem.text
+msgid "Sort Ascending"
+msgstr "Сортування за зростанням"
+
+#: tabletree.src#MENU_TABLETREE_POPUP.MID_SORT_DECENDING.menuitem.text
+msgid "Sort Descending"
+msgstr "Сортування за спаданням"
+
+#: tabletree.src#STR_COULDNOTCREATE_DRIVERMANAGER.string.text
+msgid "Cannot connect to the SDBC driver manager (#servicename#)."
+msgstr "Неможливо з'єднатися з менеджером драйвера SDBC (#servicename#)."
+
+#: tabletree.src#STR_NOREGISTEREDDRIVER.string.text
+msgid "A driver is not registered for the URL #connurl#."
+msgstr "Драйвер не зареєстрований для URL #connurl#."
+
+#: tabletree.src#STR_COULDNOTCONNECT.string.text
+msgid "No connection could be established for the URL #connurl#."
+msgstr "Неможливо з'єднатися з URL #connurl#."
+
+#: tabletree.src#STR_COULDNOTCONNECT_PLEASECHECK.string.text
+msgid "Please check the current settings, for example user name and password."
+msgstr "Перевірте поточні параметри, наприклад ім'я користувача та пароль."
+
+#: tabletree.src#STR_NOTABLEINFO.string.text
+msgid "Successfully connected, but information about database tables is not available."
+msgstr "З'єднання встановлено, але інформація про таблиці бази даних недоступна."
+
+#: tabletree.src#STR_ALL_TABLES.string.text
+msgid "All tables"
+msgstr "Усі таблиці"
+
+#: tabletree.src#STR_ALL_VIEWS.string.text
+msgid "All views"
+msgstr "Усі представлення таблиць"
+
+#: tabletree.src#STR_ALL_TABLES_AND_VIEWS.string.text
+msgid "All tables and views"
+msgstr "Усі таблиці та їх представлення"
diff --git a/source/uk/dbaccess/source/ui/dlg.po b/source/uk/dbaccess/source/ui/dlg.po
new file mode 100644
index 00000000000..6e32ff5aa31
--- /dev/null
+++ b/source/uk/dbaccess/source/ui/dlg.po
@@ -0,0 +1,1605 @@
+#. 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: 2011-12-15 17:00+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: textconnectionsettings.src#DLG_TEXT_CONNECTION_SETTINGS.modaldialog.text
+msgid "Text Connection Settings"
+msgstr "Параметри з'єднання"
+
+#: indexdialog.src#DLG_INDEXDESIGN.TLB_ACTIONS.ID_INDEX_NEW.toolboxitem.text
+msgid "New Index"
+msgstr "Новий індекс"
+
+#: indexdialog.src#DLG_INDEXDESIGN.TLB_ACTIONS.ID_INDEX_DROP.toolboxitem.text
+msgid "Delete Current Index"
+msgstr "Видалити поточний індекс"
+
+#: indexdialog.src#DLG_INDEXDESIGN.TLB_ACTIONS.ID_INDEX_RENAME.toolboxitem.text
+msgid "Rename Current Index"
+msgstr "Перейменувати поточний індекс"
+
+#: indexdialog.src#DLG_INDEXDESIGN.TLB_ACTIONS.ID_INDEX_SAVE.toolboxitem.text
+msgid "Save Current Index"
+msgstr "Зберегти поточний індекс"
+
+#: indexdialog.src#DLG_INDEXDESIGN.TLB_ACTIONS.ID_INDEX_RESET.toolboxitem.text
+msgid "Reset Current Index"
+msgstr "Відновити поточний індекс"
+
+#: indexdialog.src#DLG_INDEXDESIGN.FL_INDEXDETAILS.fixedline.text
+msgid "Index details"
+msgstr "Індекс"
+
+#: indexdialog.src#DLG_INDEXDESIGN.FT_DESC_LABEL.fixedtext.text
+msgid "Index identifier:"
+msgstr "Ідентифікатор:"
+
+#: indexdialog.src#DLG_INDEXDESIGN.CB_UNIQUE.checkbox.text
+msgid "~Unique"
+msgstr "~Унікальний"
+
+#: indexdialog.src#DLG_INDEXDESIGN.FT_FIELDS.fixedtext.text
+msgid "Fields"
+msgstr "Поля"
+
+#: indexdialog.src#DLG_INDEXDESIGN.PB_CLOSE.pushbutton.text
+msgctxt "indexdialog.src#DLG_INDEXDESIGN.PB_CLOSE.pushbutton.text"
+msgid "~Close"
+msgstr "~Закрити"
+
+#: indexdialog.src#DLG_INDEXDESIGN.modaldialog.text
+msgctxt "indexdialog.src#DLG_INDEXDESIGN.modaldialog.text"
+msgid "Indexes"
+msgstr "Індекси"
+
+#: indexdialog.src#STR_TAB_INDEX_SORTORDER.string.text
+msgctxt "indexdialog.src#STR_TAB_INDEX_SORTORDER.string.text"
+msgid "Sort order"
+msgstr "Порядок сортування"
+
+#: indexdialog.src#STR_TAB_INDEX_FIELD.string.text
+msgid "Index field"
+msgstr "Поле індексу"
+
+#: indexdialog.src#STR_ORDER_ASCENDING.string.text
+msgid "Ascending"
+msgstr "За зростанням"
+
+#: indexdialog.src#STR_ORDER_DESCENDING.string.text
+msgid "Descending"
+msgstr "За спаданням"
+
+#: indexdialog.src#STR_CONFIRM_DROP_INDEX.string.text
+msgid "Do you really want to delete the index '$name$'?"
+msgstr "Ви дійсно хочете видалити індекс '$name$'?"
+
+#: indexdialog.src#STR_LOGICAL_INDEX_NAME.string.text
+msgid "index"
+msgstr "індекс"
+
+#: indexdialog.src#ERR_NEED_INDEX_FIELDS.errorbox.text
+msgid "The index must contain at least one field."
+msgstr "Індекс має містити принаймні одне поле."
+
+#: indexdialog.src#ERR_NEED_INDEX_FIELDS.errorbox.title
+msgid "Save Index"
+msgstr "Зберегти індекс"
+
+#: indexdialog.src#QUERY_SAVE_CURRENT_INDEX.querybox.text
+msgid "Do you want to save the changes made to the current index?"
+msgstr "Зберегти зміни у поточному індексі?"
+
+#: indexdialog.src#QUERY_SAVE_CURRENT_INDEX.querybox.title
+msgid "Exit Index Design"
+msgstr "закінчити редагування індексу"
+
+#: indexdialog.src#STR_INDEX_NAME_ALREADY_USED.string.text
+msgid "There is already another index named \"$name$\"."
+msgstr "Індекс з назвою \"$named$\" вже існує."
+
+#: 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 "У визначенні індексу стовпчик таблиці можна використовувати не більше одного разу. Ви вже вказали стовпчик \"$name$\" двічі."
+
+#: dlgattr.src#DLG_ATTR.1.pushbutton.text
+msgid "Bac~k"
+msgstr "Н~азад"
+
+#: dlgattr.src#DLG_ATTR.TP_ATTR_CHAR.string.text
+msgid "Font"
+msgstr "Шрифт"
+
+#: dlgattr.src#DLG_ATTR.TP_ATTR_NUMBER.string.text
+msgid "Format"
+msgstr "Формат"
+
+#: dlgattr.src#DLG_ATTR.TP_ATTR_ALIGN.string.text
+msgid "Alignment"
+msgstr "Вирівнювання"
+
+#: dlgattr.src#DLG_ATTR.ST_ROW.string.text
+msgid "Table Format"
+msgstr "Оформлення таблиці"
+
+#: dlgattr.src#DLG_ATTR.tabdialog.text
+msgid "Field Format"
+msgstr "Формат поля"
+
+#: adtabdlg.src#DLG_JOIN_TABADD.RB_CASE_TABLES.radiobutton.text
+msgid "Tables"
+msgstr "Таблиці"
+
+#: adtabdlg.src#DLG_JOIN_TABADD.RB_CASE_QUERIES.radiobutton.text
+msgid "Queries"
+msgstr "Запити"
+
+#: adtabdlg.src#DLG_JOIN_TABADD.PB_ADDTABLE.pushbutton.text
+msgid "~Add"
+msgstr "~Додати"
+
+#: adtabdlg.src#DLG_JOIN_TABADD.PB_CLOSE.cancelbutton.text
+msgctxt "adtabdlg.src#DLG_JOIN_TABADD.PB_CLOSE.cancelbutton.text"
+msgid "~Close"
+msgstr "~Закрити"
+
+#: adtabdlg.src#DLG_JOIN_TABADD.STR_ADD_TABLES.string.text
+msgid "Add Tables"
+msgstr "Додати таблиці"
+
+#: adtabdlg.src#DLG_JOIN_TABADD.STR_ADD_TABLE_OR_QUERY.string.text
+msgid "Add Table or Query"
+msgstr "Додати таблицю чи запит"
+
+#: paramdialog.src#DLG_PARAMETERS.FL_PARAMS.fixedline.text
+msgid "~Parameters"
+msgstr "~Параметри"
+
+#: paramdialog.src#DLG_PARAMETERS.FT_VALUE.fixedtext.text
+msgid "~Value"
+msgstr "~Значення"
+
+#: paramdialog.src#DLG_PARAMETERS.BT_TRAVELNEXT.pushbutton.text
+msgid "~Next"
+msgstr "~Наступний"
+
+#: 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 "Неможливо перетворити елемент на припустиме для стовпчика \"$name$\" значення"
+
+#: paramdialog.src#DLG_PARAMETERS.modaldialog.text
+msgid "Parameter Input"
+msgstr "Ввід параметру"
+
+#: dlgsave.src#DLG_SAVE_AS.FT_DESCRIPTION.fixedtext.text
+msgid "Please enter a name for the object to be created:"
+msgstr "Введіть назву створюваного об'єкту:"
+
+#: dlgsave.src#DLG_SAVE_AS.FT_CATALOG.fixedtext.text
+msgid "~Catalog"
+msgstr "~Каталог"
+
+#: dlgsave.src#DLG_SAVE_AS.FT_SCHEMA.fixedtext.text
+msgid "~Schema"
+msgstr "С~хема"
+
+#: dlgsave.src#DLG_SAVE_AS.STR_TBL_LABEL.string.text
+msgid "~Table Name"
+msgstr "Назва ~таблиці"
+
+#: dlgsave.src#DLG_SAVE_AS.STR_VW_LABEL.string.text
+msgid "~Name of table view"
+msgstr "~Назва представлення таблиці"
+
+#: dlgsave.src#DLG_SAVE_AS.STR_QRY_LABEL.string.text
+msgid "~Query name"
+msgstr "~Назва запиту"
+
+#: dlgsave.src#DLG_SAVE_AS.STR_TITLE_RENAME.string.text
+msgid "Rename to"
+msgstr "Перейменувати на"
+
+#: dlgsave.src#DLG_SAVE_AS.STR_TITLE_PASTE_AS.string.text
+msgid "Insert as"
+msgstr "Вставити як"
+
+#: dlgsave.src#DLG_SAVE_AS.modaldialog.text
+msgid "Save As"
+msgstr "Зберегти як"
+
+#: sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.FL_DETAILS.fixedline.text
+msgctxt "sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.FL_DETAILS.fixedline.text"
+msgid "Details"
+msgstr "Подробиці"
+
+#: sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.FT_ERRORLIST.fixedtext.text
+msgid "Error ~list:"
+msgstr "Список ~помилок:"
+
+#: sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.FT_DESCRIPTION.fixedtext.text
+msgid "~Description:"
+msgstr "~Опис:"
+
+#: sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.STR_EXCEPTION_STATUS.string.text
+msgid "SQL Status"
+msgstr "Статус SQL"
+
+#: sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.STR_EXCEPTION_ERRORCODE.string.text
+msgid "Error code"
+msgstr "Код помилки"
+
+#: 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 "Найбільш часта причина цієї помилки - непідтримувана таблиця кодування для мови вашої бази даних. Перевірте параметри у Редагування - База даних - Властивості."
+
+#: sqlmessage.src#STR_EXCEPTION_ERROR.string.text
+msgid "Error"
+msgstr "Помилка"
+
+#: sqlmessage.src#STR_EXCEPTION_WARNING.string.text
+msgid "Warning"
+msgstr "Попередження"
+
+#: sqlmessage.src#STR_EXCEPTION_INFO.string.text
+msgid "Information"
+msgstr "Інформація"
+
+#: sqlmessage.src#STR_EXCEPTION_DETAILS.string.text
+msgctxt "sqlmessage.src#STR_EXCEPTION_DETAILS.string.text"
+msgid "Details"
+msgstr "Подробиці"
+
+#: 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 "Створити новий каталог"
+
+#: 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 "Рівнем вище"
+
+#: CollectionView.src#DLG_COLLECTION_VIEW.FT_EXPLORERFILE_FILENAME.fixedtext.text
+msgid "File ~name:"
+msgstr "~Назва файлу:"
+
+#: CollectionView.src#DLG_COLLECTION_VIEW.BTN_EXPLORERFILE_SAVE.pushbutton.text
+msgctxt "CollectionView.src#DLG_COLLECTION_VIEW.BTN_EXPLORERFILE_SAVE.pushbutton.text"
+msgid "Save"
+msgstr "Зберегти"
+
+#: CollectionView.src#DLG_COLLECTION_VIEW.STR_PATHNAME.string.text
+msgid "~Path:"
+msgstr "~Шлях:"
+
+#: CollectionView.src#DLG_COLLECTION_VIEW.modaldialog.text
+msgctxt "CollectionView.src#DLG_COLLECTION_VIEW.modaldialog.text"
+msgid "Save"
+msgstr "Зберегти"
+
+#: CollectionView.src#STR_NEW_FOLDER.string.text
+msgid "Folder"
+msgstr "Тека"
+
+#: CollectionView.src#STR_ALREADYEXISTOVERWRITE.string.text
+msgid "The file already exists. Overwrite?"
+msgstr "Файл вже існує. Перезаписати?"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_DBWIZARDTITLE.string.text
+msgctxt "dbadminsetup.src#DLG_DATABASE_WIZARD.STR_DBWIZARDTITLE.string.text"
+msgid "Database Wizard"
+msgstr "Помічник створення бази даних"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_INTROPAGE.string.text
+msgid "Select database"
+msgstr "Оберіть базу даних"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_DBASE.string.text
+msgid "Set up dBASE connection"
+msgstr "Встановлення з'єднання з 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 "Встановити з'єднання до текстових файлів"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_MSACCESS.string.text
+msgid "Set up Microsoft Access connection"
+msgstr "Встановлення з'єднання з Microsoft Access"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_LDAP.string.text
+msgid "Set up LDAP connection"
+msgstr "Встановлення з'єднання з LDAP"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_ADO.string.text
+msgid "Set up ADO connection"
+msgstr "Встановлення з'єднання з ADO"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_JDBC.string.text
+msgid "Set up JDBC connection"
+msgstr "Встановлення з'єднання з JDBC"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_ORACLE.string.text
+msgid "Set up Oracle database connection"
+msgstr "Встановлення з'єднання з Oracle"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_MYSQL.string.text
+msgid "Set up MySQL connection"
+msgstr "Встановлення з'єднання з MySQL"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_ODBC.string.text
+msgid "Set up ODBC connection"
+msgstr "Встановлення з'єднання з ODBC"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_SPREADSHEET.string.text
+msgid "Set up Spreadsheet connection"
+msgstr "Встановлення підключення до електронних таблиць"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_AUTHENTIFICATION.string.text
+msgid "Set up user authentication"
+msgstr "Аутентифікація користувача"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_MYSQL_NATIVE.string.text
+msgid "Set up MySQL server data"
+msgstr ""
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_FINAL.string.text
+msgid "Save and proceed"
+msgstr "Зберегти та продовжити"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.modaldialog.text
+msgctxt "dbadminsetup.src#DLG_DATABASE_WIZARD.modaldialog.text"
+msgid "Database Wizard"
+msgstr "Помічник бази даних"
+
+#: dbadminsetup.src#STR_DATABASEDEFAULTNAME.string.text
+msgid "New Database"
+msgstr "Нова база даних"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_INTRO.FT_MYSQL_HEADERTEXT.fixedtext.text
+msgid "Set up a connection to a MySQL database"
+msgstr "Встановлення з'єднання з базою даних 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 ""
+"Ви можете з'єднатися з базою даних MySQL використовуючи ODBC чи JDBC.\n"
+"зв'яжіться з вашим системним адміністратором, якщо ви не впевнені у наступних параметрах."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_INTRO.FT_MYSQLCONNECTIONMODE.fixedtext.text
+msgid "How do you want to connect to your MySQL database?"
+msgstr "Як з'єднуватися з базою даних MySQL?"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_INTRO.RB_CONNECTVIAODBC.radiobutton.text
+msgid "Connect using ODBC (Open Database Connectivity)"
+msgstr "З'єднання з використанням ODBC (Open Database Connectivity)"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_INTRO.RB_CONNECTVIAJDBC.radiobutton.text
+msgid "Connect using JDBC (Java Database Connectivity)"
+msgstr "З'єднання з використанням JDBC (Java Database Connectivity)"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_INTRO.RB_CONNECTVIANATIVE.radiobutton.text
+msgid "Connect directly"
+msgstr ""
+
+#: dbadminsetup.src#PAGE_DBWIZARD_AUTHENTIFICATION.FT_AUTHENTIFICATIONHEADERTEXT.fixedtext.text
+msgid "Set up the user authentication"
+msgstr "Параметри автентифікації користувача"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_AUTHENTIFICATION.FT_AUTHENTIFICATIONHELPTEXT.fixedtext.text
+msgid "Some databases require you to enter a user name."
+msgstr "Деякі бази даних вимагають введення імені користувача."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_AUTHENTIFICATION.FT_GENERALUSERNAME.fixedtext.text
+msgctxt "dbadminsetup.src#PAGE_DBWIZARD_AUTHENTIFICATION.FT_GENERALUSERNAME.fixedtext.text"
+msgid "~User name"
+msgstr "~Ім'я користувача"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_AUTHENTIFICATION.CB_GENERALPASSWORDREQUIRED.checkbox.text
+msgid "Password re~quired"
+msgstr "Потрібен ~пароль"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_AUTHENTIFICATION.PB_TESTCONNECTION.pushbutton.text
+msgid "~Test Connection"
+msgstr "~Перевірка з'єднання"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.FT_FINALHEADER.fixedtext.text
+msgid "Decide how to proceed after saving the database"
+msgstr "Виберіть дію після збереження бази даних"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.FT_FINALHELPTEXT.fixedtext.text
+msgid "Do you want the wizard to register the database in %PRODUCTNAME?"
+msgstr "Чи ви хочете, щоб помічник зареєстрував базу даних у %PRODUCTNAME?"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.RB_REGISTERDATASOURCE.radiobutton.text
+msgid "~Yes, register the database for me"
+msgstr "~Так, зареєструвати базу даних"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.RB_DONTREGISTERDATASOURCE.radiobutton.text
+msgid "N~o, do not register the database"
+msgstr "~Ні, не реєструвати базу даних"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.FT_ADDITIONALSETTINGS.fixedtext.text
+msgid "After the database file has been saved, what do you want to do?"
+msgstr "Що зробити ~після збереження, бази даних?"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.CB_OPENAFTERWARDS.checkbox.text
+msgid "Open the database for editing"
+msgstr "Відкрити базу даних для редагування"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.CB_STARTTABLEWIZARD.checkbox.text
+msgid "Create tables using the table wizard"
+msgstr "Створити таблицю за допомогою помічника"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.FT_FINALTEXT.fixedtext.text
+msgid "Click 'Finish' to save the database."
+msgstr "Натисніть \"Готово\" для збереження бази даних."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_JDBC.STR_MYSQLJDBC_HEADERTEXT.string.text
+msgid "Set up connection to a MySQL database using JDBC"
+msgstr "Налаштовування з'єднання з базою MySQL, з використанням 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 ""
+"Введіть інформацію для підключення до бази даних MySQL за допомогою JDBC-драйвера. Пам'ятайте, що клас JDBC -драйвера має бути встановлено на вашу систему та зареєстровано %PRODUCTNAME.\n"
+"Зв'яжіться з системним адміністратором, якщо ви невпевнені, щодо значень наступних параметрів."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_JDBC.STR_MYSQL_DRIVERCLASSTEXT.string.text
+msgid "MySQL JDBC d~river class:"
+msgstr "Клас д~райвера 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 "Типовий порт: 3306"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_NATIVE.FT_SETUP_WIZARD_HEADER.fixedtext.text
+msgid "Set up connection to a MySQL database"
+msgstr "Налаштування підключення до бази даних 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 "Введіть інформацію, необхідну для з'єднання з базою даних MySQL."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_DBASE.STR_DBASE_HEADERTEXT.string.text
+msgid "Set up a connection to dBASE files"
+msgstr "Налаштувати з'єднання з файлами бази dBase"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_DBASE.STR_DBASE_HELPTEXT.string.text
+msgid "Select the folder where the dBASE files are stored."
+msgstr "Виберіть теку, де зберігаються файли 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 "Встановлення підключення до текстових файлів"
+
+#: 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 "Виберіть теку, де знаходяться текстові файли CSV (значення, розділені комою). %PRODUCTNAME Base відкриє ці файли у режимі читання."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_TEXT.STR_TEXT_PATH_OR_FILE.string.text
+msgid "Path to text files"
+msgstr "Шлях до текстового файлу"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MSACCESS.STR_MSACCESS_HEADERTEXT.string.text
+msgid "Set up a connection to a Microsoft Access database"
+msgstr "Налаштувати з'єднання з Microsoft Access"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MSACCESS.STR_MSACCESS_HELPTEXT.string.text
+msgid "Please select the Microsoft Access file you want to access."
+msgstr "Виберіть файл Microsoft Access, до якого треба отримати доступ."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_LDAP.FT_LDAP_HEADERTEXT.fixedtext.text
+msgid "Set up a connection to an LDAP directory"
+msgstr "Налаштувати підключення до сервера 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 ""
+"Введіть інформацію, необхідну для доступу до сервера LDAP.\n"
+"Зв'яжіться з вашим системним адміністратором якщо ви невпевнені в цих параметрах"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_LDAP.STR_LDAP_DEFAULT.string.text
+msgid "Default: 389"
+msgstr "Типовий порт: 389"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_LDAP.CB_WIZ_USESSL.checkbox.text
+msgid "Use ~secure connection (SSL)"
+msgstr "Використовувати ~захищене з'єднання (SSL)"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ADO.STR_ADO_HEADERTEXT.string.text
+msgid "Set up a connection to an ADO database"
+msgstr "Налаштовування з'єднання з 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 ""
+"Будь-ласка, введіть адресу джерела даних ADO, з яким треба з'єднатися.\n"
+"Натисніть 'Перегляд' для налаштовування специфічних для провайдера параметрів.\n"
+"Зв'яжіться з вашим системним адміністратором, якщо ви невпевнені, щодо значень цих параметрів."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ODBC.STR_ODBC_HEADERTEXT.string.text
+msgid "Set up a connection to an ODBC database"
+msgstr "Налаштовування з'єднання через 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 ""
+"Введіть назву бази даних ODBC, з якою треба з'єднатися.\n"
+"Натисніть 'Перегляд..' для вибору зареєстрованої бази даних ODBC з %PRODUCTNAME у Вашій системі.\n"
+"Зв'яжіться з системним адміністратором, якщо ви невпевнені, щодо значень наступних параметрів."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_JDBC.STR_JDBC_HEADERTEXT.string.text
+msgid "Set up a connection to a JDBC database"
+msgstr "Параметри з'єднання через 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 ""
+"Введіть необхідну інформацію для підключення до драйвера баз даних JDBC.\n"
+"Зв'яжіться з системним адміністратором, якщо ви невпевнені, щодо значень наступних параметрів."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ORACLE.STR_ORACLE_HEADERTEXT.string.text
+msgid "Set up a connection to an Oracle database"
+msgstr "Налаштовування з'єднання з СУБД Oracle"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ORACLE.STR_ORACLE_DEFAULT.string.text
+msgid "Default: 1521"
+msgstr "Типовий порт: 1521"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ORACLE.STR_ORACLE_DRIVERCLASSTEXT.string.text
+msgid "Oracle JDBC ~driver class"
+msgstr "Клас ~драйвера 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 ""
+"Введіть інформацію для з'єднання з базою даних Oracle. Зауважте, що клас драйвера JDBC має бути встановлений у вашій системі та зареєстрований у %PRODUCTNAME.\n"
+"Якщо ви невпевнені, щодо значень параметрів, зверніться до системного адміністратора."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_SPREADSHEET.STR_SPREADSHEET_HEADERTEXT.string.text
+msgid "Set up a connection to spreadsheets"
+msgstr "Налаштовування з'єднання з електронною таблицею"
+
+#: 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 ""
+"Натисніть «Огляд...» для виберу таблиці %PRODUCTNAME чи Microsoft Excel.\n"
+"%PRODUCTNAME відкриє цей файл у режимі лише для читання."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_SPREADSHEET.STR_SPREADSHEETPATH.string.text
+msgid "~Location and file name"
+msgstr "~Розташування та назва файлу"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_SPREADSHEET.CB_SPREADSHEETPASSWORDREQUIRED.checkbox.text
+msgid "~Password required"
+msgstr "Потрібен ~пароль"
+
+#: directsql.src#DLG_DIRECTSQL.FL_SQL.fixedline.text
+msgid "SQL command"
+msgstr "Команда SQL"
+
+#: directsql.src#DLG_DIRECTSQL.FT_SQL.fixedtext.text
+msgid "Command to execute"
+msgstr "Виконувана команда"
+
+#: directsql.src#DLG_DIRECTSQL.PB_EXECUTE.pushbutton.text
+msgid "Execute"
+msgstr "Виконати"
+
+#: directsql.src#DLG_DIRECTSQL.FT_HISTORY.fixedtext.text
+msgid "Previous commands"
+msgstr "Попередня команда"
+
+#: directsql.src#DLG_DIRECTSQL.FL_STATUS.fixedline.text
+msgid "Status"
+msgstr "Стан"
+
+#: directsql.src#DLG_DIRECTSQL.PB_CLOSE.pushbutton.text
+msgid "Close"
+msgstr "Закрити"
+
+#: directsql.src#DLG_DIRECTSQL.modaldialog.text
+msgid "Execute SQL Statement"
+msgstr "Виконати інструкцію SQL"
+
+#: directsql.src#STR_COMMAND_EXECUTED_SUCCESSFULLY.string.text
+msgid "Command successfully executed."
+msgstr "Команду успішно виконано."
+
+#: directsql.src#STR_DIRECTSQL_CONNECTIONLOST.string.text
+msgid "The connection to the database has been lost. This dialog will be closed."
+msgstr "Підключення до бази даних було втрачено. Цей діалог буде закрито."
+
+#: queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE1.1.stringlist.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE1.1.stringlist.text"
+msgid "ascending"
+msgstr "за зростанням"
+
+#: queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE1.2.stringlist.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE1.2.stringlist.text"
+msgid "descending"
+msgstr "за спаданням"
+
+#: queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE2.1.stringlist.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE2.1.stringlist.text"
+msgid "ascending"
+msgstr "за зростанням"
+
+#: queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE2.2.stringlist.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE2.2.stringlist.text"
+msgid "descending"
+msgstr "за спаданням"
+
+#: queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE3.1.stringlist.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE3.1.stringlist.text"
+msgid "ascending"
+msgstr "за зростанням"
+
+#: queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE3.2.stringlist.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE3.2.stringlist.text"
+msgid "descending"
+msgstr "за спаданням"
+
+#: queryorder.src#DLG_ORDERCRIT.FT_ORDERFIELD.fixedtext.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.FT_ORDERFIELD.fixedtext.text"
+msgid "Field name"
+msgstr "Назва поля"
+
+#: queryorder.src#DLG_ORDERCRIT.FT_ORDERAFTER1.fixedtext.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.FT_ORDERAFTER1.fixedtext.text"
+msgid "and then"
+msgstr "потім"
+
+#: queryorder.src#DLG_ORDERCRIT.FT_ORDERAFTER2.fixedtext.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.FT_ORDERAFTER2.fixedtext.text"
+msgid "and then"
+msgstr "потім"
+
+#: queryorder.src#DLG_ORDERCRIT.FT_ORDEROPER.fixedtext.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.FT_ORDEROPER.fixedtext.text"
+msgid "Operator"
+msgstr "Оператор"
+
+#: queryorder.src#DLG_ORDERCRIT.FT_ORDERDIR.fixedtext.text
+msgid "Order"
+msgstr "Порядок"
+
+#: queryorder.src#DLG_ORDERCRIT.FL_ORDER.fixedline.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.FL_ORDER.fixedline.text"
+msgid "Sort order"
+msgstr "Порядок сортування"
+
+#: queryorder.src#DLG_ORDERCRIT.STR_NOENTRY.string.text
+msgid "<none>"
+msgstr "<немає>"
+
+#: queryorder.src#DLG_ORDERCRIT.modaldialog.text
+msgid "Sort Order"
+msgstr "Сортування"
+
+#: ConnectionPage.src#PAGE_CONNECTION.FL_SEPARATOR1.fixedline.text
+msgctxt "ConnectionPage.src#PAGE_CONNECTION.FL_SEPARATOR1.fixedline.text"
+msgid "General"
+msgstr "Загальні"
+
+#: ConnectionPage.src#PAGE_CONNECTION.FT_HOSTNAME.fixedtext.text
+#, fuzzy
+msgctxt "ConnectionPage.src#PAGE_CONNECTION.FT_HOSTNAME.fixedtext.text"
+msgid "~Host name"
+msgstr "Назва ~вузла"
+
+#: ConnectionPage.src#PAGE_CONNECTION.FL_SEPARATOR2.fixedline.text
+msgctxt "ConnectionPage.src#PAGE_CONNECTION.FL_SEPARATOR2.fixedline.text"
+msgid "User authentication"
+msgstr "Аутентифікація користувача"
+
+#: ConnectionPage.src#PAGE_CONNECTION.FT_USERNAME.fixedtext.text
+msgctxt "ConnectionPage.src#PAGE_CONNECTION.FT_USERNAME.fixedtext.text"
+msgid "~User name"
+msgstr "~Ім'я користувача"
+
+#: ConnectionPage.src#PAGE_CONNECTION.CB_PASSWORD_REQUIRED.checkbox.text
+msgctxt "ConnectionPage.src#PAGE_CONNECTION.CB_PASSWORD_REQUIRED.checkbox.text"
+msgid "Password required"
+msgstr "Потрібно ввести пароль"
+
+#: ConnectionPage.src#PAGE_CONNECTION.FL_SEPARATOR3.fixedline.text
+msgid "JDBC properties"
+msgstr "Властивості JDBC"
+
+#: ConnectionPage.src#PAGE_CONNECTION.FT_JDBCDRIVERCLASS.fixedtext.text
+msgid "~JDBC driver class"
+msgstr "Клас драйвера ~JDBC"
+
+#: ConnectionPage.src#PAGE_CONNECTION.PB_TESTDRIVERCLASS.pushbutton.text
+msgid "Test Class"
+msgstr "Перевірити клас"
+
+#: ConnectionPage.src#PAGE_CONNECTION.PB_TESTCONNECTION.pushbutton.text
+msgid "Test Connection"
+msgstr "Перевірити з'єднання"
+
+#: ConnectionPage.src#STR_CONNECTION_TEST.string.text
+msgid "Connection Test"
+msgstr "Перевірка з'єднання"
+
+#: ConnectionPage.src#STR_CONNECTION_SUCCESS.string.text
+msgid "The connection was established successfully."
+msgstr "З'єднання встановлено успішно."
+
+#: ConnectionPage.src#STR_CONNECTION_NO_SUCCESS.string.text
+msgid "The connection could not be established."
+msgstr "З'єднання не встановлено."
+
+#: ConnectionPage.src#STR_JDBCDRIVER_SUCCESS.string.text
+msgid "The JDBC driver was loaded successfully."
+msgstr "Драйвер JDBC успішно завантажено."
+
+#: ConnectionPage.src#STR_JDBCDRIVER_NO_SUCCESS.string.text
+msgid "The JDBC driver could not be loaded."
+msgstr "Неможливо завантажити драйвер JDBC."
+
+#: ConnectionPage.src#STR_MSACCESS_FILTERNAME.string.text
+msgid "MS Access file"
+msgstr "Файл MS Access"
+
+#: ConnectionPage.src#STR_MSACCESS_2007_FILTERNAME.string.text
+msgid "MS Access 2007 file"
+msgstr "Файл MS Access 2007"
+
+#: UserAdminDlg.src#DLG_DATABASE_USERADMIN.STR_PAGETITLE_USERADMIN.string.text
+msgid "User Settings"
+msgstr "Керування доступом"
+
+#: UserAdminDlg.src#DLG_DATABASE_USERADMIN.tabdialog.text
+msgid "User administration"
+msgstr "Адміністрування користувачів"
+
+#: queryfilter.src#DLG_FILTERCRIT.LB_WHERECOND2.1.stringlist.text
+msgctxt "queryfilter.src#DLG_FILTERCRIT.LB_WHERECOND2.1.stringlist.text"
+msgid "AND"
+msgstr "AND"
+
+#: queryfilter.src#DLG_FILTERCRIT.LB_WHERECOND2.2.stringlist.text
+msgctxt "queryfilter.src#DLG_FILTERCRIT.LB_WHERECOND2.2.stringlist.text"
+msgid "OR"
+msgstr "OR"
+
+#: queryfilter.src#DLG_FILTERCRIT.LB_WHERECOND3.1.stringlist.text
+msgctxt "queryfilter.src#DLG_FILTERCRIT.LB_WHERECOND3.1.stringlist.text"
+msgid "AND"
+msgstr "AND"
+
+#: queryfilter.src#DLG_FILTERCRIT.LB_WHERECOND3.2.stringlist.text
+msgctxt "queryfilter.src#DLG_FILTERCRIT.LB_WHERECOND3.2.stringlist.text"
+msgid "OR"
+msgstr "OR"
+
+#: queryfilter.src#DLG_FILTERCRIT.FT_WHEREFIELD.fixedtext.text
+msgctxt "queryfilter.src#DLG_FILTERCRIT.FT_WHEREFIELD.fixedtext.text"
+msgid "Field name"
+msgstr "Назва поля"
+
+#: queryfilter.src#DLG_FILTERCRIT.FT_WHERECOMP.fixedtext.text
+msgid "Condition"
+msgstr "Умова"
+
+#: queryfilter.src#DLG_FILTERCRIT.FT_WHEREVALUE.fixedtext.text
+msgid "Value"
+msgstr "Значення"
+
+#: queryfilter.src#DLG_FILTERCRIT.FT_WHEREOPER.fixedtext.text
+msgctxt "queryfilter.src#DLG_FILTERCRIT.FT_WHEREOPER.fixedtext.text"
+msgid "Operator"
+msgstr "Оператор"
+
+#: queryfilter.src#DLG_FILTERCRIT.FL_FIELDS.fixedline.text
+msgid "Criteria"
+msgstr "Критерій"
+
+#: queryfilter.src#DLG_FILTERCRIT.STR_NOENTRY.string.text
+msgid "- none -"
+msgstr "-немає -"
+
+#: queryfilter.src#DLG_FILTERCRIT.STR_COMPARE_OPERATORS.string.text
+msgid "=;<>;<;<=;>;>=;like;not like;null;not null"
+msgstr "=;<>;<;<=;>;>=;подібно до;не подібно;нуль;не нуль"
+
+#: queryfilter.src#DLG_FILTERCRIT.modaldialog.text
+msgid "Standard Filter"
+msgstr "Типовий фільтр"
+
+#: dlgsize.src#DLG_ROWHEIGHT.FT_VALUE.fixedtext.text
+msgid "~Height"
+msgstr "~Висота"
+
+#: dlgsize.src#DLG_ROWHEIGHT.CB_STANDARD.checkbox.text
+msgctxt "dlgsize.src#DLG_ROWHEIGHT.CB_STANDARD.checkbox.text"
+msgid "~Automatic"
+msgstr "~Автоматично"
+
+#: dlgsize.src#DLG_ROWHEIGHT.modaldialog.text
+msgid "Row Height"
+msgstr "Висота рядка"
+
+#: dlgsize.src#DLG_COLWIDTH.FT_VALUE.fixedtext.text
+msgid "~Width"
+msgstr "~Ширина"
+
+#: dlgsize.src#DLG_COLWIDTH.CB_STANDARD.checkbox.text
+msgctxt "dlgsize.src#DLG_COLWIDTH.CB_STANDARD.checkbox.text"
+msgid "~Automatic"
+msgstr "~Автоматично"
+
+#: dlgsize.src#DLG_COLWIDTH.modaldialog.text
+msgid "Column Width"
+msgstr "Ширина стовпчика"
+
+#: dbfindex.src#DLG_DBASE_INDEXES.FT_TABLES.fixedtext.text
+msgid "~Table"
+msgstr "~Таблиця"
+
+#: dbfindex.src#DLG_DBASE_INDEXES.FL_INDEXES.fixedline.text
+msgid "Assignment"
+msgstr "Призначення"
+
+#: dbfindex.src#DLG_DBASE_INDEXES.FT_TABLEINDEXES.fixedtext.text
+msgid "T~able indexes"
+msgstr "Індекси т~аблиці"
+
+#: dbfindex.src#DLG_DBASE_INDEXES.FT_ALLINDEXES.fixedtext.text
+msgid "~Free indexes"
+msgstr "~Вільні індекси"
+
+#: dbfindex.src#DLG_DBASE_INDEXES.modaldialog.text
+msgctxt "dbfindex.src#DLG_DBASE_INDEXES.modaldialog.text"
+msgid "Indexes"
+msgstr "Індекси"
+
+#: advancedsettings.src#AUTO_DATAHANDLING_AUTO_Y_.FL_DATAHANDLING.fixedline.text
+msgid "Options"
+msgstr "Параметри"
+
+#: advancedsettings.src#AUTO_SQL92CHECK_AUTO_Y_.CB_SQL92CHECK.checkbox.text
+msgid "Use SQL92 naming constraints"
+msgstr "Використовувати стандарт SQL92"
+
+#: advancedsettings.src#AUTO_APPENDTABLEALIAS_AUTO_Y_.CB_APPENDTABLEALIAS.checkbox.text
+msgid "Append the table alias name on SELECT statements"
+msgstr "Оновити псевдонім таблиці для запиту 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 "Використовувати ключове слово AS перед псевдонімом таблиці"
+
+#: advancedsettings.src#AUTO_ENABLEOUTERJOIN_AUTO_Y_.CB_ENABLEOUTERJOIN.checkbox.text
+msgid "Use Outer Join syntax '{OJ }'"
+msgstr "Використовуйте синтаксис зовнішнього з'єднання '{OJ }'"
+
+#: advancedsettings.src#AUTO_IGNOREDRIVER_PRIV_AUTO_Y_.CB_IGNOREDRIVER_PRIV.checkbox.text
+msgid "Ignore the privileges from the database driver"
+msgstr "Ігнорувати привілеї з драйвера бази даних"
+
+#: advancedsettings.src#AUTO_PARAMETERNAMESUBST_AUTO_Y_.CB_PARAMETERNAMESUBST.checkbox.text
+msgid "Replace named parameters with '?'"
+msgstr "Замінити іменовані параметри на '?'"
+
+#: advancedsettings.src#AUTO_SUPPRESVERSIONCOLUMN_AUTO_Y_.CB_SUPPRESVERSIONCL.checkbox.text
+msgid "Display version columns (when available)"
+msgstr "Відображати стовпчики версії (якщо доступні)"
+
+#: advancedsettings.src#AUTO_CATALOG_AUTO_Y_.CB_CATALOG.checkbox.text
+msgid "Use catalog name in SELECT statements"
+msgstr "Використовувати назву каталогу у виразі SELECT"
+
+#: advancedsettings.src#AUTO_SCHEMA_AUTO_Y_.CB_SCHEMA.checkbox.text
+msgid "Use schema name in SELECT statements"
+msgstr "Використовувати назву схеми у виразі SELECT"
+
+#: advancedsettings.src#AUTO_IGNOREINDEXAPPENDIX_AUTO_Y_.CB_IGNOREINDEXAPPENDIX.checkbox.text
+msgid "Create index with ASC or DESC statement"
+msgstr "Створити індекс з умовами ASC та DESC"
+
+#: advancedsettings.src#AUTO_DOSLINEENDS_AUTO_Y_.CB_DOSLINEENDS.checkbox.text
+msgid "End text lines with CR+LF"
+msgstr "Завершувати рядки CR+LF"
+
+#: advancedsettings.src#AUTO_IGNORECURRENCY_AUTO_Y_.CB_IGNORECURRENCY.checkbox.text
+msgid "Ignore currency field information"
+msgstr "Ігнорувати інформацію валютних полів"
+
+#: advancedsettings.src#AUTO_CHECKREQUIRED_AUTO_Y_.CB_CHECK_REQUIRED.checkbox.text
+msgid "Form data input checks for required fields"
+msgstr "Форма перевіряє необхідні поля"
+
+#: advancedsettings.src#AUTO_ESCAPE_DATETIME_AUTO_Y_.CB_ESCAPE_DATETIME.checkbox.text
+msgid "Use ODBC conformant date/time literals"
+msgstr ""
+
+#: advancedsettings.src#AUTO_PRIMARY_KEY_SUPPORT_AUTO_Y_.CB_PRIMARY_KEY_SUPPORT.checkbox.text
+msgid "Supports primary keys"
+msgstr ""
+
+#: advancedsettings.src#AUTO_RESPECTRESULTSETTYPE_AUTO_Y_.CB_RESPECTRESULTSETTYPE.checkbox.text
+msgid "Respect the result set type from the database driver"
+msgstr ""
+
+#: advancedsettings.src#WORKAROUND.1.stringlist.text
+msgid "Default"
+msgstr "Типово"
+
+#: advancedsettings.src#WORKAROUND.2.stringlist.text
+msgid "SQL"
+msgstr "SQL"
+
+#: advancedsettings.src#WORKAROUND.3.stringlist.text
+msgid "Mixed"
+msgstr "Змішане"
+
+#: 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 "Порівняння булевих значень"
+
+#: advancedsettings.src#AUTO_MAXROWSCAN_AUTO_Y_.FT_MAXROWSCAN.fixedtext.text
+msgid "Rows to scan column types"
+msgstr ""
+
+#: advancedsettings.src#PAGE_GENERATED_VALUES.FL_SEPARATORAUTO.fixedline.text
+msgid "Settings"
+msgstr "Параметри"
+
+#: advancedsettings.src#PAGE_GENERATED_VALUES.CB_RETRIEVE_AUTO.checkbox.text
+msgid "Re~trieve generated values"
+msgstr "~Отримати згенеровані значення"
+
+#: advancedsettings.src#PAGE_GENERATED_VALUES.FT_AUTOINCREMENTVALUE.fixedtext.text
+msgid "~Auto-increment statement"
+msgstr "~Автоінкрементна інструкція"
+
+#: advancedsettings.src#PAGE_GENERATED_VALUES.FT_RETRIEVE_AUTO.fixedtext.text
+msgid "~Query of generated values"
+msgstr "~Запит згенерованих значень"
+
+#: advancedsettings.src#DLG_DATABASE_ADVANCED.STR_GENERATED_VALUE.string.text
+msgid "Generated Values"
+msgstr "Згенеровані значення"
+
+#: advancedsettings.src#DLG_DATABASE_ADVANCED.STR_DS_BEHAVIOUR.string.text
+msgid "Special Settings"
+msgstr "Спеціальні параметри"
+
+#: advancedsettings.src#DLG_DATABASE_ADVANCED.tabdialog.text
+msgid "Advanced Settings"
+msgstr ""
+
+#: UserAdmin.src#TAB_PAGE_USERADMIN.FL_USER.fixedline.text
+msgid "User selection"
+msgstr "Користувач, для якого налаштовуються права доступу"
+
+#: UserAdmin.src#TAB_PAGE_USERADMIN.FT_USER.fixedtext.text
+msgid "Us~er:"
+msgstr "~Користувач:"
+
+#: UserAdmin.src#TAB_PAGE_USERADMIN.PB_NEWUSER.pushbutton.text
+msgid "~Add User..."
+msgstr "~Додати користувача..."
+
+#: UserAdmin.src#TAB_PAGE_USERADMIN.PB_CHANGEPWD.pushbutton.text
+msgid "Change ~Password..."
+msgstr "Змінити ~пароль..."
+
+#: UserAdmin.src#TAB_PAGE_USERADMIN.PB_DELETEUSER.pushbutton.text
+msgid "~Delete User..."
+msgstr "В~идалити користувача..."
+
+#: UserAdmin.src#TAB_PAGE_USERADMIN.FL_TABLE_GRANTS.fixedline.text
+msgid "Access rights for selected user"
+msgstr "Права на доступ для вибраного користувача"
+
+#: UserAdmin.src#QUERY_USERADMIN_DELETE_USER.querybox.text
+msgid "Do you really want to delete the user?"
+msgstr "Ви дійсно хочете видалити користувача?"
+
+#: UserAdmin.src#STR_USERADMIN_NOT_AVAILABLE.string.text
+msgid "The database does not support user administration."
+msgstr "База даних не підтримує адміністрування користувачів."
+
+#: UserAdmin.src#DLG_PASSWORD.FL_USER.fixedline.text
+msgid "User \"$name$: $\""
+msgstr "Користувач \"$name$: $\""
+
+#: UserAdmin.src#DLG_PASSWORD.FT_OLDPASSWORD.fixedtext.text
+msgid "Old p~assword"
+msgstr "Старий п~ароль"
+
+#: UserAdmin.src#DLG_PASSWORD.FT_PASSWORD.fixedtext.text
+msgid "~Password"
+msgstr "~Пароль"
+
+#: UserAdmin.src#DLG_PASSWORD.FT_PASSWORD_REPEAT.fixedtext.text
+#, fuzzy
+msgid "~Confirm password"
+msgstr "Під~твердити пароль"
+
+#: UserAdmin.src#DLG_PASSWORD.modaldialog.text
+msgid "Change Password"
+msgstr "Змінити пароль"
+
+#: UserAdmin.src#STR_ERROR_PASSWORDS_NOT_IDENTICAL.string.text
+msgid "The passwords do not match. Please enter the password again."
+msgstr "Паролі не збігаються. Введіть пароль знову."
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.FT_MYSQL_DATABASE_NAME.fixedtext.text
+msgid "~Database name"
+msgstr ""
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.RB_MYSQL_HOST_PORT.radiobutton.text
+msgid "Se~rver / Port"
+msgstr ""
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.FT_COMMON_HOST_NAME.fixedtext.text
+msgid "~Server"
+msgstr ""
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.FT_COMMON_PORT.fixedtext.text
+msgid "~Port"
+msgstr "~Порт"
+
+#: 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 "Типовий порт: 3306"
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.RB_MYSQL_SOCKET.radiobutton.text
+msgid "So~cket"
+msgstr ""
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.RB_MYSQL_NAMED_PIPE.radiobutton.text
+msgid "Named p~ipe"
+msgstr ""
+
+#: AutoControls_tmpl.hrc#AUTO_BROWSECONTROLGROUP__AUTO_X__AUTO_Y__AUTOPAGE_X__AUTO_HID__AUTO_HID2_.PB_AUTOBROWSEURL.pushbutton.text
+msgid "Browse"
+msgstr "Огляд"
+
+#: AutoControls_tmpl.hrc#AUTO_NAMECONTROLGROUP_AUTO_Y__AUTO_HID_.FT_AUTODATABASENAME.fixedtext.text
+msgid "Database name"
+msgstr ""
+
+#: AutoControls_tmpl.hrc#AUTO_HOSTCONTROLGROUP_AUTO_Y__AUTO_HID_.FT_AUTOHOSTNAME.fixedtext.text
+msgid "Server"
+msgstr ""
+
+#: AutoControls_tmpl.hrc#AUTO_BASEDNCONTROLGROUP_AUTO_Y__AUTO_HID_.FT_AUTOBASEDN.fixedtext.text
+msgid "Base ~DN"
+msgstr "Базове ~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 "~Порт"
+
+#: AutoControls_tmpl.hrc#AUTO_CHARSET__AUTO_Y__AUTOPAGE_X__.FL_DATACONVERT.fixedline.text
+msgid "Data conversion"
+msgstr "Конвертація даних"
+
+#: AutoControls_tmpl.hrc#AUTO_CHARSET__AUTO_Y__AUTOPAGE_X__.FT_CHARSET.fixedtext.text
+msgid "~Character set"
+msgstr "~Кодування"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.FT_AUTOEXTENSIONHEADER.fixedtext.text
+msgid "Specify the type of files you want to access"
+msgstr "Виберіть тип файлів, до яких ви хочете отримати доступ"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.RB_AUTOACCESSCTEXTFILES.radiobutton.text
+msgid "Plain text files (*.txt)"
+msgstr "Простий текст (*.txt)"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.RB_AUTOACCESSCCSVFILES.radiobutton.text
+msgid "'Comma separated value' files (*.csv)"
+msgstr "Файл \"значень, що розділені комою\" (*.csv)"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.RB_AUTOACCESSOTHERS.radiobutton.text
+msgid "Custom:"
+msgstr "Особливий:"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.FT_AUTOOWNEXTENSIONAPPENDIX.fixedtext.text
+msgid "Custom: *.abc"
+msgstr "Особливий: *.abc"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.FL_AUTOSEPARATOR2.fixedline.text
+msgid "Row Format"
+msgstr "Формат рядка"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.FT_AUTOFIELDSEPARATOR.fixedtext.text
+msgid "Field separator"
+msgstr "Розділювач полів"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.FT_AUTOTEXTSEPARATOR.fixedtext.text
+msgid "Text separator"
+msgstr "Розділювач тексту"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.FT_AUTODECIMALSEPARATOR.fixedtext.text
+msgid "Decimal separator"
+msgstr "Роздільник десятків"
+
+#: AutoControls_tmpl.hrc#FT_AUTOTHOUSANDSSEPARATOR.fixedtext.text
+msgid "Thousands separator"
+msgstr "Розділювач тисяч"
+
+#: AutoControls_tmpl.hrc#CB_AUTOHEADER.checkbox.text
+msgid "~Text contains headers"
+msgstr "~Текст містить заголовки"
+
+#: AutoControls_tmpl.hrc#STR_AUTOTEXT_FIELD_SEP_NONE.string.text
+msgid "{None}"
+msgstr "{Немає}"
+
+#. 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{Таб}\t9\t{Пробіл}\t32"
+
+#: AutoControls_tmpl.hrc#STR_AUTODELIMITER_MISSING.string.text
+msgid "#1 must be set."
+msgstr "#1 повинно бути встановлено."
+
+#: AutoControls_tmpl.hrc#STR_AUTODELIMITER_MUST_DIFFER.string.text
+msgid "#1 and #2 must be different."
+msgstr "#1 та #2 повинні відрізнятися."
+
+#: AutoControls_tmpl.hrc#STR_AUTONO_WILDCARDS.string.text
+msgid "Wildcards such as ?,* are not allowed in #1."
+msgstr "Шаблонні знаки, такі як ?,* не дозволені у #1."
+
+#: AutoControls_tmpl.hrc#AUTO_JDBCDRIVERCLASSGROUP_AUTO_Y__AUTO_HID__AUTO_HID2_.FT_AUTOJDBCDRIVERCLASS.fixedtext.text
+msgid "JDBC d~river class"
+msgstr "Клас д~райвера JDBC"
+
+#: AutoControls_tmpl.hrc#AUTO_JDBCDRIVERCLASSGROUP_AUTO_Y__AUTO_HID__AUTO_HID2_.PB_AUTOTESTDRIVERCLASS.pushbutton.text
+#, fuzzy
+msgctxt "AutoControls_tmpl.hrc#AUTO_JDBCDRIVERCLASSGROUP_AUTO_Y__AUTO_HID__AUTO_HID2_.PB_AUTOTESTDRIVERCLASS.pushbutton.text"
+msgid "Test class"
+msgstr "Перевірити клас"
+
+#: AutoControls_tmpl.hrc#AUTO_SOCKETCONTROLGROUP_AUTO_Y_.FT_SOCKET.fixedtext.text
+msgid "Socket"
+msgstr ""
+
+#: dbadmin2.src#STR_ENTER_CONNECTION_PASSWORD.string.text
+msgid "A password is needed to connect to the data source \"$name$\"."
+msgstr "Необхідно ввести пароль для підключення до джерело даних \"$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 ""
+"Каталог\n"
+"\n"
+"$path$\n"
+"\n"
+"не існує. Створити?"
+
+#: dbadmin2.src#STR_COULD_NOT_CREATE_DIRECTORY.string.text
+msgid "The directory $name$ could not be created."
+msgstr "Неможливо створити каталог $name$."
+
+#: dbadmin2.src#DLG_DOMAINPASSWORD.FT_PASSWORD.fixedline.text
+msgid "Please enter the ~password for the user 'DOMAIN'."
+msgstr "Введіть ~пароль для користувача 'DOMAIN'.."
+
+#: dbadmin2.src#DLG_DOMAINPASSWORD.modaldialog.text
+msgid "Convert Database"
+msgstr "Перетворення базу даних"
+
+#: dbadmin2.src#PAGE_TABLESUBSCRIPTION.FL_SEPARATOR1.fixedline.text
+msgid "Tables and table filter"
+msgstr "Таблиці та фільтр таблиць"
+
+#: dbadmin2.src#PAGE_TABLESUBSCRIPTION.FT_FILTER_EXPLANATION.fixedtext.text
+msgid "Mark the tables that should be visible for the applications."
+msgstr "Відзначте таблиці що слід зробити видимими для програм."
+
+#: dbadmin2.src#PAGE_TABLESUBSCRIPTION.tabpage.text
+msgid "Tables Filter"
+msgstr "Фільтр таблиць"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.WND_CONTROL.FL_INVOLVED_TABLES.fixedline.text
+msgid "Tables involved"
+msgstr "Включені таблиці"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.WND_CONTROL.FL_INVOLVED_FIELDS.fixedline.text
+msgid "Fields involved"
+msgstr "Включені поля"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.FL_CASC_UPD.fixedline.text
+msgid "Update options"
+msgstr "Параметри оновлення"
+
+#: 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 "~Без дії"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.RB_CASC_UPD.radiobutton.text
+msgid "~Update cascade"
+msgstr "~Оновити каскад"
+
+#: 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 "~Встановити нуль"
+
+#: 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 "Встановити ~типові"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.FL_CASC_DEL.fixedline.text
+msgid "Delete options"
+msgstr "Параметри видалення"
+
+#: 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 "~Без дії"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.RB_CASC_DEL.radiobutton.text
+msgid "Delete ~cascade"
+msgstr "Видалити ~каскад"
+
+#: 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 "~Встановити нуль"
+
+#: 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 "Встановити ~типові"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.modaldialog.text
+msgid "Relations"
+msgstr "Зв'язки"
+
+#: dsselect.src#DLG_DATASOURCE_SELECTION.FT_DESCRIPTION.fixedtext.text
+msgid "Choose a data source:"
+msgstr "Виберіть джерело даних:"
+
+#: dsselect.src#DLG_DATASOURCE_SELECTION.PB_MANAGE.pushbutton.text
+msgid "Organize..."
+msgstr "Налаштувати..."
+
+#: dsselect.src#DLG_DATASOURCE_SELECTION.PB_CREATE.pushbutton.text
+msgid "Create..."
+msgstr "Створити..."
+
+#: dsselect.src#DLG_DATASOURCE_SELECTION.STR_LOCAL_DATASOURCES.string.text
+msgid "Local Databases"
+msgstr "Локальні джерела даних"
+
+#: dsselect.src#DLG_DATASOURCE_SELECTION.STR_DESCRIPTION2.string.text
+msgid "Choose a database"
+msgstr "Оберіть базу даних"
+
+#: dsselect.src#DLG_DATASOURCE_SELECTION.modaldialog.text
+msgid "Data Source"
+msgstr "Джерело даних"
+
+#: AutoControls.src#STR_DBASE_PATH_OR_FILE.string.text
+msgid "Path to the dBASE files"
+msgstr "Шлях до файлів dBASE"
+
+#: AutoControls.src#STR_FLAT_PATH_OR_FILE.string.text
+msgid "Path to the text files"
+msgstr "Шлях до текстових файлів"
+
+#: AutoControls.src#STR_CALC_PATH_OR_FILE.string.text
+msgid "Path to the spreadsheet document"
+msgstr "Шлях до електронних таблиць"
+
+#: AutoControls.src#STR_NAME_OF_ODBC_DATASOURCE.string.text
+msgid "Name of the ODBC data source on your system"
+msgstr "Назва джерела даних ODBC у вашій системі"
+
+#: AutoControls.src#STR_MYSQL_DATABASE_NAME.string.text
+msgid "Name of the MySQL database"
+msgstr "Назва бази даних MySQL"
+
+#: AutoControls.src#STR_ORACLE_DATABASE_NAME.string.text
+msgid "Name of the Oracle database"
+msgstr "Назва бази даних Oracle"
+
+#: AutoControls.src#STR_MSACCESS_MDB_FILE.string.text
+msgid "Microsoft Access database file"
+msgstr "Файл бази даних 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 "Більше жодних параметрів не вимагається. Для перевірки з'єднання натисніть кнопку '%test' "
+
+#: AutoControls.src#STR_COMMONURL.string.text
+msgid "Datasource URL"
+msgstr "URL джерела даних"
+
+#: AutoControls.src#STR_HOSTNAME.string.text
+msgctxt "AutoControls.src#STR_HOSTNAME.string.text"
+msgid "~Host name"
+msgstr "~Назва комп'ютера"
+
+#: AutoControls.src#STR_MOZILLA_PROFILE_NAME.string.text
+msgid "~Mozilla profile name"
+msgstr "Профіль ~Mozilla"
+
+#: AutoControls.src#STR_THUNDERBIRD_PROFILE_NAME.string.text
+msgid "~Thunderbird profile name"
+msgstr "Назва профілю в ~Thunderbird"
+
+#: dbadmin.src#AUTO_USECATALOG_AUTO_Y_.CB_USECATALOG.checkbox.text
+msgid "Use catalog for file-based databases"
+msgstr "Використовувати каталог для файлових баз даних"
+
+#: dbadmin.src#AUTO_FIXEDLINE_CONNSETTINGS_AUTO_Y_.FL_SEPARATOR1.fixedline.text
+#, fuzzy
+msgctxt "dbadmin.src#AUTO_FIXEDLINE_CONNSETTINGS_AUTO_Y_.FL_SEPARATOR1.fixedline.text"
+msgid "Connection Settings"
+msgstr "Налаштовування зв'язку"
+
+#: 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 "Назва ~комп'ютера"
+
+#: 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 "~Порт"
+
+#: dbadmin.src#DLG_DATABASE_ADMINISTRATION.STR_PAGETITLE_GENERAL.string.text
+#, fuzzy
+msgid "Advanced Properties"
+msgstr "Додаткові параметри"
+
+#: dbadmin.src#DLG_DATABASE_ADMINISTRATION.STR_PAGETITLE_ADVANCED.string.text
+msgid "Additional Settings"
+msgstr "Додаткові параметри"
+
+#: dbadmin.src#DLG_DATABASE_ADMINISTRATION.STR_PAGETITLE_CONNECTION.string.text
+msgid "Connection settings"
+msgstr "Параметри з'єднання"
+
+#: dbadmin.src#DLG_DATABASE_ADMINISTRATION.tabdialog.text
+msgctxt "dbadmin.src#DLG_DATABASE_ADMINISTRATION.tabdialog.text"
+msgid "Database properties"
+msgstr "Параметри бази даних"
+
+#: dbadmin.src#DLG_DATABASE_TYPE_CHANGE.modaldialog.text
+msgctxt "dbadmin.src#DLG_DATABASE_TYPE_CHANGE.modaldialog.text"
+msgid "Database properties"
+msgstr "Параметри бази даних"
+
+#: dbadmin.src#PAGE_GENERAL.FT_GENERALHEADERTEXT.fixedtext.text
+msgid "Welcome to the %PRODUCTNAME Database Wizard"
+msgstr "Ласкаво просимо до помічника баз даних %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 "Ви можете створити нову базу даних або встановити з'єднання до існуючої бази даних. В обох випадках буде створений файл. У цьому файлі зберігається інформація про параметри з'єднання, форми, звіти і т.п."
+
+#: dbadmin.src#PAGE_GENERAL.FT_DATASOURCEHEADER.fixedtext.text
+msgid "What do you want to do?"
+msgstr "Що ви хочете зробити?"
+
+#: dbadmin.src#PAGE_GENERAL.RB_CREATEDBDATABASE.radiobutton.text
+msgid "Create a n~ew database"
+msgstr "Створити ~нову базу даних"
+
+#: dbadmin.src#PAGE_GENERAL.RB_OPENEXISTINGDOC.radiobutton.text
+msgid "Open an existing database ~file"
+msgstr "Відкрити існуючий ~файл"
+
+#: dbadmin.src#PAGE_GENERAL.FT_DOCLISTLABEL.fixedtext.text
+msgid "Recently used"
+msgstr "Попередні"
+
+#: dbadmin.src#PAGE_GENERAL.RB_GETEXISTINGDATABASE.radiobutton.text
+msgid "Connect to an e~xisting database"
+msgstr "З'єднуватися з ~існуючою базою даних"
+
+#: dbadmin.src#PAGE_GENERAL.FT_DATASOURCETYPE_PRE.fixedtext.text
+msgid "Select the type of database to which you want to establish a connection."
+msgstr "Виберіть тип бази даних, до якої ви хочете підключитися"
+
+#: dbadmin.src#PAGE_GENERAL.FT_DATATYPE.fixedtext.text
+msgid "Database ~type "
+msgstr "~Тип бази даних"
+
+#: dbadmin.src#PAGE_GENERAL.FT_DATATYPEAPPENDIX.fixedtext.text
+msgid "Database"
+msgstr "База даних"
+
+#: 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 ""
+"Далі ви зможете встановити додаткові параметри з'єднання. \n"
+"\n"
+"Нові параметри, які ви встановите перезапишуть існуючі параметри."
+
+#: 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 "Властивості джерела даних: #"
+
+#: 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 "Неможливо завантажити програмну бібліотеку ##lib# або вона зіпсована. Вибір ODBC джерела даних недоступний."
+
+#: 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 ""
+"Такий тип джерела даних не підтримується на цій платформі.\n"
+"Ви можете змінити параметри, але ви напевно не зможете підключитися до бази даних."
+
+#: dbadmin.src#PAGE_GENERAL.tabpage.text
+msgctxt "dbadmin.src#PAGE_GENERAL.tabpage.text"
+msgid "General"
+msgstr "Загальні"
+
+#: dbadmin.src#PAGE_DBASE.FL_SEPARATOR1.fixedline.text
+msgid "Optional settings"
+msgstr "Додаткові параметри"
+
+#: dbadmin.src#PAGE_DBASE.CB_SHOWDELETEDROWS.checkbox.text
+msgid "Display deleted records as well"
+msgstr "Показати неактивні записи"
+
+#: dbadmin.src#PAGE_DBASE.FT_SPECIAL_MESSAGE.fixedtext.text
+#, fuzzy
+msgid "Note: When deleted, and thus inactive, records are displayed, you will not be able to delete records from the data source."
+msgstr "Примітка. При відображені віддалених (неактивних) записів видалити їх з джерела даних неможливо."
+
+#: dbadmin.src#PAGE_DBASE.PB_INDICIES.pushbutton.text
+msgid "Indexes..."
+msgstr "Індекси..."
+
+#: dbadmin.src#PAGE_ODBC.FL_SEPARATOR1.fixedline.text
+msgid "Optional Settings"
+msgstr "Додаткові параметри"
+
+#: dbadmin.src#PAGE_ODBC.FT_OPTIONS.fixedtext.text
+msgid "ODBC ~options"
+msgstr "~Параметри ODBC"
+
+#: dbadmin.src#PAGE_MYSQL_JDBC.FT_JDBCDRIVERCLASS.fixedtext.text
+msgid "MySQL JDBC d~river class"
+msgstr "Клас JDBC-д~райвера для MySQL"
+
+#: dbadmin.src#PAGE_MYSQL_JDBC.PB_TESTDRIVERCLASS.pushbutton.text
+msgctxt "dbadmin.src#PAGE_MYSQL_JDBC.PB_TESTDRIVERCLASS.pushbutton.text"
+msgid "Test class"
+msgstr "Перевірити клас"
+
+#: dbadmin.src#PAGE_MYSQL_NATIVE.FL_SEPARATOR2.fixedline.text
+msgctxt "dbadmin.src#PAGE_MYSQL_NATIVE.FL_SEPARATOR2.fixedline.text"
+msgid "User authentication"
+msgstr "Аутентифікація користувача"
+
+#: dbadmin.src#PAGE_MYSQL_NATIVE.FT_USERNAME.fixedtext.text
+msgctxt "dbadmin.src#PAGE_MYSQL_NATIVE.FT_USERNAME.fixedtext.text"
+msgid "~User name"
+msgstr "~Ім'я користувача"
+
+#: 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 "Потрібно ввести пароль"
+
+#: dbadmin.src#PAGE_ORACLE_JDBC.FT_JDBCDRIVERCLASS.fixedtext.text
+msgid "Oracle JDBC d~river class"
+msgstr "Клас JDBC-д~райвера для Oracle"
+
+#: dbadmin.src#PAGE_ORACLE_JDBC.PB_TESTDRIVERCLASS.pushbutton.text
+msgctxt "dbadmin.src#PAGE_ORACLE_JDBC.PB_TESTDRIVERCLASS.pushbutton.text"
+msgid "Test class"
+msgstr "Перевірити клас"
+
+#: dbadmin.src#PAGE_LDAP.FL_SEPARATOR1.fixedline.text
+msgctxt "dbadmin.src#PAGE_LDAP.FL_SEPARATOR1.fixedline.text"
+msgid "Connection Settings"
+msgstr "Параметри з'єднання"
+
+#: dbadmin.src#PAGE_LDAP.FT_BASEDN.fixedtext.text
+msgid "~Base DN"
+msgstr "~Базова DN"
+
+#: dbadmin.src#PAGE_LDAP.CB_USESSL.checkbox.text
+#, fuzzy
+msgid "Use secure connection (SSL)"
+msgstr "Використовувати ~захищене з'єднання (SSL)"
+
+#: dbadmin.src#PAGE_LDAP.FT_PORTNUMBER.fixedtext.text
+msgctxt "dbadmin.src#PAGE_LDAP.FT_PORTNUMBER.fixedtext.text"
+msgid "~Port number"
+msgstr "~Порт"
+
+#: dbadmin.src#PAGE_LDAP.FT_LDAPROWCOUNT.fixedtext.text
+msgid "Maximum number of ~records"
+msgstr "Макс. число ~записів"
+
+#: dbadmin.src#PAGE_USERDRIVER.FT_HOSTNAME.fixedtext.text
+msgid "~Hostname"
+msgstr "Назва ~комп'ютера"
+
+#: dbadmin.src#PAGE_USERDRIVER.FT_PORTNUMBER.fixedtext.text
+msgctxt "dbadmin.src#PAGE_USERDRIVER.FT_PORTNUMBER.fixedtext.text"
+msgid "~Port number"
+msgstr "~Порт"
+
+#: dbadmin.src#PAGE_USERDRIVER.FT_OPTIONS.fixedtext.text
+msgid "~Driver settings"
+msgstr "~Параметри драйвера"
+
+#: 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 ""
diff --git a/source/uk/dbaccess/source/ui/inc.po b/source/uk/dbaccess/source/ui/inc.po
new file mode 100644
index 00000000000..c935118f4d5
--- /dev/null
+++ b/source/uk/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: 2011-04-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "Оновити"
+
+#: toolbox_tmpl.hrc#MID_NEW_VIEW_DESIGN.#define.text
+msgid "New ~View Design"
+msgstr "Створити ~представлення (режим дизайну)"
+
+#: toolbox_tmpl.hrc#MID_NEW_TABLE_DESIGN.#define.text
+msgid "New ~Table Design"
+msgstr "Створити ~таблицю (режим дизайну)"
+
+#: toolbox_tmpl.hrc#MID_QUERY_WIZARD.#define.text
+msgid "Query AutoPilot..."
+msgstr "Помічник запитів..."
+
+#: toolbox_tmpl.hrc#MID_QUERY_NEW_DESIGN.#define.text
+msgid "New ~Query (Design View)"
+msgstr "Створити ~запит (режим дизайну)"
+
+#: toolbox_tmpl.hrc#MID_QUERY_EDIT_DESIGN.#define.text
+msgid "~Edit Query"
+msgstr "~Редагування запиту"
+
+#: toolbox_tmpl.hrc#MID_QUERY_NEW_SQL.#define.text
+msgid "New Query (~SQL View)"
+msgstr "Створити запит (режим ~SQL)"
+
+#: toolbox_tmpl.hrc#MID_DBUI_QUERY_EDIT_JOINCONNECTION.#define.text
+msgid "Edit..."
+msgstr "Редагування..."
+
+#: toolbox_tmpl.hrc#MID_COLUMN_WIDTH.#define.text
+msgid "Column ~Width..."
+msgstr "Ширина ~стовпчика..."
+
+#: toolbox_tmpl.hrc#MID_DOCUMENT_CREATE_REPWIZ.#define.text
+msgid "Report Wizard..."
+msgstr "Помічник звітів..."
+
+#: toolbox_tmpl.hrc#MID_DOCUMENT_NEW_AUTOPILOT.#define.text
+msgid "Form AutoPilot..."
+msgstr "Помічник форм..."
diff --git a/source/uk/dbaccess/source/ui/misc.po b/source/uk/dbaccess/source/ui/misc.po
new file mode 100644
index 00000000000..8e5d21171c8
--- /dev/null
+++ b/source/uk/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: 2011-04-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dbumiscres.src#RSC_CHARSETS.1.string.text
+msgid "System"
+msgstr "Системний"
+
+#: dbumiscres.src#STR_ERROR_DURING_CREATION.string.text
+msgid "Error during creation"
+msgstr "Помилка при створенні"
+
+#: dbumiscres.src#STR_UNEXPECTED_ERROR.string.text
+msgid "An unexpected error occurred. The operation could not be performed."
+msgstr "Виникла несподівана помилка. Неможливо виконати операцію."
+
+#: dbumiscres.src#STR_COULDNOTOPEN_LINKEDDOC.string.text
+msgid "The document \"$file$\" could not be opened."
+msgstr "Документ \"$file$\" не може бути відкритий."
+
+#: dbumiscres.src#STR_MISSING_TABLES_XDROP.string.text
+msgid "The table cannot be deleted because the database connection does not support this."
+msgstr "Неможливо видалити таблицю, оскільки це не підтримується підключенням до бази даних."
+
+#: dbumiscres.src#STR_BUTTON_TEXT_ALL.string.text
+msgctxt "dbumiscres.src#STR_BUTTON_TEXT_ALL.string.text"
+msgid "~All"
+msgstr "~Усі"
+
+#: dbumiscres.src#STR_UNDO_COLON.string.text
+msgid "Undo:"
+msgstr "Скасувати:"
+
+#: dbumiscres.src#STR_REDO_COLON.string.text
+msgid "Redo:"
+msgstr "Повторити:"
+
+#: dbumiscres.src#STR_UNKNOWN_TYPE_FOUND.string.text
+msgid "No corresponding column type could be found for column '#1'."
+msgstr "Не знайдено відповідний тип стовпчика для стовпчика '#1'."
+
+#: dbumiscres.src#STR_FILE_DOES_NOT_EXIST.string.text
+msgid "The file \"$file$\" does not exist."
+msgstr "Файл \"$file$\" не існує."
+
+#: dbumiscres.src#STR_WARNINGS_DURING_CONNECT.string.text
+msgid "Warnings were encountered while connecting to the data source. Press \"$buttontext$\" to view them."
+msgstr "При спробі з'єднання з джерелом даних виникли попередження. Натисніть на \"$buttontext$\" для їх перегляду."
+
+#: dbumiscres.src#STR_NAMED_OBJECT_ALREADY_EXISTS.string.text
+msgid ""
+"The name '$#$' already exists.\n"
+"Please enter another name."
+msgstr ""
+"Назва \"$#$\" уже существует.\n"
+"Виберіть іншу назву."
+
+#: dbumiscres.src#RID_STR_EXTENSION_NOT_PRESENT.string.text
+msgid "The report, \"$file$\", requires the extension Oracle Report Builder."
+msgstr ""
+
+#: WizardPages.src#STR_WIZ_COLUMN_SELECT_TITEL.string.text
+msgid "Apply columns"
+msgstr "Вибір полів"
+
+#: WizardPages.src#STR_WIZ_TYPE_SELECT_TITEL.string.text
+msgid "Type formatting"
+msgstr "Типи полів"
+
+#: WizardPages.src#STR_WIZ_PKEY_ALREADY_DEFINED.string.text
+msgid "The following fields have already been set as primary keys:\n"
+msgstr "Наступні поля вже встановлені як первинні ключі:\n"
+
+#: WizardPages.src#STR_WIZ_NAME_MATCHING_TITEL.string.text
+msgid "Assign columns"
+msgstr "Відповідність полів"
+
+#: WizardPages.src#WIZ_RTFCOPYTABLE.PB_HELP.helpbutton.text
+msgid "~Help"
+msgstr "~Довідка"
+
+#: WizardPages.src#WIZ_RTFCOPYTABLE.PB_CANCEL.cancelbutton.text
+msgid "~Cancel"
+msgstr "~Скасувати"
+
+#: WizardPages.src#WIZ_RTFCOPYTABLE.PB_PREV.pushbutton.text
+msgid "< ~Back"
+msgstr "< ~Назад"
+
+#: WizardPages.src#WIZ_RTFCOPYTABLE.PB_NEXT.pushbutton.text
+msgid "~Next>"
+msgstr "Д~алі>"
+
+#: WizardPages.src#WIZ_RTFCOPYTABLE.PB_OK.okbutton.text
+msgid "C~reate"
+msgstr "С~творити"
+
+#: WizardPages.src#WIZ_RTFCOPYTABLE.modaldialog.text
+msgid "Copy RTF Table"
+msgstr "Копіювати таблицю RTF"
+
+#: WizardPages.src#TAB_WIZ_COLUMN_SELECT.FL_COLUMN_SELECT.fixedline.text
+msgid "Existing columns"
+msgstr "Поля"
+
+#: WizardPages.src#TAB_WIZ_TYPE_SELECT.FL_COLUMN_NAME.fixedline.text
+msgid "Column information"
+msgstr "Інформація про поле"
+
+#: WizardPages.src#TAB_WIZ_TYPE_SELECT.FL_AUTO_TYPE.fixedline.text
+msgid "Automatic type recognition"
+msgstr "Автоматичне розпізнавання типу"
+
+#: WizardPages.src#TAB_WIZ_TYPE_SELECT.FT_AUTO.fixedtext.text
+msgid "Lines (ma~x)"
+msgstr "Рядків (~макс)"
+
+#: WizardPages.src#RID_SBA_RTF_PKEYPOPUP.SID_TABLEDESIGN_TABED_PRIMARYKEY.menuitem.text
+msgid "Primary Key"
+msgstr "Первинний ключ"
+
+#: WizardPages.src#TAB_WIZ_NAME_MATCHING.FT_TABLE_LEFT.fixedtext.text
+msgid "Source table: \n"
+msgstr "Первинна таблиця: \n"
+
+#: WizardPages.src#TAB_WIZ_NAME_MATCHING.FT_TABLE_RIGHT.fixedtext.text
+msgid "Destination table: \n"
+msgstr "Цільова таблиця: \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 "~Усі"
+
+#: WizardPages.src#TAB_WIZ_NAME_MATCHING.PB_NONE.pushbutton.text
+msgid "Non~e"
+msgstr "О~чистити"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.FT_TABLENAME.fixedtext.text
+msgid "Ta~ble name"
+msgstr "Назва ~таблиці"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.FL_OPTIONS.fixedline.text
+msgid "Options"
+msgstr "Параметри"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.RB_DEFDATA.radiobutton.text
+msgid "De~finition and data"
+msgstr "Ст~руктура та дані"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.RB_DEF.radiobutton.text
+msgid "Def~inition"
+msgstr "Стр~уктура"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.RB_VIEW.radiobutton.text
+msgid "A~s table view"
+msgstr "~Представлення"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.RB_APPENDDATA.radiobutton.text
+msgid "Append ~data"
+msgstr "Додати ~дані"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.CB_USEHEADERLINE.checkbox.text
+msgid "Use first ~line as column names"
+msgstr ""
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.CB_PRIMARY_COLUMN.checkbox.text
+msgid "Crea~te primary key"
+msgstr "С~творити первинний ключ"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.FT_KEYNAME.fixedtext.text
+msgid "Name"
+msgstr "Назва"
+
+#: WizardPages.src#STR_WIZ_TABLE_COPY.string.text
+msgctxt "WizardPages.src#STR_WIZ_TABLE_COPY.string.text"
+msgid "Copy table"
+msgstr "Копіювати таблицю"
+
+#: WizardPages.src#STR_COPYTABLE_TITLE_COPY.string.text
+msgctxt "WizardPages.src#STR_COPYTABLE_TITLE_COPY.string.text"
+msgid "Copy table"
+msgstr "Копіювання"
+
+#: WizardPages.src#STR_INVALID_TABLE_NAME.string.text
+msgid "This table name is not valid in the current database."
+msgstr "Неправильна назва таблиці у поточній базі даних"
+
+#: 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 "Виберіть \"Додати дані\" на першій сторінці для додавання даних до відповідної таблиці."
+
+#: WizardPages.src#STR_INVALID_TABLE_NAME_LENGTH.string.text
+msgid "Please change the table name. It is too long."
+msgstr "Будь-ласка, поміняйте назву таблиці. Вона надто довга."
diff --git a/source/uk/dbaccess/source/ui/querydesign.po b/source/uk/dbaccess/source/ui/querydesign.po
new file mode 100644
index 00000000000..027e922a563
--- /dev/null
+++ b/source/uk/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: 2011-04-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: query.src#STR_QUERY_UNDO_TABWINSHOW.string.text
+msgid "Add Table Window"
+msgstr "Додати вікно таблиці"
+
+#: query.src#STR_QUERY_UNDO_MOVETABWIN.string.text
+msgid "Move table window"
+msgstr "Перемістити вікно таблиці"
+
+#: query.src#STR_QUERY_UNDO_INSERTCONNECTION.string.text
+msgid "Insert Join"
+msgstr "Вставити зв'язок"
+
+#: query.src#STR_QUERY_UNDO_REMOVECONNECTION.string.text
+msgid "Delete Join"
+msgstr "Видалити зв'язок"
+
+#: query.src#STR_QUERY_UNDO_SIZETABWIN.string.text
+msgid "Resize table window"
+msgstr "Змінити розмір вікна таблиці"
+
+#: query.src#STR_QUERY_UNDO_TABFIELDDELETE.string.text
+msgid "Delete Column"
+msgstr "Видалити стовпчик"
+
+#: query.src#STR_QUERY_UNDO_TABFIELDMOVED.string.text
+msgid "Move column"
+msgstr "Перемістити стовпчик"
+
+#: query.src#STR_QUERY_UNDO_TABFIELDCREATE.string.text
+msgid "Add Column"
+msgstr "Додати стовпчик"
+
+#: query.src#RID_STR_TABLE_DOESNT_EXIST.string.text
+msgid "Invalid expression, table '$name$' does not exist."
+msgstr "Неправильний вираз, таблиця '$name' не існує."
+
+#: query.src#RID_STR_FIELD_DOESNT_EXIST.string.text
+msgid "Invalid expression, field name '$name$' does not exist."
+msgstr "Неправильний вираз. Поле '$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 "Запит охоплює #num# таблиць. Обрана база даних може обробляти не більше #maxnum# таблиць за команду."
+
+#: query.src#STR_QUERY_UNDO_TABWINDELETE.string.text
+msgid "Delete Table Window"
+msgstr "Видалити вікно таблиці"
+
+#: query.src#STR_QUERY_UNDO_MODIFY_CELL.string.text
+msgid "Edit Column Description"
+msgstr "Змінити опис стовпчика"
+
+#: query.src#STR_QUERY_UNDO_SIZE_COLUMN.string.text
+msgid "Adjust column width"
+msgstr "Змінити ширину стовпчика"
+
+#: query.src#STR_QUERY_SORTTEXT.string.text
+msgid "(not sorted);ascending;descending"
+msgstr "(без сортування);за зростанням;за спаданням"
+
+#: query.src#STR_QUERY_FUNCTIONS.string.text
+msgid "(no function);Group"
+msgstr "(без функції);Group"
+
+#: query.src#STR_QUERY_NOTABLE.string.text
+msgid "(no table)"
+msgstr "(немає таблиці)"
+
+#: query.src#STR_QRY_ORDERBY_UNRELATED.string.text
+msgid "The database only supports sorting for visible fields."
+msgstr "База даних підтримує сортування лише для видимих полів."
+
+#: query.src#RID_QUERYFUNCTION_POPUPMENU.ID_QUERY_FUNCTION.menuitem.text
+msgid "Functions"
+msgstr "Функції"
+
+#: query.src#RID_QUERYFUNCTION_POPUPMENU.ID_QUERY_TABLENAME.menuitem.text
+msgid "Table Name"
+msgstr "Назва таблиці"
+
+#: query.src#RID_QUERYFUNCTION_POPUPMENU.ID_QUERY_ALIASNAME.menuitem.text
+msgid "Alias"
+msgstr "Псевдонім"
+
+#: query.src#RID_QUERYFUNCTION_POPUPMENU.ID_QUERY_DISTINCT.menuitem.text
+msgid "Distinct Values"
+msgstr "Однозначні значення"
+
+#: query.src#STR_QUERY_HANDLETEXT.string.text
+msgid "Field;Alias;Table;Sort;Visible;Function;Criterion;Or;Or"
+msgstr "Поле;Псевдонім;Таблиця;Сортувати;Видимий;Функція;Критерій;Або;Або"
+
+#: query.src#STR_QRY_TOO_MANY_COLUMNS.string.text
+msgid "There are too many columns."
+msgstr "Надто багато колонок."
+
+#: query.src#ERR_QRY_CRITERIA_ON_ASTERISK.errorbox.text
+msgid "A condition cannot be applied to field [*]"
+msgstr "Неможливо застосувати дані умови до поля [*]"
+
+#: query.src#STR_QRY_TOO_LONG_STATEMENT.string.text
+msgid "The SQL statement created is too long."
+msgstr "Створений вираз SQL є занадто довгим."
+
+#: query.src#STR_QRY_TOOCOMPLEX.string.text
+msgid "Query is too complex"
+msgstr "Запит є занадто складним"
+
+#: query.src#STR_QRY_NOSELECT.string.text
+msgid "Nothing has been selected."
+msgstr "Нічого не виділено."
+
+#: query.src#STR_QRY_TOOMANYCOND.string.text
+msgid "Too many search criteria"
+msgstr "Надто багато критеріїв пошуку"
+
+#: query.src#STR_QRY_SYNTAX.string.text
+msgid "SQL syntax error"
+msgstr "Помилка у синтаксисі SQL"
+
+#: query.src#ERR_QRY_ORDERBY_ON_ASTERISK.errorbox.text
+msgid "[*] cannot be used as a sort criterion."
+msgstr "Неможливо використовувати [*] у якості критерію."
+
+#: query.src#STR_QRY_TOO_MANY_TABLES.string.text
+msgid "There are too many tables."
+msgstr "Надто багато таблиць."
+
+#: query.src#STR_QRY_NATIVE.string.text
+msgid "The statement will not be applied when querying in the SQL dialect of the database."
+msgstr "При запиті у діалекті бази даних SQL інструкцію не буде застосовано."
+
+#: query.src#ERR_QRY_AMB_FIELD.errorbox.text
+msgid "Field name not found or not unique"
+msgstr "Назва поля не знайдена або неоднозначна"
+
+#: query.src#STR_QRY_ILLEGAL_JOIN.string.text
+msgid "Join could not be processed"
+msgstr "Не вдається здійснити зв'язок"
+
+#: query.src#STR_SVT_SQL_SYNTAX_ERROR.string.text
+msgid "Syntax error in SQL statement"
+msgstr "Синтаксична помилка у виразі SQL"
+
+#: query.src#STR_QUERYDESIGN_NO_VIEW_SUPPORT.string.text
+msgid "This database does not support table views."
+msgstr "Ця база даних не підтримує представлень у вигляді таблиць."
+
+#: query.src#STR_NO_ALTER_VIEW_SUPPORT.string.text
+msgid "This database does not support altering of existing table views."
+msgstr "Ця база даних не підтримує зміну структури існуючих представлень таблиць."
+
+#: query.src#STR_QUERYDESIGN_NO_VIEW_ASK.string.text
+msgid "Do you want to create a query instead?"
+msgstr "Натомість створити запит?"
+
+#: query.src#ERR_QRY_NOSTATEMENT.errorbox.text
+msgid "No query could be created."
+msgstr "неможливо створити запит."
+
+#: query.src#ERR_QRY_NOCRITERIA.errorbox.text
+msgid "No query could be created because no fields were selected."
+msgstr "Неможливо створити запит, оскільки не вибрано жодного поля."
+
+#: 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 "Відповідне джерело даних було видалено. Неможливо зберегти дані, що відносяться до цього джерела."
+
+#: query.src#STR_QRY_COLUMN_NOT_FOUND.string.text
+msgid "The column '$name$' is unknown."
+msgstr "Стовпчик '$name$' не знайдено."
+
+#: query.src#STR_QRY_JOIN_COLUMN_COMPARE.string.text
+msgid "Columns can only be compared using '='."
+msgstr "Колонки можуть бути порівняні тільки за допомогою '='."
+
+#: query.src#STR_QRY_LIKE_LEFT_NO_COLUMN.string.text
+msgid "You must use a column name before 'LIKE'."
+msgstr "Слід вживати назву колонки перед 'LIKE'."
+
+#: query.src#STR_QRY_CHECK_CASESENSITIVE.string.text
+msgid "The column could not be found. Please note that the database is case-sensitive."
+msgstr "Неможливо знайти стовпчик. Можливо ця база даних розрізняє назви з великих та малих літер."
+
+#: query.src#STR_QUERYDESIGN.string.text
+msgid " - %PRODUCTNAME Base: Query Design"
+msgstr " - Дизайнер запитів %PRODUCTNAME Base"
+
+#: query.src#STR_VIEWDESIGN.string.text
+msgid " - %PRODUCTNAME Base: View Design"
+msgstr " - View Design %PRODUCTNAME Base"
+
+#. 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$ був змінений.\n"
+"Зберегти зміни?"
+
+#. 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 ""
+
+#. 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 "Об'єкт $object$ буде відкритий у режимі SQL."
+
+#: query.src#RSC_QUERY_OBJECT_TYPE.1.string.text
+msgid "The table view"
+msgstr ""
+
+#: query.src#RSC_QUERY_OBJECT_TYPE.2.string.text
+msgid "The query"
+msgstr ""
+
+#: query.src#RSC_QUERY_OBJECT_TYPE.3.string.text
+msgid "The SQL statement"
+msgstr "Вираз 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 "Запит не створює множину результату, тому не зможе використовуватись як частина іншого запиту."
+
+#: 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 "Параметри ActiveConnection та DataSourceName не вказані або некоректні, неможливо ініціалізувати дизайнер запитів."
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.FL_JOIN.fixedline.text
+msgid "Options"
+msgstr "Параметри з'єднання"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.FT_LISTBOXTITLE.fixedtext.text
+msgid "~Type"
+msgstr "~Тип"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE.1.stringlist.text
+msgid "Inner join"
+msgstr "Внутрішнє об'єднання"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE.2.stringlist.text
+msgid "Left join"
+msgstr "Ліве об'єднання"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE.3.stringlist.text
+msgid "Right join"
+msgstr "Праве об'єднання"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE.4.stringlist.text
+msgid "Full (outer) join"
+msgstr "Зовнішнє об'єднання"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE.5.stringlist.text
+msgid "Cross join"
+msgstr "Перехресне об'єднання"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.CB_NATURAL.checkbox.text
+msgid "Natural"
+msgstr "Природній"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_CONTROL.FL_INVOLVED_TABLES.fixedline.text
+msgid "Tables involved"
+msgstr "Включені таблиці"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_CONTROL.FL_INVOLVED_FIELDS.fixedline.text
+msgid "Fields involved"
+msgstr "Включені поля"
+
+#: querydlg.src#DLG_QRY_JOIN.modaldialog.text
+msgid "Join Properties"
+msgstr "Властивості зв'язку"
+
+#: querydlg.src#STR_JOIN_TYPE_HINT.string.text
+msgid "Please note that some databases may not support this join type."
+msgstr "Пам'ятайте, що деякі бази даних можуть не підтримувати цей тип з'єднання."
+
+#: 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 "Включає лише записи, для яких вміст відповідних полів кожної таблиці є ідентичним."
+
+#: 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 "Містить УСІ записи з таблиці '%1' але тільки записи з таблиці '%2', в яких зміст зв'язаних полів обох таблиць є однаковим."
+
+#: querydlg.src#STR_QUERY_FULL_JOIN.string.text
+msgid "Contains ALL records from '%1' and from '%2'."
+msgstr "Містить УСІ записи з '%1' та з '%2'."
+
+#: querydlg.src#STR_QUERY_CROSS_JOIN.string.text
+msgid "Contains the cartesian product of ALL records from '%1' and from '%2'."
+msgstr "Містить декартовий добуток всіх записів з '%1' та '%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 "Містить лише один стовпчик для кожної пари однаково названих стовпчиків з '%1' та '%2'."
diff --git a/source/uk/dbaccess/source/ui/relationdesign.po b/source/uk/dbaccess/source/ui/relationdesign.po
new file mode 100644
index 00000000000..7e1d324e9c7
--- /dev/null
+++ b/source/uk/dbaccess/source/ui/relationdesign.po
@@ -0,0 +1,54 @@
+#. 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: 2011-04-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\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 "Цей зв'язок вже існує. Редагувати чи створити новий?"
+
+#: relation.src#STR_QUERY_REL_EDIT.string.text
+msgid "Edit..."
+msgstr "Редагування..."
+
+#: relation.src#STR_QUERY_REL_CREATE.string.text
+msgid "Create..."
+msgstr "Створити..."
+
+#: relation.src#STR_RELATIONDESIGN.string.text
+msgid " - %PRODUCTNAME Base: Relation design"
+msgstr " - Проектування зв'язків %PRODUCTNAME Base"
+
+#: relation.src#STR_RELATIONDESIGN_NOT_AVAILABLE.string.text
+msgid "The database does not support relations."
+msgstr "База даних не підтримує зв'язки."
+
+#: relation.src#RELATION_DESIGN_SAVEMODIFIED.querybox.text
+msgid ""
+"The relation design has been changed.\n"
+"Do you want to save the changes?"
+msgstr ""
+"Зв'зки було змінено.\n"
+"Зберегти зміни?"
+
+#: 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 "Видалення цієї таблиці призведе до видалення усіх зв'язків, що відносіться до неї. Продовжити?"
+
+#: 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 ""
diff --git a/source/uk/dbaccess/source/ui/tabledesign.po b/source/uk/dbaccess/source/ui/tabledesign.po
new file mode 100644
index 00000000000..9f6bc94fa37
--- /dev/null
+++ b/source/uk/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: 2011-04-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\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 "Невідомо;Текст;Число;Дата/Час;Дата;Час;Логічне;Валюта;Пам'ятка;Лічильник;Зображення;Текст (фікс.);Десяткове;Двійкове (фікс.);Двійкове;Довге ціле;З подвійною точністю;З плаваючою комою;Дійсне;Ціле;Коротке ціле;Tiny Integer;SQL Нуль;Об'єкт;Distinct;Структура;Поле;BLOB;CLOB;REF;OTHER"
+
+#: table.src#STR_TABLEDESIGN_UNDO_PRIMKEY.string.text
+msgctxt "table.src#STR_TABLEDESIGN_UNDO_PRIMKEY.string.text"
+msgid "Insert/remove primary key"
+msgstr "Вставити/вилучити первинний ключ"
+
+#: table.src#STR_VALUE_YES.string.text
+msgid "Yes"
+msgstr "Так"
+
+#: table.src#STR_VALUE_NO.string.text
+msgid "No"
+msgstr "Ні"
+
+#: table.src#STR_VALUE_ASC.string.text
+msgid "Ascending"
+msgstr "За зростанням"
+
+#: table.src#STR_VALUE_DESC.string.text
+msgid "Descending"
+msgstr "За спаданням"
+
+#: table.src#STR_VALUE_NONE.string.text
+msgid "<none>"
+msgstr "<немає>"
+
+#: table.src#STR_TAB_FIELD_NAME.string.text
+msgid "Field name"
+msgstr "Назва поля"
+
+#: table.src#STR_TAB_FIELD_COLUMN_NAME.string.text
+msgid "Field Name"
+msgstr "Назва поля"
+
+#: table.src#STR_TAB_FIELD_DATATYPE.string.text
+msgid "Field ~type"
+msgstr "Тип поля"
+
+#: table.src#STR_TAB_FIELD_COLUMN_DATATYPE.string.text
+msgid "Field Type"
+msgstr "Тип поля"
+
+#: table.src#STR_TAB_FIELD_LENGTH.string.text
+msgid "Field length"
+msgstr "Довжина поля"
+
+#: table.src#STR_TAB_HELP_TEXT.string.text
+msgid "Description"
+msgstr "Опис"
+
+#: table.src#STR_COLUMN_DESCRIPTION.string.text
+msgid "Column Description"
+msgstr ""
+
+#: table.src#STR_TAB_FIELD_NULLABLE.string.text
+msgid "Input required"
+msgstr "Потрібен ввід"
+
+#: table.src#STR_FIELD_AUTOINCREMENT.string.text
+msgid "~AutoValue"
+msgstr "~Автозначення"
+
+#: table.src#STR_TAB_PROPERTIES.string.text
+msgid "Field Properties"
+msgstr "Властивості поля"
+
+#: table.src#STR_TABPAGE_GENERAL.string.text
+msgid "General"
+msgstr "Загальні"
+
+#: table.src#STR_TAB_TABLE_DESCRIPTION.string.text
+msgid "Description:"
+msgstr "Опис:"
+
+#: table.src#STR_TAB_TABLE_PROPERTIES.string.text
+msgid "Table properties"
+msgstr "Властивості таблиці"
+
+#: table.src#ERR_INVALID_LISTBOX_ENTRY.errorbox.text
+msgid "The text you entered is not a list element. "
+msgstr "Введений текст не є елементом списку"
+
+#: table.src#RID_TABLEDESIGNROWPOPUPMENU.SID_TABLEDESIGN_INSERTROWS.menuitem.text
+msgid "Insert Rows"
+msgstr "Вставити рядки"
+
+#: table.src#RID_TABLEDESIGNROWPOPUPMENU.SID_TABLEDESIGN_TABED_PRIMARYKEY.menuitem.text
+msgid "Primary Key"
+msgstr "Первинний ключ"
+
+#: table.src#STR_TABED_UNDO_CELLMODIFIED.string.text
+msgid "Modify cell"
+msgstr "Змінити комірку"
+
+#: table.src#STR_TABED_UNDO_ROWDELETED.string.text
+msgid "Delete row"
+msgstr "Видалити рядок"
+
+#: table.src#STR_TABED_UNDO_TYPE_CHANGED.string.text
+msgid "Modify field type"
+msgstr "Змінити тип поля"
+
+#: table.src#STR_TABED_UNDO_ROWINSERTED.string.text
+msgid "Insert row"
+msgstr "Вставити рядок"
+
+#: table.src#STR_TABED_UNDO_NEWROWINSERTED.string.text
+msgid "Insert new row"
+msgstr "Вставити новий рядок"
+
+#: table.src#STR_TABED_UNDO_PRIMKEY.string.text
+msgctxt "table.src#STR_TABED_UNDO_PRIMKEY.string.text"
+msgid "Insert/remove primary key"
+msgstr "Вставити / вилучити первинний ключ"
+
+#: table.src#STR_DEFAULT_VALUE.string.text
+msgid "~Default value"
+msgstr "~Типове значення"
+
+#: table.src#STR_FIELD_REQUIRED.string.text
+msgid "~Entry required"
+msgstr "~Обов'язковий"
+
+#: table.src#STR_TEXT_LENGTH.string.text
+msgctxt "table.src#STR_TEXT_LENGTH.string.text"
+msgid "~Length"
+msgstr "~Довжина"
+
+#: table.src#STR_NUMERIC_TYPE.string.text
+msgid "~Type"
+msgstr "~Тип"
+
+#: table.src#STR_LENGTH.string.text
+msgctxt "table.src#STR_LENGTH.string.text"
+msgid "~Length"
+msgstr "~Довжина"
+
+#: table.src#STR_SCALE.string.text
+msgid "Decimal ~places"
+msgstr "~Знаків після коми"
+
+#: table.src#STR_FORMAT.string.text
+msgid "Format example"
+msgstr "Приклад формату"
+
+#: 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 ""
+"Виберіть значення, що буде призначатися цьому полю для кожного нового запису.\n"
+"Якщо поле не повинно мати таке значення, лишить рядок порожнім."
+
+#: 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 ""
+"Введіть типове значення для цього поля.\n"
+"\n"
+"Коли пізніше ви введете дані у таблицю, це значення буде використано в кожному новому запису. Типове значення має відповідати формату комірки, що вказується нижче."
+
+#: 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 "Виберіть \"Так\", якщо значення цього поля не повинно дорівнювати NULL (це означає, що у полі обв'язково мають бути введені дані)."
+
+#: table.src#STR_HELP_TEXT_LENGTH.string.text
+msgid "Enter the maximum text length permitted."
+msgstr "Введіть максимально дозволену довжину тексту."
+
+#: table.src#STR_HELP_NUMERIC_TYPE.string.text
+msgid "Enter the number format."
+msgstr "Введіть формат числа."
+
+#: 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 ""
+"Вкажіть довжину даних для цього поля.\n"
+"\n"
+"Для десяткових полів - це максимальна довжина введеного числа, для бінарних полів - це довжина блоку даних.\n"
+"Якщо вказане значення буде довше максимально допустимого для цієї бази даних, тоді воно буде автоматично відкорковане."
+
+#: table.src#STR_HELP_SCALE.string.text
+msgid "Specify the number of decimal places permitted in this field."
+msgstr "Вкажіть число знаків, що стоять після десяткової коми."
+
+#: 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 "Тут можна побачити, як відображаються дані відповідно до обраного формату (за допомогою кнопки, що розташована праворуч, можна змінити формат)."
+
+#: table.src#STR_HELP_FORMAT_BUTTON.string.text
+msgid "This is where you determine the output format of the data."
+msgstr "Тут можна визначити формат виводу даних."
+
+#: 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 ""
+"Виберіть це значення, якщо поле буде містити автоінкрементне значення.\n"
+"\n"
+"Ви не зможете безпосередньо вводити дані в полі цього типу, оскільки для кожного нового запису цьому полю буде автоматично призначено унікальне значення (яке утворюється завдяки збільшенню на одиницю значення з попереднього запису)."
+
+#: 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 "Неможливо зберегти таблицю тому що назву стовпчика \"$column$\" було призначено двічі."
+
+#: 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 "Стовпчик \"$column$\" відноситься до первинного ключа. При його видаленні буде видалено первинний ключ. Ви дійсно хочете видалити цей стовпчик?"
+
+#: table.src#STR_TBL_COLUMN_IS_KEYCOLUMN_TITLE.string.text
+msgid "Primary Key Affected"
+msgstr "Відноситься до первинного ключа"
+
+#: table.src#STR_COLUMN_NAME.string.text
+msgid "Column"
+msgstr "Стовпчик"
+
+#: table.src#STR_QRY_CONTINUE.string.text
+msgid "Continue anyway?"
+msgstr "Продовжити попри все?"
+
+#: table.src#STR_STAT_WARNING.string.text
+msgid "Warning!"
+msgstr "Попередження!"
+
+#: table.src#TABLE_DESIGN_SAVEMODIFIED.querybox.text
+msgid ""
+"The table has been changed.\n"
+"Do you want to save the changes?"
+msgstr ""
+"Таблицю було змінено.\n"
+"Зберегти зміни?"
+
+#: 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 ""
+"Зв'язок з базою даних було втрачено! Проектування таблиці можливе лише з обмеженнями функціональності.\n"
+"Відновити зв'язок?"
+
+#: table.src#STR_TABLEDESIGN_CONNECTION_MISSING.string.text
+msgid "The table could not be saved due to problems connecting to the database."
+msgstr "Неможливо зберегти таблицю, поки не відноситься зв'язок з базою даних."
+
+#: table.src#STR_TABLEDESIGN_DATASOURCE_DELETED.string.text
+msgid "The table filter could not be adjusted because the data source has been deleted."
+msgstr "Неможливо застосувати фільтр, оскільки джерело даних видалено."
+
+#: 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 ""
+"Перш ніж змінити індекси таблиці, хх потрібно зберегти.\n"
+"Зберегти зміни?"
+
+#: table.src#STR_TABLEDESIGN_NO_PRIM_KEY_HEAD.string.text
+msgid "No primary key"
+msgstr "Без первинного ключа"
+
+#: 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 ""
+"Для ідентифікації запису у цій базі даних потрібен унікальний індекс або первинний ключ.\n"
+"Ви можете ввести дані дані у таблицю лише після виконання однієї з цих умов.\n"
+"\n"
+"Створити первинний ключ?"
+
+#: table.src#STR_TABLEDESIGN_TITLE.string.text
+msgid " - %PRODUCTNAME Base: Table Design"
+msgstr " - Проектування таблиці %PRODUCTNAME Base"
+
+#: 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 "Неможливо змінити стовпчик \"$column$\". Його можна вилучити та застосувати. Продовжити?"
+
+#: table.src#STR_TABLEDESIGN_SAVE_ERROR.string.text
+msgid "Error while saving the table design"
+msgstr "Помилка при спробі збереження дизайну таблиці"
+
+#: table.src#STR_TABLEDESIGN_COULD_NOT_DROP_COL.string.text
+msgid "The column $column$ could not be deleted."
+msgstr "Стовпчик $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 "Ви намагаєтеся видалити всі стовпчики у таблиці. Таблиця не може існувати без стовпчиків. Видалити таблицю з бази даних? Якщо ні, таблиця лишитися незміненою."
+
+#: table.src#STR_AUTOINCREMENT_VALUE.string.text
+msgid "A~uto-increment statement"
+msgstr "~Автоінкрементна інструкція"
+
+#: 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 ""
+"Введіть SQL-інструкцію для автоінкрементного поля.\n"
+"\n"
+"Ця інструкція буде безпосередньо передана до бази даних при створенні таблиці."
+
+#: 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 ""
+"Інформацію про тип не можна отримана з бази даних.\n"
+"Режим проектування таблиці недоступний для цього джерела даних."
+
+#: table.src#STR_CHANGE_COLUMN_NAME.string.text
+msgid "change field name"
+msgstr "змінити назву поля"
+
+#: table.src#STR_CHANGE_COLUMN_TYPE.string.text
+msgid "change field type"
+msgstr "змінити тип поля"
+
+#: table.src#STR_CHANGE_COLUMN_DESCRIPTION.string.text
+msgid "change field description"
+msgstr "змінити опис поля"
+
+#: table.src#STR_CHANGE_COLUMN_ATTRIBUTE.string.text
+msgid "change field attribute"
+msgstr "змінити атрибут поля"
diff --git a/source/uk/dbaccess/source/ui/uno.po b/source/uk/dbaccess/source/ui/uno.po
new file mode 100644
index 00000000000..1c50428a8d6
--- /dev/null
+++ b/source/uk/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-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "~Запам'ятати пароль до кінця сеансу"
+
+#: dbinteraction.src#STR_REMEMBERPASSWORD_PERSISTENT.string.text
+msgid "~Remember password"
+msgstr "~Запам'ятати пароль"
+
+#: copytablewizard.src#STR_CTW_NO_VIEWS_SUPPORT.string.text
+msgid "The destination database does not support views."
+msgstr "Цільова база даних не підтримує представлення."
+
+#: copytablewizard.src#STR_CTW_NO_PRIMARY_KEY_SUPPORT.string.text
+msgid "The destination database does not support primary keys."
+msgstr "Цільова база даних не підтримує первинні ключі."
+
+#: 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 "не знайдено дескриптор доступу до бази даних або не один з дескрипторів не може представити всю необхідну інформацію"
+
+#: copytablewizard.src#STR_CTW_ONLY_TABLES_AND_QUERIES_SUPPORT.string.text
+msgid "Only tables and queries are supported at the moment."
+msgstr "Наразі підтримуються лише таблиці та запити."
+
+#: copytablewizard.src#STR_CTW_COPY_SOURCE_NEEDS_BOOKMARKS.string.text
+msgid "The copy source's result set must support bookmarks."
+msgstr "Набір результату має підтримувати закладки."
+
+#: copytablewizard.src#STR_CTW_UNSUPPORTED_COLUMN_TYPE.string.text
+msgid "Unsupported source column type ($type$) at column position $pos$."
+msgstr "Непідтримуваний тип первинного стовпчика ($type$) у позиції $pos$."
+
+#: copytablewizard.src#STR_CTW_ILLEGAL_PARAMETER_COUNT.string.text
+msgid "Illegal number of initialization parameters."
+msgstr "Неприпустима кількість параметрів ініціалізації."
+
+#: copytablewizard.src#STR_CTW_ERROR_DURING_INITIALIZATION.string.text
+msgid "An error occurred during initialization."
+msgstr "Помилка при ініціалізації."
+
+#: copytablewizard.src#STR_CTW_ERROR_UNSUPPORTED_SETTING.string.text
+msgid "Unsupported setting in the copy source descriptor: $name$."
+msgstr ""
+
+#: copytablewizard.src#STR_CTW_ERROR_NO_QUERY.string.text
+msgid "To copy a query, your connection must be able to provide queries."
+msgstr ""
+
+#: copytablewizard.src#STR_CTW_ERROR_INVALID_INTERACTIONHANDLER.string.text
+msgid "The given interaction handler is invalid."
+msgstr ""
diff --git a/source/uk/desktop/source/app.po b/source/uk/desktop/source/app.po
new file mode 100644
index 00000000000..edd5ef81eeb
--- /dev/null
+++ b/source/uk/desktop/source/app.po
@@ -0,0 +1,174 @@
+#. 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: 2011-04-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: desktop.src#STR_RECOVER_QUERY.string.text
+msgid "Should the file \"$1\" be restored?"
+msgstr "Відновити документ \"$1\"?"
+
+#: desktop.src#STR_RECOVER_TITLE.string.text
+msgid "File Recovery"
+msgstr "Відновлення документу"
+
+#: 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 ""
+"Критична помилка.\n"
+"\n"
+"Всі змінені файли були збережені і можливо будуть\n"
+"відновлені після перезапуску програми."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_CANNOT_START.string.text
+msgid "The application cannot be started. "
+msgstr "Неможливо запустити програму."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_DIR_MISSING.string.text
+msgid "The configuration directory \"$1\" could not be found."
+msgstr "Неможливо знайти конфігураційний каталог \"$1\"."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_PATH_INVALID.string.text
+msgid "The installation path is invalid."
+msgstr "Неправильний шлях встановлення."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_NO_PATH.string.text
+msgid "The installation path is not available."
+msgstr "Недоступний шлях встановлення."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_INTERNAL.string.text
+msgid "An internal error occurred."
+msgstr "Внутрішня помилка."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_FILE_CORRUPT.string.text
+msgid "The configuration file \"$1\" is corrupt."
+msgstr "Файл конфігурації \"$1\" зіпсований."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_FILE_MISSING.string.text
+msgid "The configuration file \"$1\" was not found."
+msgstr "Файл конфігурації \"$1\" не знайдено."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_NO_SUPPORT.string.text
+msgid "The configuration file \"$1\" does not support the current version."
+msgstr "Файл конфігурації \"$1\" не підтримує поточну версію."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_LANGUAGE_MISSING.string.text
+msgid "The user interface language cannot be determined."
+msgstr "Неможливо визначити мову інтерфейсу користувача."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_NO_SERVICE.string.text
+msgid "The component manager is not available."
+msgstr "Недоступний менеджер компонентів."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_NO_CFG_SERVICE.string.text
+msgid "The configuration service is not available."
+msgstr "Служби конфігурації недоступні."
+
+#: 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 "Запустіть програму встановлення, щоб продовжити встановлення з диска чи з теки, що містить пакет програм встановлення."
+
+#: desktop.src#STR_CONFIG_ERR_SETTINGS_INCOMPLETE.string.text
+msgid "The startup settings for accessing the central configuration are incomplete. "
+msgstr "Початкові відомості для доступу до центральної конфігурації є неповними."
+
+#: desktop.src#STR_CONFIG_ERR_CANNOT_CONNECT.string.text
+msgid "A connection to the central configuration could not be established. "
+msgstr "Неможливо встановити підключення до центральної конфігурації."
+
+#: desktop.src#STR_CONFIG_ERR_RIGHTS_MISSING.string.text
+msgid "You cannot access the central configuration because of missing access rights. "
+msgstr "Ви не можете отримати доступ до центральної конфігурації через відсутність прав доступу."
+
+#: desktop.src#STR_CONFIG_ERR_ACCESS_GENERAL.string.text
+msgid "A general error occurred while accessing your central configuration. "
+msgstr "Загальна помилка під час доступу до вашої центральної конфігурації."
+
+#: 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 "Зміни до ваших персональних параметрів не можуть бути збережені централізовано через відсутність прав доступу."
+
+#: 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 через помилку у доступі до конфігураційних даних %PRODUCTNAME.\n"
+"\n"
+"Зверніться до вашого системного адміністратора."
+
+#: desktop.src#STR_INTERNAL_ERRMSG.string.text
+msgid "The following internal error has occurred: "
+msgstr "Виникла наступна внутрішня помилка:"
+
+#: 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 ""
+"Наразі ваші персональні параметри недоступні. Можливо, вони використовуються іншою копією %PRODUCTNAME, або ж до них немає доступу.\n"
+"Одночасний доступ може призвести до неузгодженості ваших особистих параметрів. Перш ніж продовжити роботу,перевірте, що користувач \"$u\" завершив роботу з %PRODUCTNAME на \"$h\".\n"
+"\n"
+"Продовжити роботу?"
+
+#: 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 ""
+
+#: desktop.src#EBX_ERR_PRINTDISABLED.errorbox.text
+msgid "Printing is disabled. No documents can be printed."
+msgstr "Друк вимкнено. Друк документів неможливий."
+
+#: 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 ""
+
+#: 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 "Недоступний менеджер шляхів.\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 ""
+"Встановлення %PRODUCTNAME для користувача неможливо завершити через відсутність вільного простору на диску. Звільніть місце за вказаною адресою та перезапустіть %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 ""
+"Встановлення %PRODUCTNAME для користувача неможливо завершити через відсутні правам доступу. Перевірте, що ви маєте права доступу до вказаного далі каталогу та перезапустіть %PRODUCTNAME:\n"
+"\n"
diff --git a/source/uk/desktop/source/deployment/gui.po b/source/uk/desktop/source/deployment/gui.po
new file mode 100644
index 00000000000..84fb7c71137
--- /dev/null
+++ b/source/uk/desktop/source/deployment/gui.po
@@ -0,0 +1,529 @@
+#. 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: 2011-12-15 17:00+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "Додати розширення"
+
+#: dp_gui_dialog.src#RID_CTX_ITEM_REMOVE.string.text
+msgid "~Remove"
+msgstr "В~илучити"
+
+#: dp_gui_dialog.src#RID_CTX_ITEM_ENABLE.string.text
+msgid "~Enable"
+msgstr "~Активізувати"
+
+#: dp_gui_dialog.src#RID_CTX_ITEM_DISABLE.string.text
+msgid "~Disable"
+msgstr "~Вимкнути"
+
+#: dp_gui_dialog.src#RID_CTX_ITEM_CHECK_UPDATE.string.text
+msgid "~Update..."
+msgstr "~Оновити..."
+
+#: dp_gui_dialog.src#RID_CTX_ITEM_OPTIONS.string.text
+msgid "~Options..."
+msgstr "~Параметри..."
+
+#: 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 "Додавання %EXTENSION_NAME"
+
+#: dp_gui_dialog.src#RID_STR_REMOVING_PACKAGES.string.text
+msgid "Removing %EXTENSION_NAME"
+msgstr "Видалення %EXTENSION_NAME"
+
+#: dp_gui_dialog.src#RID_STR_ENABLING_PACKAGES.string.text
+msgid "Enabling %EXTENSION_NAME"
+msgstr "Вмикання %EXTENSION_NAME"
+
+#: dp_gui_dialog.src#RID_STR_DISABLING_PACKAGES.string.text
+msgid "Disabling %EXTENSION_NAME"
+msgstr "Вимикання %EXTENSION_NAME"
+
+#: dp_gui_dialog.src#RID_STR_ACCEPT_LICENSE.string.text
+msgid "Accept license for %EXTENSION_NAME"
+msgstr ""
+
+#: dp_gui_dialog.src#RID_STR_INSTALL_FOR_ALL.string.text
+msgid "~For all users"
+msgstr "Для ~усіх користувачів"
+
+#: dp_gui_dialog.src#RID_STR_INSTALL_FOR_ME.string.text
+msgid "~Only for me"
+msgstr "~Лише для поточного користувача"
+
+#: dp_gui_dialog.src#RID_STR_ERROR_UNKNOWN_STATUS.string.text
+msgid "Error: The status of this extension is unknown"
+msgstr "Помилка: статус розширення невідомий"
+
+#: dp_gui_dialog.src#RID_STR_CLOSE_BTN.string.text
+msgctxt "dp_gui_dialog.src#RID_STR_CLOSE_BTN.string.text"
+msgid "Close"
+msgstr "Закрити"
+
+#: dp_gui_dialog.src#RID_STR_EXIT_BTN.string.text
+msgid "Quit"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+"Розширення неможливо встановити через\n"
+"незадоволені системні залежності:"
+
+#: 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 ""
+
+#: dp_gui_dialog.src#RID_STR_SHOW_LICENSE_CMD.string.text
+#, fuzzy
+msgid "Show license"
+msgstr "~Показати слайд"
+
+#: 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 "Для встановлення даного розширення зробіть наступне:"
+
+#: 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 "Прочитайте повністю ліцензійну угоду. Використовуйте кнопку \"Прокрутити вниз\" для перегляду тексту ліцензії."
+
+#: 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 "Натисніть «Прийняти», якщо ви згодні з умовами ліцензії"
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.PB_LICENSE_DOWN.pushbutton.text
+msgid "~Scroll Down"
+msgstr "Прокрутити в~низ"
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.BTN_LICENSE_ACCEPT.okbutton.text
+msgid "Accept"
+msgstr "Прийняти"
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.BTN_LICENSE_DECLINE.cancelbutton.text
+msgid "Decline"
+msgstr "Відхилити"
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.modaldialog.text
+#, fuzzy
+msgctxt "dp_gui_dialog.src#RID_DLG_LICENSE.modaldialog.text"
+msgid "Extension Software License Agreement"
+msgstr "Ліцензійна угода озширення"
+
+#: dp_gui_dialog.src#RID_DLG_SHOW_LICENSE.RID_EM_BTN_CLOSE.okbutton.text
+#, fuzzy
+msgctxt "dp_gui_dialog.src#RID_DLG_SHOW_LICENSE.RID_EM_BTN_CLOSE.okbutton.text"
+msgid "Close"
+msgstr "Закрити"
+
+#: dp_gui_dialog.src#RID_DLG_SHOW_LICENSE.modaldialog.text
+#, fuzzy
+msgctxt "dp_gui_dialog.src#RID_DLG_SHOW_LICENSE.modaldialog.text"
+msgid "Extension Software License Agreement"
+msgstr "Ліцензійна угода озширення"
+
+#: 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 ""
+"Буде встановлено розширення «%NAME».\n"
+"Натисніть «Гаразд» для встановлення.\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 ""
+
+#: 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 ""
+"Перевірте, що інші користувачі не працюють з %PRODUCTNAME, при зміні розширень у спільному для усіх користувачів каталозі.\n"
+"Натисніть «Гаразд» для встановлення розширення.\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 ""
+"Перевірте, що інші користувачі не працюють з %PRODUCTNAME, при зміні розширень у спільному для усіх користувачів каталозі.\n"
+"Натисніть «Гаразд» для встановлення розширення.\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 ""
+"Перевірте, що інші користувачі не працюють з %PRODUCTNAME, при зміні розширень у спільному для усіх користувачів каталозі.\n"
+"Натисніть «Гаразд» для встановлення розширення.\n"
+"Натисніть «Скасувати» для припинення встановлення."
+
+#: dp_gui_dialog.src#RID_STR_UNSUPPORTED_PLATFORM.string.text
+msgid "The extension \\'%Name\\' does not work on this computer."
+msgstr "Розширення «%Name» не працюватиме на цьому комп'ютері."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_CHECKING.fixedtext.text
+msgid "Checking..."
+msgstr "Перевірка..."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_UPDATE.fixedtext.text
+msgid "~Available extension updates"
+msgstr "~Доступні оновлення розширень"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_ALL.checkbox.text
+msgid "~Show all updates"
+msgstr "~Показати всі оновлення"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_DESCRIPTION.fixedline.text
+msgid "Description"
+msgstr "Опис"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_PUBLISHER_LABEL.fixedtext.text
+msgid "Publisher:"
+msgstr "Видавець:"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_RELEASENOTES_LABEL.fixedtext.text
+msgid "What is new:"
+msgstr "Що нового:"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_RELEASENOTES_LINK.fixedtext.text
+msgid "Release Notes"
+msgstr "Примітки до випуску"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_OK.pushbutton.text
+msgid "~Install"
+msgstr "~Встановити"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_CLOSE.pushbutton.text
+#, fuzzy
+msgctxt "dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_CLOSE.pushbutton.text"
+msgid "Close"
+msgstr "Закрити"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_ERROR.string.text
+msgid "Error"
+msgstr "Помилка"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_NONE.string.text
+msgid "No new updates are available."
+msgstr "Оновлень немає."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_NOINSTALLABLE.string.text
+#, fuzzy
+msgid "No installable updates are available. To see ignored or disabled updates, mark the check box 'Show all updates'."
+msgstr "Немає доступних для встановлення оновлень. Для перегляду всіх оновлень встановіть прапорець \"Показати всі оновлення\"."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_FAILURE.string.text
+msgid "An error occurred:"
+msgstr "Виникла помилка:"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_UNKNOWNERROR.string.text
+msgid "Unknown error."
+msgstr "Невідома помилка."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_NODESCRIPTION.string.text
+#, fuzzy
+msgid "No more details are available for this update."
+msgstr "Немає опису даного розширення."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_NOINSTALL.string.text
+msgid "The extension cannot be updated because:"
+msgstr "Причина, через яку неможливо встановити розширення:"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_NODEPENDENCY.string.text
+msgid "Required %PRODUCTNAME version doesn't match:"
+msgstr ""
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_NODEPENDENCY_CUR_VER.string.text
+#, fuzzy
+msgid "You have %PRODUCTNAME %VERSION"
+msgstr "%PRODUCTNAME %PRODUCTVERSION"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_BROWSERBASED.string.text
+msgid "browser based update"
+msgstr "оновлення за допомогою веб-навігатора"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_VERSION.string.text
+msgid "Version"
+msgstr "Версія"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_IGNORE.string.text
+#, fuzzy
+msgid "Ignore this Update"
+msgstr "Все готово для оновлення"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_IGNORE_ALL.string.text
+#, fuzzy
+msgid "Ignore all Updates"
+msgstr "~Показати всі оновлення"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_ENABLE.string.text
+#, fuzzy
+msgid "Enable Updates"
+msgstr "Перевірка оновлень"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_IGNORED_UPDATE.string.text
+#, fuzzy
+msgid "This update will be ignored.\n"
+msgstr "Компонент буде повністю видалено."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.modaldialog.text
+msgid "Extension Update"
+msgstr "Оновлення розширень"
+
+#: 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 ""
+"Перевірте, що інші користувачі не працюють з %PRODUCTNAME, при зміні розширень у спільному для усіх користувачів каталозі.\n"
+"Натисніть «Гаразд» для встановлення розширення.\n"
+"Натисніть «Скасувати» для припинення встановлення."
+
+#: 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 ""
+"Ви намагаєтесь встановити версію $NEW розширення \"$NAME\". Більш нова версія $DEPLOYED вже встановлена.\n"
+"Натисніть «Гаразд» для заміни встановленого розширення.\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 ""
+"Ви намагаєтесь встановити версію $NEW розширення \"$NAME\". Більш нова версія $DEPLOYED вже встановлена.\n"
+"Натисніть «Гаразд» для заміни встановленого розширення.\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 ""
+"Ви намагаєтесь встановити версію $NEW розширення \"$NAME\". Ця версія вже встановлена.\n"
+"Натисніть «Гаразд» для заміни встановленого розширення.\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 ""
+"Ви намагаєтесь встановити версію $NEW розширення \"$NAME\". Ця версія вже встановлена.\n"
+"Натисніть «Гаразд» для заміни встановленого розширення.\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 ""
+"Ви намагаєтесь встановити версію $NEW розширення \"$NAME\". Більш стара версія $DEPLOYED уже установлена.\n"
+"Натисніть «Гаразд» для заміни встановленого розширення.\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 ""
+"Ви намагаєтесь встановити версію $NEW розширення \"$NAME\". Більш стара версія $DEPLOYED вже встановлена.\n"
+"Натисніть «Гаразд» для заміни встановленого розширення.\n"
+"Натисніть «Скасувати» для виходу з встановлення."
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_FT_TYPE_EXTENSIONS.fixedtext.text
+msgid "Type of Extension"
+msgstr ""
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_CBX_BUNDLED.checkbox.text
+msgid "~Installation"
+msgstr ""
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_CBX_SHARED.checkbox.text
+msgid "~Shared"
+msgstr ""
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_CBX_USER.checkbox.text
+msgid "~User"
+msgstr "~Користувач"
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_BTN_ADD.pushbutton.text
+msgid "~Add..."
+msgstr "~Додати..."
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_BTN_CHECK_UPDATES.pushbutton.text
+#, fuzzy
+msgid "~Check for Updates..."
+msgstr "Перевірка наявності ~оновлень..."
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_FT_GET_EXTENSIONS.fixedtext.text
+msgid "Get more extensions online..."
+msgstr "Завантажити розширення..."
+
+#: 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 "Додавання %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 "Закрити"
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.modelessdialog.text
+msgid "Extension Manager"
+msgstr "Керування розширеннями"
+
+#: 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 ""
+
+#: 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 "Додавання %EXTENSION_NAME"
+
+#: dp_gui_dialog2.src#RID_DLG_UPDATE_REQUIRED.RID_EM_BTN_CHECK_UPDATES.pushbutton.text
+#, fuzzy
+msgid "Check for ~Updates..."
+msgstr "Перевірка наявності ~оновлень..."
+
+#: dp_gui_dialog2.src#RID_DLG_UPDATE_REQUIRED.RID_EM_BTN_CLOSE.pushbutton.text
+msgid "Disable all"
+msgstr ""
+
+#: dp_gui_dialog2.src#RID_DLG_UPDATE_REQUIRED.modaldialog.text
+msgid "Extension Update Required"
+msgstr ""
+
+#: 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 ""
+"При встановленні розширень для всіх користувачів у багатокористувацькому середовищі перевірте, що більше ніхто не працює з %PRODUCTNAME.\n"
+"\n"
+"Виберіть тип встановлення.\n"
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_DOWNLOADING.fixedtext.text
+msgid "Downloading extensions..."
+msgstr "Завантаження розширень..."
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_RESULTS.fixedtext.text
+msgid "Result"
+msgstr "Результат"
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_OK.okbutton.text
+msgid "OK"
+msgstr "Гаразд"
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_ABORT.cancelbutton.text
+msgid "Cancel Update"
+msgstr "Скасувати оновлення"
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_INSTALLING.string.text
+msgid "Installing extensions..."
+msgstr "Встановлення розширень..."
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_FINISHED.string.text
+msgid "Installation finished"
+msgstr "Встановлення завершено"
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_NO_ERRORS.string.text
+msgid "No errors."
+msgstr "Без помилок."
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_ERROR_DOWNLOAD.string.text
+msgid "Error while downloading extension %NAME. "
+msgstr "Помилка при завантаженні розширення %NAME. "
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_THIS_ERROR_OCCURRED.string.text
+msgid "The error message is: "
+msgstr "Повідомлення про помилку: "
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_ERROR_INSTALLATION.string.text
+msgid "Error while installing extension %NAME. "
+msgstr "Помилка при встановленні розширення %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 "Ліцензійну угоду для розширення %NAME не було прийнято. "
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_EXTENSION_NOINSTALL.string.text
+msgid "The extension will not be installed."
+msgstr "Розширення не буде встановлено."
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.modaldialog.text
+msgid "Download and Installation"
+msgstr "Завантаження та встановлення"
+
+#: 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 ""
+"Розширення неможливо встановити через\n"
+"незадоволені системні залежності:"
+
+#: dp_gui_dependencydialog.src#RID_DLG_DEPENDENCIES.modaldialog.text
+msgid "System dependencies check"
+msgstr "Перевірка системних залежностей"
diff --git a/source/uk/desktop/source/deployment/manager.po b/source/uk/desktop/source/deployment/manager.po
new file mode 100644
index 00000000000..8eccf654b97
--- /dev/null
+++ b/source/uk/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-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "Копіювання:"
+
+#: dp_manager.src#RID_STR_ERROR_WHILE_ADDING.string.text
+msgid "Error while adding: "
+msgstr "Помилка при встановленні:"
+
+#: dp_manager.src#RID_STR_ERROR_WHILE_REMOVING.string.text
+msgid "Error while removing: "
+msgstr "Помилка при видаленні:"
+
+#: dp_manager.src#RID_STR_PACKAGE_ALREADY_ADDED.string.text
+msgid "Extension has already been added: "
+msgstr "Розширення вже встановлено:"
+
+#: dp_manager.src#RID_STR_NO_SUCH_PACKAGE.string.text
+msgid "There is no such extension deployed: "
+msgstr "Розширення не встановлено: "
+
+#: dp_manager.src#RID_STR_SYNCHRONIZING_REPOSITORY.string.text
+msgid "Synchronizing repository for %NAME extensions"
+msgstr ""
diff --git a/source/uk/desktop/source/deployment/misc.po b/source/uk/desktop/source/deployment/misc.po
new file mode 100644
index 00000000000..732463dd353
--- /dev/null
+++ b/source/uk/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: 2011-11-26 05:17+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "Невідомо"
+
+#: dp_misc.src#RID_DEPLOYMENT_DEPENDENCIES_OOO_MIN.string.text
+msgid "Extension requires at least OpenOffice.org reference version %VERSION"
+msgstr ""
+
+#: dp_misc.src#RID_DEPLOYMENT_DEPENDENCIES_OOO_MAX.string.text
+msgid "Extension does not support OpenOffice.org reference versions greater than %VERSION"
+msgstr ""
+
+#: dp_misc.src#RID_DEPLOYMENT_DEPENDENCIES_LO_MIN.string.text
+msgid "Extension requires at least LibreOffice version %VERSION"
+msgstr ""
diff --git a/source/uk/desktop/source/deployment/registry.po b/source/uk/desktop/source/deployment/registry.po
new file mode 100644
index 00000000000..49d5bbee2dd
--- /dev/null
+++ b/source/uk/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-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "Вмикання: "
+
+#: dp_registry.src#RID_STR_REVOKING_PACKAGE.string.text
+msgid "Disabling: "
+msgstr "Вимикання: "
+
+#: dp_registry.src#RID_STR_CANNOT_DETECT_MEDIA_TYPE.string.text
+msgid "Cannot detect media-type: "
+msgstr "Не можна визначити тип носія інформації:"
+
+#: dp_registry.src#RID_STR_UNSUPPORTED_MEDIA_TYPE.string.text
+msgid "This media-type is not supported: "
+msgstr "Цей тип носія не підтримується: "
+
+#: dp_registry.src#RID_STR_ERROR_WHILE_REGISTERING.string.text
+msgid "An error occurred while enabling: "
+msgstr "Помилка при вмиканні: "
+
+#: dp_registry.src#RID_STR_ERROR_WHILE_REVOKING.string.text
+msgid "An error occurred while disabling: "
+msgstr "Помилка при вимиканні: "
diff --git a/source/uk/desktop/source/deployment/registry/component.po b/source/uk/desktop/source/deployment/registry/component.po
new file mode 100644
index 00000000000..111a5b7c27e
--- /dev/null
+++ b/source/uk/desktop/source/deployment/registry/component.po
@@ -0,0 +1,41 @@
+#. 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-11 23:35+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 компонент динамічної бібліотеки"
+
+#: dp_component.src#RID_STR_JAVA_COMPONENT.string.text
+msgid "UNO Java Component"
+msgstr "UNO Java Компонент"
+
+#: dp_component.src#RID_STR_PYTHON_COMPONENT.string.text
+msgid "UNO Python Component"
+msgstr "UNO Python Компонент"
+
+#: dp_component.src#RID_STR_COMPONENTS.string.text
+#, fuzzy
+msgid "UNO Components"
+msgstr "UNO Java Компонент"
+
+#: dp_component.src#RID_STR_RDB_TYPELIB.string.text
+msgid "UNO RDB Type Library"
+msgstr "UNO RDB Бібліотека типів"
+
+#: dp_component.src#RID_STR_JAVA_TYPELIB.string.text
+msgid "UNO Java Type Library"
+msgstr "UNO Java Бібліотека типів"
diff --git a/source/uk/desktop/source/deployment/registry/configuration.po b/source/uk/desktop/source/deployment/registry/configuration.po
new file mode 100644
index 00000000000..00aa1437e4b
--- /dev/null
+++ b/source/uk/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-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "Схема конфігурації"
+
+#: dp_configuration.src#RID_STR_CONF_DATA.string.text
+msgid "Configuration Data"
+msgstr "Дані конфігурації"
diff --git a/source/uk/desktop/source/deployment/registry/help.po b/source/uk/desktop/source/deployment/registry/help.po
new file mode 100644
index 00000000000..6ae6a15dbdd
--- /dev/null
+++ b/source/uk/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: 2011-04-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dp_help.src#RID_STR_HELP.string.text
+msgid "Help"
+msgstr "Довідка"
+
+#: dp_help.src#RID_STR_HELPPROCESSING_GENERAL_ERROR.string.text
+msgid "The extension cannot be installed because:\n"
+msgstr "Розширення не можна встановити, оскільки:\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 "Розширення не буде встановлено через помилки у файлах довідки:\n"
diff --git a/source/uk/desktop/source/deployment/registry/package.po b/source/uk/desktop/source/deployment/registry/package.po
new file mode 100644
index 00000000000..99aa9fc7bde
--- /dev/null
+++ b/source/uk/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-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "Розширення"
diff --git a/source/uk/desktop/source/deployment/registry/script.po b/source/uk/desktop/source/deployment/registry/script.po
new file mode 100644
index 00000000000..f0be7e735c9
--- /dev/null
+++ b/source/uk/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-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "Бібліотека %PRODUCTNAME Basic"
+
+#: dp_script.src#RID_STR_DIALOG_LIB.string.text
+msgid "Dialog Library"
+msgstr "Бібліотека діалогів"
+
+#: dp_script.src#RID_STR_CANNOT_DETERMINE_LIBNAME.string.text
+msgid "The library name could not be determined."
+msgstr "Не визначено назву бібліотеки."
+
+#: dp_script.src#RID_STR_LIBNAME_ALREADY_EXISTS.string.text
+msgid "This library name already exists. Please choose a different name."
+msgstr "Така бібліотека вже існує. Виберіть іншу назву."
diff --git a/source/uk/desktop/source/deployment/registry/sfwk.po b/source/uk/desktop/source/deployment/registry/sfwk.po
new file mode 100644
index 00000000000..3c1f1a90d04
--- /dev/null
+++ b/source/uk/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-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "Бібліотека %MACROLANG"
diff --git a/source/uk/desktop/source/deployment/unopkg.po b/source/uk/desktop/source/deployment/unopkg.po
new file mode 100644
index 00000000000..1ab00daca9a
--- /dev/null
+++ b/source/uk/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: 2011-04-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: unopkg.src#RID_STR_UNOPKG_ACCEPT_LIC_1.string.text
+msgid "Extension Software License Agreement of $NAME:"
+msgstr ""
+
+#: 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 "Прочитайте ліцензійну угоду вище. Введіть \"yes\", щоб прийняти умови ліцензійної угоди та натисніть Return. Ведіть \"no\" для відхилення та виходу з встановлення розширення."
+
+#: unopkg.src#RID_STR_UNOPKG_ACCEPT_LIC_3.string.text
+msgid "[Enter \"yes\" or \"no\"]:"
+msgstr "[Введіть \"yes\" чи \"no\"]:"
+
+#: unopkg.src#RID_STR_UNOPKG_ACCEPT_LIC_4.string.text
+msgid "Your input was not correct. Please enter \"yes\" or \"no\":"
+msgstr "Ввід некоректний. Введіть \"yes\" чи \"no\":"
+
+#: unopkg.src#RID_STR_UNOPKG_ACCEPT_LIC_YES.string.text
+msgid "YES"
+msgstr "YES"
+
+#: unopkg.src#RID_STR_UNOPKG_ACCEPT_LIC_Y.string.text
+msgid "Y"
+msgstr "Y"
+
+#: 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 ""
+
+#: unopkg.src#RID_STR_UNOPKG_ERROR.string.text
+msgid "ERROR: "
+msgstr ""
diff --git a/source/uk/dictionaries/af_ZA.po b/source/uk/dictionaries/af_ZA.po
new file mode 100644
index 00000000000..30ccb0b8971
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:46+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/an_ES.po b/source/uk/dictionaries/an_ES.po
new file mode 100644
index 00000000000..1d646922c10
--- /dev/null
+++ b/source/uk/dictionaries/an_ES.po
@@ -0,0 +1,19 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Aragonese spelling dictionary"
+msgstr ""
diff --git a/source/uk/dictionaries/ar.po b/source/uk/dictionaries/ar.po
new file mode 100644
index 00000000000..e96c7c2d126
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/be_BY.po b/source/uk/dictionaries/be_BY.po
new file mode 100644
index 00000000000..9e5b632cde2
--- /dev/null
+++ b/source/uk/dictionaries/be_BY.po
@@ -0,0 +1,19 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Belarusian spelling dictionary"
+msgstr ""
diff --git a/source/uk/dictionaries/bg_BG.po b/source/uk/dictionaries/bg_BG.po
new file mode 100644
index 00000000000..3813d0027a1
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:46+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/bn_BD.po b/source/uk/dictionaries/bn_BD.po
new file mode 100644
index 00000000000..21f3eab4e72
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Bengali spelling dictionary"
+msgstr ""
diff --git a/source/uk/dictionaries/br_FR.po b/source/uk/dictionaries/br_FR.po
new file mode 100644
index 00000000000..4ba697867bb
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Breton spelling dictionary"
+msgstr ""
diff --git a/source/uk/dictionaries/ca.po b/source/uk/dictionaries/ca.po
new file mode 100644
index 00000000000..309660a01ba
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:46+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/cs_CZ.po b/source/uk/dictionaries/cs_CZ.po
new file mode 100644
index 00000000000..928c41934bf
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/da_DK.po b/source/uk/dictionaries/da_DK.po
new file mode 100644
index 00000000000..a0c08962782
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/de.po b/source/uk/dictionaries/de.po
new file mode 100644
index 00000000000..110a9187021
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/el_GR.po b/source/uk/dictionaries/el_GR.po
new file mode 100644
index 00000000000..155472da1a3
--- /dev/null
+++ b/source/uk/dictionaries/el_GR.po
@@ -0,0 +1,19 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\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 ""
diff --git a/source/uk/dictionaries/en.po b/source/uk/dictionaries/en.po
new file mode 100644
index 00000000000..a7fdf5e2cc3
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:44+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/en/dialog.po b/source/uk/dictionaries/en/dialog.po
new file mode 100644
index 00000000000..791a9dff15d
--- /dev/null
+++ b/source/uk/dictionaries/en/dialog.po
@@ -0,0 +1,171 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: en_en_US.properties#spelling.property.text
+msgid "Grammar checking"
+msgstr ""
+
+#: en_en_US.properties#hlp_grammar.property.text
+msgid "Check more grammar errors."
+msgstr ""
+
+#: en_en_US.properties#grammar.property.text
+msgid "Possible mistakes"
+msgstr ""
+
+#: en_en_US.properties#hlp_cap.property.text
+msgid "Check missing capitalization of sentences."
+msgstr ""
+
+#: en_en_US.properties#cap.property.text
+msgid "Capitalization"
+msgstr ""
+
+#: en_en_US.properties#hlp_dup.property.text
+msgid "Check repeated words."
+msgstr ""
+
+#: en_en_US.properties#dup.property.text
+msgid "Word duplication"
+msgstr ""
+
+#: en_en_US.properties#hlp_pair.property.text
+msgid "Check missing or extra parentheses and quotation marks."
+msgstr ""
+
+#: en_en_US.properties#pair.property.text
+msgid "Parentheses"
+msgstr ""
+
+#: en_en_US.properties#punctuation.property.text
+msgid "Punctuation"
+msgstr ""
+
+#: en_en_US.properties#hlp_spaces.property.text
+msgid "Check single spaces between words."
+msgstr ""
+
+#: en_en_US.properties#spaces.property.text
+msgid "Word spacing"
+msgstr ""
+
+#: en_en_US.properties#hlp_mdash.property.text
+msgid "Force unspaced em dash instead of spaced en dash."
+msgstr ""
+
+#: en_en_US.properties#mdash.property.text
+msgid "Em dash"
+msgstr ""
+
+#: en_en_US.properties#hlp_ndash.property.text
+msgid "Force spaced en dash instead of unspaced em dash."
+msgstr ""
+
+#: en_en_US.properties#ndash.property.text
+msgid "En dash"
+msgstr ""
+
+#: en_en_US.properties#hlp_quotation.property.text
+msgid "Check double quotation marks: \"x\" → “x”"
+msgstr ""
+
+#: en_en_US.properties#quotation.property.text
+msgid "Quotation marks"
+msgstr ""
+
+#: en_en_US.properties#hlp_times.property.text
+msgid "Check true multiplication sign: 5x5 → 5×5"
+msgstr ""
+
+#: en_en_US.properties#times.property.text
+msgid "Multiplication sign"
+msgstr ""
+
+#: en_en_US.properties#hlp_spaces2.property.text
+msgid "Check single spaces between sentences."
+msgstr ""
+
+#: en_en_US.properties#spaces2.property.text
+msgid "Sentence spacing"
+msgstr ""
+
+#: en_en_US.properties#hlp_spaces3.property.text
+msgid "Check more than two extra space characters between words and sentences."
+msgstr ""
+
+#: en_en_US.properties#spaces3.property.text
+msgid "More spaces"
+msgstr ""
+
+#: en_en_US.properties#hlp_minus.property.text
+msgid "Change hyphen characters to real minus signs."
+msgstr ""
+
+#: en_en_US.properties#minus.property.text
+msgid "Minus sign"
+msgstr ""
+
+#: en_en_US.properties#hlp_apostrophe.property.text
+msgid "Change typewriter apostrophe, single quotation marks and correct double primes."
+msgstr ""
+
+#: en_en_US.properties#apostrophe.property.text
+msgid "Apostrophe"
+msgstr ""
+
+#: en_en_US.properties#hlp_ellipsis.property.text
+msgid "Change three dots with ellipsis."
+msgstr ""
+
+#: en_en_US.properties#ellipsis.property.text
+msgid "Ellipsis"
+msgstr ""
+
+#: en_en_US.properties#others.property.text
+msgid "Others"
+msgstr "Інше"
+
+#: en_en_US.properties#hlp_metric.property.text
+msgid "Measurement conversion from °F, mph, ft, in, lb, gal and miles."
+msgstr ""
+
+#: en_en_US.properties#metric.property.text
+msgid "Convert to metric (°C, km/h, m, kg, l)"
+msgstr ""
+
+#: en_en_US.properties#hlp_numsep.property.text
+msgid "Common (1000000 → 1,000,000) or ISO (1000000 → 1 000 000)."
+msgstr ""
+
+#: en_en_US.properties#numsep.property.text
+msgid "Thousand separation of large numbers"
+msgstr ""
+
+#: en_en_US.properties#hlp_nonmetric.property.text
+msgid "Measurement conversion from °C; km/h; cm, m, km; kg; l."
+msgstr ""
+
+#: en_en_US.properties#nonmetric.property.text
+msgid "Convert to non-metric (°F, mph, ft, lb, gal)"
+msgstr ""
+
+#: OptionsDialog.xcu#..OptionsDialog.Nodes.org.openoffice.lightproof.Label.value.text
+msgid "Dictionaries"
+msgstr "Словники"
+
+#: OptionsDialog.xcu#..OptionsDialog.Nodes.org.openoffice.lightproof.Leaves.org.openoffice.lightproof.en.Label.value.text
+msgid "English sentence checking"
+msgstr ""
diff --git a/source/uk/dictionaries/es_ES.po b/source/uk/dictionaries/es_ES.po
new file mode 100644
index 00000000000..6dc6502968e
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Spanish spelling dictionary"
+msgstr ""
diff --git a/source/uk/dictionaries/et_EE.po b/source/uk/dictionaries/et_EE.po
new file mode 100644
index 00000000000..8e2a9f1a127
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/fr_FR.po b/source/uk/dictionaries/fr_FR.po
new file mode 100644
index 00000000000..b455be900a4
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/gd_GB.po b/source/uk/dictionaries/gd_GB.po
new file mode 100644
index 00000000000..b4a6c7e37ae
--- /dev/null
+++ b/source/uk/dictionaries/gd_GB.po
@@ -0,0 +1,19 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\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 ""
diff --git a/source/uk/dictionaries/gl.po b/source/uk/dictionaries/gl.po
new file mode 100644
index 00000000000..796704423b4
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:44+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Galician spelling dictionary"
+msgstr ""
diff --git a/source/uk/dictionaries/gu_IN.po b/source/uk/dictionaries/gu_IN.po
new file mode 100644
index 00000000000..a3465bceaff
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Gujarati spelling dictionary"
+msgstr ""
diff --git a/source/uk/dictionaries/he_IL.po b/source/uk/dictionaries/he_IL.po
new file mode 100644
index 00000000000..e4c682e673e
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Hebrew spelling dictionary"
+msgstr ""
diff --git a/source/uk/dictionaries/hi_IN.po b/source/uk/dictionaries/hi_IN.po
new file mode 100644
index 00000000000..3bbb933a6c0
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Hindi spelling dictionary"
+msgstr ""
diff --git a/source/uk/dictionaries/hr_HR.po b/source/uk/dictionaries/hr_HR.po
new file mode 100644
index 00000000000..4945095e172
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/hu_HU.po b/source/uk/dictionaries/hu_HU.po
new file mode 100644
index 00000000000..61665b0157b
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:44+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/hu_HU/dialog.po b/source/uk/dictionaries/hu_HU/dialog.po
new file mode 100644
index 00000000000..ef169e0a356
--- /dev/null
+++ b/source/uk/dictionaries/hu_HU/dialog.po
@@ -0,0 +1,153 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: hu_HU_en_US.properties#spelling.property.text
+msgid "Spelling"
+msgstr "Перевірка орфографії"
+
+#: hu_HU_en_US.properties#cap.property.text
+msgid "Capitalization"
+msgstr ""
+
+#: hu_HU_en_US.properties#par.property.text
+msgid "Parentheses"
+msgstr ""
+
+#: hu_HU_en_US.properties#wordpart.property.text
+msgid "Word parts of compounds"
+msgstr ""
+
+#: hu_HU_en_US.properties#comma.property.text
+msgid "Comma usage"
+msgstr ""
+
+#: hu_HU_en_US.properties#proofreading.property.text
+msgid "Proofreading"
+msgstr ""
+
+#: hu_HU_en_US.properties#style.property.text
+msgid "Style checking"
+msgstr ""
+
+#: hu_HU_en_US.properties#compound.property.text
+msgid "Underline typo-like compound words"
+msgstr ""
+
+#: hu_HU_en_US.properties#allcompound.property.text
+msgid "Underline all generated compound words"
+msgstr ""
+
+#: hu_HU_en_US.properties#grammar.property.text
+msgid "Possible mistakes"
+msgstr ""
+
+#: hu_HU_en_US.properties#money.property.text
+msgid "Consistency of money amounts"
+msgstr ""
+
+#: hu_HU_en_US.properties#duplication.property.text
+msgctxt "hu_HU_en_US.properties#duplication.property.text"
+msgid "Word duplication"
+msgstr ""
+
+#: hu_HU_en_US.properties#dup0.property.text
+msgctxt "hu_HU_en_US.properties#dup0.property.text"
+msgid "Word duplication"
+msgstr ""
+
+#: hu_HU_en_US.properties#dup.property.text
+msgid "Duplication within clauses"
+msgstr ""
+
+#: hu_HU_en_US.properties#dup2.property.text
+msgid "Duplication within sentences"
+msgstr ""
+
+#: hu_HU_en_US.properties#dup3.property.text
+msgid "Allow previous checkings with affixes"
+msgstr ""
+
+#: hu_HU_en_US.properties#numpart.property.text
+msgid "Thousand separation of numbers"
+msgstr ""
+
+#: hu_HU_en_US.properties#typography.property.text
+msgid "Typography"
+msgstr ""
+
+#: hu_HU_en_US.properties#quot.property.text
+msgid "Quotation marks"
+msgstr ""
+
+#: hu_HU_en_US.properties#apost.property.text
+msgid "Apostrophe"
+msgstr ""
+
+#: hu_HU_en_US.properties#dash.property.text
+msgid "En dash"
+msgstr ""
+
+#: hu_HU_en_US.properties#elli.property.text
+msgid "Ellipsis"
+msgstr ""
+
+#: hu_HU_en_US.properties#ligature.property.text
+msgid "Ligature suggestion"
+msgstr ""
+
+#: hu_HU_en_US.properties#noligature.property.text
+msgid "Underline ligatures"
+msgstr ""
+
+#: hu_HU_en_US.properties#frac.property.text
+msgid "Fractions"
+msgstr "Дробі"
+
+#: hu_HU_en_US.properties#thin.property.text
+msgid "Thin space"
+msgstr ""
+
+#: hu_HU_en_US.properties#spaces.property.text
+msgid "Double spaces"
+msgstr ""
+
+#: hu_HU_en_US.properties#spaces2.property.text
+msgid "More spaces"
+msgstr ""
+
+#: hu_HU_en_US.properties#idx.property.text
+msgid "Indices"
+msgstr ""
+
+#: hu_HU_en_US.properties#minus.property.text
+msgid "Minus"
+msgstr ""
+
+#: hu_HU_en_US.properties#SI.property.text
+msgid "Measurements"
+msgstr ""
+
+#: hu_HU_en_US.properties#hyphen.property.text
+msgid "Hyphenation of ambiguous words"
+msgstr ""
+
+#: OptionsDialog.xcu#..OptionsDialog.Nodes.org.openoffice.lightproof.Label.value.text
+msgid "Dictionaries"
+msgstr "Словники"
+
+#: OptionsDialog.xcu#..OptionsDialog.Nodes.org.openoffice.lightproof.Leaves.org.openoffice.lightproof.hu_HU.Label.value.text
+msgid "Hungarian sentence checking"
+msgstr ""
diff --git a/source/uk/dictionaries/it_IT.po b/source/uk/dictionaries/it_IT.po
new file mode 100644
index 00000000000..54242a44c4e
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/ku_TR.po b/source/uk/dictionaries/ku_TR.po
new file mode 100644
index 00000000000..ede1cf5563a
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/lt_LT.po b/source/uk/dictionaries/lt_LT.po
new file mode 100644
index 00000000000..dcbe69d7556
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/lv_LV.po b/source/uk/dictionaries/lv_LV.po
new file mode 100644
index 00000000000..80fbe4069e1
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:46+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/ne_NP.po b/source/uk/dictionaries/ne_NP.po
new file mode 100644
index 00000000000..62993debd93
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:46+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/nl_NL.po b/source/uk/dictionaries/nl_NL.po
new file mode 100644
index 00000000000..d25f6f1af45
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/no.po b/source/uk/dictionaries/no.po
new file mode 100644
index 00000000000..828a895e387
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:46+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/oc_FR.po b/source/uk/dictionaries/oc_FR.po
new file mode 100644
index 00000000000..84941b5ae3e
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Occitan spelling dictionary"
+msgstr ""
diff --git a/source/uk/dictionaries/pl_PL.po b/source/uk/dictionaries/pl_PL.po
new file mode 100644
index 00000000000..dd2d52ec00b
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:46+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/pt_BR.po b/source/uk/dictionaries/pt_BR.po
new file mode 100644
index 00000000000..468250c606b
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/pt_PT.po b/source/uk/dictionaries/pt_PT.po
new file mode 100644
index 00000000000..da37f0e20a7
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/ro.po b/source/uk/dictionaries/ro.po
new file mode 100644
index 00000000000..b6d55011d2f
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/ru_RU.po b/source/uk/dictionaries/ru_RU.po
new file mode 100644
index 00000000000..f2fa691c576
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/ru_RU/dialog.po b/source/uk/dictionaries/ru_RU/dialog.po
new file mode 100644
index 00000000000..537e471e67a
--- /dev/null
+++ b/source/uk/dictionaries/ru_RU/dialog.po
@@ -0,0 +1,83 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: ru_RU_en_US.properties#abbreviation.property.text
+msgid "Abbreviation"
+msgstr ""
+
+#: ru_RU_en_US.properties#grammar.property.text
+msgid "Grammar"
+msgstr "Граматика"
+
+#: ru_RU_en_US.properties#hyphen.property.text
+msgid "Compound words with hyphen"
+msgstr ""
+
+#: ru_RU_en_US.properties#comma.property.text
+msgid "Comma usage"
+msgstr ""
+
+#: ru_RU_en_US.properties#common.property.text
+msgid "General error"
+msgstr ""
+
+#: ru_RU_en_US.properties#multiword.property.text
+msgid "Multiword expressions"
+msgstr ""
+
+#: ru_RU_en_US.properties#together.property.text
+msgid "Together/separately"
+msgstr ""
+
+#: ru_RU_en_US.properties#proofreading.property.text
+msgid "Proofreading"
+msgstr ""
+
+#: ru_RU_en_US.properties#space.property.text
+msgid "Space mistake"
+msgstr ""
+
+#: ru_RU_en_US.properties#typographica.property.text
+msgid "Typographica"
+msgstr ""
+
+#: ru_RU_en_US.properties#dup.property.text
+msgid "Word duplication within clauses"
+msgstr ""
+
+#: ru_RU_en_US.properties#dup2.property.text
+msgid "Word duplication within sentences"
+msgstr ""
+
+#: ru_RU_en_US.properties#others.property.text
+msgid "Others"
+msgstr "Інше"
+
+#: ru_RU_en_US.properties#numsep.property.text
+msgid "Separation of large numbers (ISO)"
+msgstr ""
+
+#: ru_RU_en_US.properties#quotation.property.text
+msgid "Quotation"
+msgstr "Цитата"
+
+#: OptionsDialog.xcu#..OptionsDialog.Nodes.org.openoffice.lightproof.Label.value.text
+msgid "Dictionaries"
+msgstr "Словники"
+
+#: OptionsDialog.xcu#..OptionsDialog.Nodes.org.openoffice.lightproof.Leaves.org.openoffice.lightproof.ru_RU.Label.value.text
+msgid "Grammar checking (Russian)"
+msgstr ""
diff --git a/source/uk/dictionaries/si_LK.po b/source/uk/dictionaries/si_LK.po
new file mode 100644
index 00000000000..ed74b3e1f26
--- /dev/null
+++ b/source/uk/dictionaries/si_LK.po
@@ -0,0 +1,19 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Sinhala spelling dictionary"
+msgstr ""
diff --git a/source/uk/dictionaries/sk_SK.po b/source/uk/dictionaries/sk_SK.po
new file mode 100644
index 00000000000..625fdfbb11c
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/sl_SI.po b/source/uk/dictionaries/sl_SI.po
new file mode 100644
index 00000000000..64210d87bee
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/sr.po b/source/uk/dictionaries/sr.po
new file mode 100644
index 00000000000..f8c55771483
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/sv_SE.po b/source/uk/dictionaries/sv_SE.po
new file mode 100644
index 00000000000..2423d273c20
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:46+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/sw_TZ.po b/source/uk/dictionaries/sw_TZ.po
new file mode 100644
index 00000000000..b653725a2a2
--- /dev/null
+++ b/source/uk/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: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Swahili spelling dictionary"
+msgstr ""
diff --git a/source/uk/dictionaries/te_IN.po b/source/uk/dictionaries/te_IN.po
new file mode 100644
index 00000000000..e00bf5c1a3f
--- /dev/null
+++ b/source/uk/dictionaries/te_IN.po
@@ -0,0 +1,19 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\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 ""
diff --git a/source/uk/dictionaries/th_TH.po b/source/uk/dictionaries/th_TH.po
new file mode 100644
index 00000000000..5fb9b571ad5
--- /dev/null
+++ b/source/uk/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: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Thai spelling dictionary"
+msgstr ""
diff --git a/source/uk/dictionaries/uk_UA.po b/source/uk/dictionaries/uk_UA.po
new file mode 100644
index 00000000000..33263224316
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/dictionaries/vi.po b/source/uk/dictionaries/vi.po
new file mode 100644
index 00000000000..376e4b9203b
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:44+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Vietnamese spelling dictionary"
+msgstr ""
diff --git a/source/uk/dictionaries/zu_ZA.po b/source/uk/dictionaries/zu_ZA.po
new file mode 100644
index 00000000000..59964296069
--- /dev/null
+++ b/source/uk/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: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Zulu hyphenation rules"
+msgstr ""
diff --git a/source/uk/editeng/source/accessibility.po b/source/uk/editeng/source/accessibility.po
new file mode 100644
index 00000000000..178dc77a160
--- /dev/null
+++ b/source/uk/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-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
+
+#: accessibility.src#RID_SVXSTR_A11Y_IMAGEBULLET_NAME.string.text
+msgid "Image bullet"
+msgstr ""
diff --git a/source/uk/editeng/source/editeng.po b/source/uk/editeng/source/editeng.po
new file mode 100644
index 00000000000..705903d8ca2
--- /dev/null
+++ b/source/uk/editeng/source/editeng.po
@@ -0,0 +1,187 @@
+#. 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-05-15 15:21+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: editeng.src#RID_EDITUNDO_DEL.string.text
+#, fuzzy
+msgid "Delete"
+msgstr ""
+"#-#-#-#-# report.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Видалити\n"
+"#-#-#-#-# utlui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Видалити\n"
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Видалити\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Видалити\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вилучити\n"
+"#-#-#-#-# navipi.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Видалити\n"
+"#-#-#-#-# appl.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Видалити\n"
+"#-#-#-#-# customize.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Видалити\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"В~идалити\n"
+"#-#-#-#-# dlged.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Видалити"
+
+#: editeng.src#RID_EDITUNDO_MOVE.string.text
+msgid "Move"
+msgstr "Перемістити"
+
+#: editeng.src#RID_EDITUNDO_INSERT.string.text
+#, fuzzy
+msgid "Insert"
+msgstr ""
+"#-#-#-#-# ribbar.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставити\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставити\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставити\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставка файлу\n"
+"#-#-#-#-# appl.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставити\n"
+"#-#-#-#-# tabpages.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Додавати ~розрив\n"
+"#-#-#-#-# formwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставити\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставити\n"
+"#-#-#-#-# basicide.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставити"
+
+#: editeng.src#RID_EDITUNDO_REPLACE.string.text
+#, fuzzy
+msgid "Replace"
+msgstr ""
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Замінити\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Замінити\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Замінити\n"
+"#-#-#-#-# tabpages.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Замінити\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Замінити\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Замінити\n"
+"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Замінити"
+
+#: editeng.src#RID_EDITUNDO_SETATTRIBS.string.text
+msgid "Apply attributes"
+msgstr "Застосувати атрибути"
+
+#: editeng.src#RID_EDITUNDO_RESETATTRIBS.string.text
+msgid "Reset attributes"
+msgstr "Відновити атрибути"
+
+#: editeng.src#RID_EDITUNDO_INDENT.string.text
+msgid "Indent"
+msgstr "Відступ"
+
+#: editeng.src#RID_EDITUNDO_SETSTYLE.string.text
+msgid "Apply Styles"
+msgstr "Застосувати стилі"
+
+#: editeng.src#RID_EDITUNDO_TRANSLITERATE.string.text
+msgid "~Change Case"
+msgstr "~Регістр"
+
+#: editeng.src#RID_MENU_SPELL.MN_SPELLING.menuitem.text
+msgid "~Spellcheck..."
+msgstr "Перевірка ~орфографії..."
+
+#: editeng.src#RID_MENU_SPELL.MN_INSERT.menuitem.text
+#, fuzzy
+msgctxt "editeng.src#RID_MENU_SPELL.MN_INSERT.menuitem.text"
+msgid "~Add"
+msgstr ""
+"#-#-#-#-# lingu.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додати\n"
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додати\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додати\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додати\n"
+"#-#-#-#-# dbgui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додати\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додати область друку\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додати\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додати\n"
+"#-#-#-#-# options.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додати\n"
+"#-#-#-#-# tabpages.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додати\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додати\n"
+"#-#-#-#-# textconversiondlgs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додати"
+
+#: editeng.src#RID_MENU_SPELL.MN_INSERT_SINGLE.menuitem.text
+#, fuzzy
+msgctxt "editeng.src#RID_MENU_SPELL.MN_INSERT_SINGLE.menuitem.text"
+msgid "~Add"
+msgstr ""
+"#-#-#-#-# lingu.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додати\n"
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додати\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додати\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додати\n"
+"#-#-#-#-# dbgui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додати\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додати область друку\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додати\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додати\n"
+"#-#-#-#-# options.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додати\n"
+"#-#-#-#-# tabpages.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додати\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додати\n"
+"#-#-#-#-# textconversiondlgs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додати"
+
+#: editeng.src#RID_MENU_SPELL.MN_IGNORE.menuitem.text
+msgid "Ignore All"
+msgstr "Пропускати всі"
+
+#: editeng.src#RID_MENU_SPELL.MN_AUTOCORR.menuitem.text
+msgid "AutoCorrect"
+msgstr "Автозаміна"
+
+#: editeng.src#RID_STR_WORD.string.text
+msgid "Word is %x"
+msgstr ""
+
+#: editeng.src#RID_STR_PARAGRAPH.string.text
+msgid "Paragraph is %x"
+msgstr ""
diff --git a/source/uk/editeng/source/items.po b/source/uk/editeng/source/items.po
new file mode 100644
index 00000000000..ced2cf5c17b
--- /dev/null
+++ b/source/uk/editeng/source/items.po
@@ -0,0 +1,1204 @@
+#. 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: 2011-04-12 01:20+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: svxitems.src#RID_SVXITEMS_TRUE.string.text
+msgid "True"
+msgstr "True"
+
+#: svxitems.src#RID_SVXITEMS_FALSE.string.text
+msgid "False"
+msgstr "False"
+
+#: svxitems.src#RID_SVXITEMS_BREAK_NONE.string.text
+msgid "No break"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_BREAK_COLUMN_BEFORE.string.text
+msgid "Break before new column"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_BREAK_COLUMN_AFTER.string.text
+msgid "Break after new column"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_BREAK_COLUMN_BOTH.string.text
+msgid "Break before and after new column"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_BREAK_PAGE_BEFORE.string.text
+msgid "Break before new page"
+msgstr "Розрив перед новою сторінкою"
+
+#: svxitems.src#RID_SVXITEMS_BREAK_PAGE_AFTER.string.text
+#, fuzzy
+msgid "Break after new page"
+msgstr "Розрив перед новою сторінкою"
+
+#: svxitems.src#RID_SVXITEMS_BREAK_PAGE_BOTH.string.text
+msgid "Break before and after new page"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_SHADOW_NONE.string.text
+msgid "No Shadow"
+msgstr "Без тіні"
+
+#: svxitems.src#RID_SVXITEMS_SHADOW_TOPLEFT.string.text
+msgid "Shadow top left"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_SHADOW_TOPRIGHT.string.text
+msgid "Shadow top right"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_SHADOW_BOTTOMLEFT.string.text
+msgid "Shadow bottom left"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_SHADOW_BOTTOMRIGHT.string.text
+msgid "Shadow bottom right"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_COLOR.string.text
+msgid "Color "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_COLOR_BLACK.string.text
+msgid "Black"
+msgstr "Чорний"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_BLUE.string.text
+msgid "Blue"
+msgstr "Синій"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_GREEN.string.text
+msgid "Green"
+msgstr "Зелений"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_CYAN.string.text
+msgid "Cyan"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_COLOR_RED.string.text
+msgid "Red"
+msgstr "Червоний"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_MAGENTA.string.text
+msgid "Magenta"
+msgstr "Пурпурний"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_BROWN.string.text
+msgid "Brown"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_COLOR_GRAY.string.text
+msgid "Gray"
+msgstr "Сірий"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_LIGHTGRAY.string.text
+msgid "Light Gray"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_COLOR_LIGHTBLUE.string.text
+msgid "Light Blue"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_COLOR_LIGHTGREEN.string.text
+msgid "Light Green"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_COLOR_LIGHTCYAN.string.text
+msgid "Light Cyan"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_COLOR_LIGHTRED.string.text
+msgid "Light Red"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_COLOR_LIGHTMAGENTA.string.text
+msgid "Light Magenta"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_COLOR_YELLOW.string.text
+msgid "Yellow"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_COLOR_WHITE.string.text
+msgid "White"
+msgstr "Білий"
+
+#: svxitems.src#RID_SVXITEMS_ITALIC_NONE.string.text
+msgid "Not Italic"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_ITALIC_OBLIQUE.string.text
+msgid "Oblique italic"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_ITALIC_NORMAL.string.text
+msgid "Italic"
+msgstr "Курсив"
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_THIN.string.text
+msgid "thin"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_ULTRALIGHT.string.text
+msgid "ultra thin"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_LIGHT.string.text
+#, fuzzy
+msgid "light"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Праворуч\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"праворуч\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Справа\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Праворуч\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Праворуч\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Праворуч\n"
+"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Праворуч\n"
+"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Справа\n"
+"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Праворуч"
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_SEMILIGHT.string.text
+msgid "semi light"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_NORMAL.string.text
+msgid "normal"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_MEDIUM.string.text
+msgid "medium"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_SEMIBOLD.string.text
+msgid "semi bold"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_BOLD.string.text
+msgid "bold"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_ULTRABOLD.string.text
+msgid "ultra bold"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_BLACK.string.text
+#, fuzzy
+msgid "black"
+msgstr "Чорний"
+
+#: svxitems.src#RID_SVXITEMS_UL_NONE.string.text
+msgid "No underline"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_SINGLE.string.text
+msgid "Single underline"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_DOUBLE.string.text
+msgid "Double underline"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_DOTTED.string.text
+msgid "Dotted underline"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_DONTKNOW.string.text
+#, fuzzy
+msgid "Underline"
+msgstr ""
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Підкреслений\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Підкреслений\n"
+"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Підкреслений\n"
+"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Підкреслення\n"
+"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Підкреслення"
+
+#: svxitems.src#RID_SVXITEMS_UL_DASH.string.text
+msgid "Underline (dashes)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_LONGDASH.string.text
+msgid "Underline (long dashes)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_DASHDOT.string.text
+msgid "Underline (dot dash)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_DASHDOTDOT.string.text
+msgid "Underline (dot dot dash)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_SMALLWAVE.string.text
+msgid "Underline (small wave)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_WAVE.string.text
+msgid "Underline (Wave)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_DOUBLEWAVE.string.text
+msgid "Underline (Double wave)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLD.string.text
+msgid "Underlined (Bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLDDOTTED.string.text
+msgid "Dotted underline (Bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLDDASH.string.text
+msgid "Underline (Dash bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLDLONGDASH.string.text
+msgid "Underline (long dash, bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLDDASHDOT.string.text
+msgid "Underline (dot dash, bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLDDASHDOTDOT.string.text
+msgid "Underline (dot dot dash, bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLDWAVE.string.text
+msgid "Underline (wave, bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_NONE.string.text
+msgid "No overline"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_SINGLE.string.text
+msgid "Single overline"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_DOUBLE.string.text
+msgid "Double overline"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_DOTTED.string.text
+msgid "Dotted overline"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_DONTKNOW.string.text
+msgid "Overline"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_DASH.string.text
+msgid "Overline (dashes)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_LONGDASH.string.text
+msgid "Overline (long dashes)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_DASHDOT.string.text
+msgid "Overline (dot dash)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_DASHDOTDOT.string.text
+msgid "Overline (dot dot dash)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_SMALLWAVE.string.text
+msgid "Overline (small wave)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_WAVE.string.text
+msgid "Overline (Wave)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_DOUBLEWAVE.string.text
+msgid "Overline (Double wave)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLD.string.text
+msgid "Overlined (Bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLDDOTTED.string.text
+msgid "Dotted overline (Bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLDDASH.string.text
+msgid "Overline (Dash bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLDLONGDASH.string.text
+msgid "Overline (long dash, bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLDDASHDOT.string.text
+msgid "Overline (dot dash, bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLDDASHDOTDOT.string.text
+msgid "Overline (dot dot dash, bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLDWAVE.string.text
+msgid "Overline (wave, bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_STRIKEOUT_NONE.string.text
+msgid "No strikethrough"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_STRIKEOUT_SINGLE.string.text
+msgid "Single strikethrough"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_STRIKEOUT_DOUBLE.string.text
+msgid "Double strikethrough"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_STRIKEOUT_BOLD.string.text
+msgid "Bold strikethrough"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_STRIKEOUT_SLASH.string.text
+msgid "Strike through with slash"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_STRIKEOUT_X.string.text
+msgid "Strike through with Xes"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_CASEMAP_NONE.string.text
+#, fuzzy
+msgid "None"
+msgstr ""
+"#-#-#-#-# utlui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Немає\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Немає\n"
+"#-#-#-#-# chrdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Немає\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Немає\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Немає\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Очиатити\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Немає\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Нічого\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Немає\n"
+"#-#-#-#-# formwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Нічого\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Немає\n"
+"#-#-#-#-# control.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Нічого\n"
+"#-#-#-#-# accessibility.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Без\n"
+"#-#-#-#-# form.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Нічого\n"
+"#-#-#-#-# stbctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Немає"
+
+#: svxitems.src#RID_SVXITEMS_CASEMAP_VERSALIEN.string.text
+msgid "Caps"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_CASEMAP_GEMEINE.string.text
+#, fuzzy
+msgid "Lowercase"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Нижній регістр\n"
+"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Маленькі літери"
+
+#: svxitems.src#RID_SVXITEMS_CASEMAP_TITEL.string.text
+#, fuzzy
+msgid "Title"
+msgstr ""
+"#-#-#-#-# ribbar.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Заголовок\n"
+"#-#-#-#-# dbui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Звернення\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Звертання\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Заголовок\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Заголовок\n"
+"#-#-#-#-# template.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Звернення\n"
+"#-#-#-#-# res.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Заголовок\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Заголовок\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Звання\n"
+"#-#-#-#-# gallery2.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Заголовок\n"
+"#-#-#-#-# textconversiondlgs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Капіталізація"
+
+#: svxitems.src#RID_SVXITEMS_CASEMAP_KAPITAELCHEN.string.text
+msgid "Small caps"
+msgstr "Капітель"
+
+#: svxitems.src#RID_SVXITEMS_ESCAPEMENT_OFF.string.text
+msgid "Normal position"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_ESCAPEMENT_SUPER.string.text
+msgid "Superscript "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_ESCAPEMENT_SUB.string.text
+msgid "Subscript "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_ESCAPEMENT_AUTO.string.text
+msgid "automatic"
+msgstr "автоматично"
+
+#: svxitems.src#RID_SVXITEMS_ADJUST_LEFT.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_ADJUST_LEFT.string.text"
+msgid "Align left"
+msgstr "Ліворуч"
+
+#: svxitems.src#RID_SVXITEMS_ADJUST_RIGHT.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_ADJUST_RIGHT.string.text"
+msgid "Align right"
+msgstr "Праворуч"
+
+#: svxitems.src#RID_SVXITEMS_ADJUST_BLOCK.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_ADJUST_BLOCK.string.text"
+msgid "Justify"
+msgstr "У ширину"
+
+#: svxitems.src#RID_SVXITEMS_ADJUST_CENTER.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_ADJUST_CENTER.string.text"
+msgid "Centered"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_ADJUST_BLOCKLINE.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_ADJUST_BLOCKLINE.string.text"
+msgid "Justify"
+msgstr "У ширину"
+
+#: svxitems.src#RID_SVXITEMS_TAB_DECIMAL_CHAR.string.text
+msgid "Decimal Symbol:"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_TAB_FILL_CHAR.string.text
+msgid "Fill character:"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_TAB_ADJUST_LEFT.string.text
+#, fuzzy
+msgid "Left"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ліворуч\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"ліворуч\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ліворуч\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ліворуч\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ліворуч\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ліворуч\n"
+"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ліворуч\n"
+"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Зліва\n"
+"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ліворуч"
+
+#: svxitems.src#RID_SVXITEMS_TAB_ADJUST_RIGHT.string.text
+#, fuzzy
+msgid "Right"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Праворуч\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"праворуч\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Справа\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Праворуч\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Праворуч\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Праворуч\n"
+"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Праворуч\n"
+"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Справа\n"
+"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Праворуч"
+
+#: svxitems.src#RID_SVXITEMS_TAB_ADJUST_DECIMAL.string.text
+msgid "Decimal"
+msgstr "Десятковий"
+
+#: svxitems.src#RID_SVXITEMS_TAB_ADJUST_CENTER.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_TAB_ADJUST_CENTER.string.text"
+msgid "Centered"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_TAB_ADJUST_DEFAULT.string.text
+#, fuzzy
+msgid "Default"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Типово\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Типово\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Типово\n"
+"#-#-#-#-# options.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Типово\n"
+"#-#-#-#-# dlged.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Типова\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандарт\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Типово"
+
+#: svxitems.src#RID_SOLID.string.text
+#, fuzzy
+msgid "Single, solid"
+msgstr "У окремому полі"
+
+#: svxitems.src#RID_DOTTED.string.text
+#, fuzzy
+msgid "Single, dotted"
+msgstr "Тонкий пунктир 1"
+
+#: svxitems.src#RID_DASHED.string.text
+#, fuzzy
+msgid "Single, dashed"
+msgstr "Тонкий пунктир"
+
+#: svxitems.src#RID_DOUBLE.string.text
+msgid "Double"
+msgstr "Подвійний"
+
+#: svxitems.src#RID_THINTHICK_SMALLGAP.string.text
+msgid "Double, inside: fine, outside: thick, spacing: small"
+msgstr ""
+
+#: svxitems.src#RID_THINTHICK_MEDIUMGAP.string.text
+msgid "Double, inside: fine, outside: thick, spacing: medium"
+msgstr ""
+
+#: svxitems.src#RID_THINTHICK_LARGEGAP.string.text
+msgid "Double, inside: fine, outside: thick, spacing: large"
+msgstr ""
+
+#: svxitems.src#RID_THICKTHIN_SMALLGAP.string.text
+msgid "Double, inside: thick, outside: fine, spacing: small"
+msgstr ""
+
+#: svxitems.src#RID_THICKTHIN_MEDIUMGAP.string.text
+msgid "Double, inside: thick, outside: fine, spacing: medium"
+msgstr ""
+
+#: svxitems.src#RID_THICKTHIN_LARGEGAP.string.text
+msgid "Double, inside: thick, outside: fine, spacing: large"
+msgstr ""
+
+#: svxitems.src#RID_EMBOSSED.string.text
+#, fuzzy
+msgid "3D embossed"
+msgstr "Піднесений"
+
+#: svxitems.src#RID_ENGRAVED.string.text
+#, fuzzy
+msgid "3D engraved"
+msgstr "Утоплений"
+
+#: svxitems.src#RID_INSET.string.text
+#, fuzzy
+msgid "Inset"
+msgstr ""
+"#-#-#-#-# ribbar.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставити\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставити\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставити\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставка файлу\n"
+"#-#-#-#-# appl.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставити\n"
+"#-#-#-#-# tabpages.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Додавати ~розрив\n"
+"#-#-#-#-# formwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставити\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставити\n"
+"#-#-#-#-# basicide.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставити"
+
+#: svxitems.src#RID_OUTSET.string.text
+#, fuzzy
+msgid "Outset"
+msgstr ""
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Зовні\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ззовні"
+
+#: svxitems.src#RID_SVXITEMS_METRIC_MM.string.text
+msgid "mm"
+msgstr "мм"
+
+#: svxitems.src#RID_SVXITEMS_METRIC_CM.string.text
+msgid "cm"
+msgstr "см"
+
+#: svxitems.src#RID_SVXITEMS_METRIC_INCH.string.text
+msgid "inch"
+msgstr "дюйм"
+
+#: svxitems.src#RID_SVXITEMS_METRIC_POINT.string.text
+msgid "pt"
+msgstr "pt"
+
+#: svxitems.src#RID_SVXITEMS_METRIC_TWIP.string.text
+msgid "twip"
+msgstr "твіп"
+
+#: svxitems.src#RID_SVXITEMS_METRIC_PIXEL.string.text
+msgid "pixel"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_SHADOWED_TRUE.string.text
+msgid "Shadowed"
+msgstr "Затінення"
+
+#: svxitems.src#RID_SVXITEMS_SHADOWED_FALSE.string.text
+#, fuzzy
+msgid "Not Shadowed"
+msgstr "Без тіні"
+
+#: svxitems.src#RID_SVXITEMS_BLINK_TRUE.string.text
+msgid "Blinking"
+msgstr "Блимання"
+
+#: svxitems.src#RID_SVXITEMS_BLINK_FALSE.string.text
+msgid "Not Blinking"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_AUTOKERN_TRUE.string.text
+msgid "Pair Kerning"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_AUTOKERN_FALSE.string.text
+msgid "No pair kerning"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_WORDLINE_TRUE.string.text
+msgid "Individual words"
+msgstr "Лише слова"
+
+#: svxitems.src#RID_SVXITEMS_WORDLINE_FALSE.string.text
+msgid "Not Words Only"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_CONTOUR_TRUE.string.text
+#, fuzzy
+msgid "Outline"
+msgstr ""
+"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Структура\n"
+"#-#-#-#-# fmtui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Структура\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Структура\n"
+"#-#-#-#-# tabpages.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Контур\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Режим структури\n"
+"#-#-#-#-# core.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Структура\n"
+"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Контур\n"
+"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Контур\n"
+"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Контур"
+
+#: svxitems.src#RID_SVXITEMS_CONTOUR_FALSE.string.text
+msgid "No Outline"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PRINT_TRUE.string.text
+#, fuzzy
+msgid "Print"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Точка\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Друк\n"
+"#-#-#-#-# pagedlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Друк\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Друк\n"
+"#-#-#-#-# contnr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Друк"
+
+#: svxitems.src#RID_SVXITEMS_PRINT_FALSE.string.text
+msgid "Don't print"
+msgstr "Не друкувати"
+
+#: svxitems.src#RID_SVXITEMS_OPAQUE_TRUE.string.text
+msgid "Opaque"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OPAQUE_FALSE.string.text
+msgid "Not Opaque"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_FMTKEEP_TRUE.string.text
+msgid "Keep with next paragraph"
+msgstr "Зберігати з наступним абзацом"
+
+#: svxitems.src#RID_SVXITEMS_FMTKEEP_FALSE.string.text
+msgid "Don't Keep Paragraphs Together"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_FMTSPLIT_TRUE.string.text
+msgid "Split paragraph"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_FMTSPLIT_FALSE.string.text
+msgid "Don't split paragraph"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PROT_CONTENT_TRUE.string.text
+msgid "Contents protected"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PROT_CONTENT_FALSE.string.text
+msgid "Contents not protected"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PROT_SIZE_TRUE.string.text
+msgid "Size protected"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PROT_SIZE_FALSE.string.text
+msgid "Size not protected"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PROT_POS_TRUE.string.text
+msgid "Position protected"
+msgstr "Захист позиції"
+
+#: svxitems.src#RID_SVXITEMS_PROT_POS_FALSE.string.text
+#, fuzzy
+msgid "Position not protected"
+msgstr "Захист позиції"
+
+#: svxitems.src#RID_SVXITEMS_TRANSPARENT_TRUE.string.text
+msgid "Transparent"
+msgstr "Прозорий"
+
+#: svxitems.src#RID_SVXITEMS_TRANSPARENT_FALSE.string.text
+msgid "Not Transparent"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_HYPHEN_TRUE.string.text
+msgid "Hyphenation"
+msgstr "Розстановка переносів"
+
+#: svxitems.src#RID_SVXITEMS_HYPHEN_FALSE.string.text
+msgid "No hyphenation"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PAGE_END_TRUE.string.text
+msgid "Page End"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PAGE_END_FALSE.string.text
+msgid "No Page End"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_SIZE_WIDTH.string.text
+msgid "Width: "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_SIZE_HEIGHT.string.text
+msgid "Height: "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_LRSPACE_LEFT.string.text
+msgid "Indent left "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_LRSPACE_FLINE.string.text
+msgid "First Line "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_LRSPACE_RIGHT.string.text
+msgid "Indent right "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_SHADOW_COMPLETE.string.text
+#, fuzzy
+msgid "Shadow: "
+msgstr "Затінення"
+
+#: svxitems.src#RID_SVXITEMS_BORDER_COMPLETE.string.text
+msgid "Borders "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_BORDER_NONE.string.text
+msgid "No border"
+msgstr "Без рамки"
+
+#: svxitems.src#RID_SVXITEMS_BORDER_TOP.string.text
+msgid "top "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_BORDER_BOTTOM.string.text
+msgid "bottom "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_BORDER_LEFT.string.text
+msgid "left "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_BORDER_RIGHT.string.text
+msgid "right "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_BORDER_DISTANCE.string.text
+msgid "Spacing "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_ULSPACE_UPPER.string.text
+msgid "From top "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_ULSPACE_LOWER.string.text
+msgid "From bottom "
+msgstr ""
+
+#. pb: %1 == will be replaced by the number of lines
+#: svxitems.src#RID_SVXITEMS_LINES.string.text
+msgid "%1 Lines"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_WIDOWS_COMPLETE.string.text
+msgid "Widow control"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_ORPHANS_COMPLETE.string.text
+msgid "Orphan control"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_HYPHEN_MINLEAD.string.text
+msgid "Characters at end of line"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_HYPHEN_MINTRAIL.string.text
+msgid "Characters at beginning of line"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_HYPHEN_MAX.string.text
+msgid "Hyphens"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PAGEMODEL_COMPLETE.string.text
+msgid "Page Style: "
+msgstr "Стилю сторінки:"
+
+#: svxitems.src#RID_SVXITEMS_KERNING_COMPLETE.string.text
+msgid "Kerning "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_KERNING_EXPANDED.string.text
+msgid "locked "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_KERNING_CONDENSED.string.text
+msgid "Condensed "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_GRAPHIC.string.text
+msgid "Graphic"
+msgstr "Графічний об'єкт"
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_NONE_STYLE.string.text
+msgid "none"
+msgstr "немає"
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_DOT_STYLE.string.text
+msgid "Dots "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_CIRCLE_STYLE.string.text
+msgid "Circle "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_DISC_STYLE.string.text
+msgid "Filled circle "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_ACCENT_STYLE.string.text
+msgid "Accent "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_ABOVE_POS.string.text
+#, fuzzy
+msgid "Above"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Над\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Згори\n"
+"#-#-#-#-# tabpages.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Згори"
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_BELOW_POS.string.text
+#, fuzzy
+msgid "Below"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Під\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Знизу\n"
+"#-#-#-#-# tabpages.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Знизу\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Знизу"
+
+#: svxitems.src#RID_SVXITEMS_TWOLINES_OFF.string.text
+#, fuzzy
+msgid "Double-lined off"
+msgstr ""
+"#-#-#-#-# tabpages.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Набір у два рядки\n"
+"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Дворядковий"
+
+#: svxitems.src#RID_SVXITEMS_TWOLINES.string.text
+#, fuzzy
+msgid "Double-lined"
+msgstr ""
+"#-#-#-#-# tabpages.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Набір у два рядки\n"
+"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Дворядковий"
+
+#: svxitems.src#RID_SVXITEMS_SCRPTSPC_OFF.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_SCRPTSPC_OFF.string.text"
+msgid "No automatic character spacing"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_SCRPTSPC_ON.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_SCRPTSPC_ON.string.text"
+msgid "No automatic character spacing"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_HNGPNCT_OFF.string.text
+msgid "No hanging punctuation at line end"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_HNGPNCT_ON.string.text
+msgid "Hanging punctuation at line end"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_FORBIDDEN_RULE_OFF.string.text
+msgid "Apply list of forbidden characters to beginning and end of lines"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_FORBIDDEN_RULE_ON.string.text
+msgid "Don't apply list of forbidden characters to beginning and end of lines"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_CHARROTATE_OFF.string.text
+msgid "No rotated characters"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_CHARROTATE.string.text
+msgid "Character rotated by $(ARG1)°"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_CHARROTATE_FITLINE.string.text
+msgid "Fit to line"
+msgstr "~Вмістити у рядку"
+
+#: svxitems.src#RID_SVXITEMS_CHARSCALE.string.text
+msgid "Characters scaled $(ARG1)%"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_CHARSCALE_OFF.string.text
+msgid "No scaled characters"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_RELIEF_NONE.string.text
+msgid "No relief"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_RELIEF_EMBOSSED.string.text
+msgid "Relief"
+msgstr "Рельєф"
+
+#: svxitems.src#RID_SVXITEMS_RELIEF_ENGRAVED.string.text
+msgid "Engraved"
+msgstr "Утоплений"
+
+#: svxitems.src#RID_SVXITEMS_PARAVERTALIGN_AUTO.string.text
+msgid "Automatic text alignment"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PARAVERTALIGN_BASELINE.string.text
+msgid "Text aligned to base line"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PARAVERTALIGN_TOP.string.text
+msgid "Text aligned top"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PARAVERTALIGN_CENTER.string.text
+msgid "Text aligned middle"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PARAVERTALIGN_BOTTOM.string.text
+msgid "Text aligned bottom"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_FRMDIR_HORI_LEFT_TOP.string.text
+msgid "Text direction left-to-right (horizontal)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_FRMDIR_HORI_RIGHT_TOP.string.text
+msgid "Text direction right-to-left (horizontal)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_FRMDIR_VERT_TOP_RIGHT.string.text
+msgid "Text direction right-to-left (vertical)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_FRMDIR_VERT_TOP_LEFT.string.text
+msgid "Text direction left-to-right (vertical)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_FRMDIR_ENVIRONMENT.string.text
+msgid "Use superordinate object text direction setting"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PARASNAPTOGRID_ON.string.text
+msgid "Paragraph snaps to text grid (if active)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PARASNAPTOGRID_OFF.string.text
+msgid "Paragraph does not snap to text grid"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_CHARHIDDEN_FALSE.string.text
+msgid "Not hidden"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_CHARHIDDEN_TRUE.string.text
+msgid "Hidden"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_HORJUST_STANDARD.string.text
+msgid "Horizontal alignment default"
+msgstr "Горизонтальне вирівнювання (типово)"
+
+#: svxitems.src#RID_SVXITEMS_HORJUST_LEFT.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_HORJUST_LEFT.string.text"
+msgid "Align left"
+msgstr "Ліворуч"
+
+#: svxitems.src#RID_SVXITEMS_HORJUST_CENTER.string.text
+msgid "Centered horizontally"
+msgstr "Горизонтально у центрі"
+
+#: svxitems.src#RID_SVXITEMS_HORJUST_RIGHT.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_HORJUST_RIGHT.string.text"
+msgid "Align right"
+msgstr "Праворуч"
+
+#: svxitems.src#RID_SVXITEMS_HORJUST_BLOCK.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_HORJUST_BLOCK.string.text"
+msgid "Justify"
+msgstr "У ширину"
+
+#: svxitems.src#RID_SVXITEMS_HORJUST_REPEAT.string.text
+msgid "Repeat alignment"
+msgstr "Повторити вирівнювання"
+
+#: svxitems.src#RID_SVXITEMS_VERJUST_STANDARD.string.text
+msgid "Vertical alignment default"
+msgstr "Вирівнювання по вертикалі (типово)"
+
+#: svxitems.src#RID_SVXITEMS_VERJUST_TOP.string.text
+msgid "Align to top"
+msgstr "Вирівнювання вгори"
+
+#: svxitems.src#RID_SVXITEMS_VERJUST_CENTER.string.text
+msgid "Centered vertically"
+msgstr "Вертикально у центрі"
+
+#: svxitems.src#RID_SVXITEMS_VERJUST_BOTTOM.string.text
+msgid "Align to bottom"
+msgstr "Вирівнювання знизу"
+
+#: svxitems.src#RID_SVXITEMS_JUSTMETHOD_AUTO.string.text
+msgid "Automatic"
+msgstr "Автоматично"
+
+#: svxitems.src#RID_SVXITEMS_JUSTMETHOD_DISTRIBUTE.string.text
+msgid "Distributed"
+msgstr "Поставка"
+
+#: page.src#RID_SVXSTR_PAPERBIN.string.text
+msgid "Paper tray"
+msgstr "~Лоток для паперу"
+
+#: page.src#RID_SVXSTR_PAPERBIN_SETTINGS.string.text
+msgid "[From printer settings]"
+msgstr ""
diff --git a/source/uk/editeng/source/misc.po b/source/uk/editeng/source/misc.po
new file mode 100644
index 00000000000..60a5c802eea
--- /dev/null
+++ b/source/uk/editeng/source/misc.po
@@ -0,0 +1,45 @@
+#. 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: 2011-04-12 01:20+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "Продовжити перевірку з початку документа?"
+
+#: lingu.src#RID_SVXQB_BW_CONTINUE.querybox.text
+#, fuzzy
+msgid "Continue checking at end of document?"
+msgstr "Продовжити перевірку з початку документа?"
+
+#: 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 ""
+
+#: lingu.src#RID_SVXSTR_DIC_ERR_UNKNOWN.string.text
+msgid ""
+"Word cannot be added to dictionary\n"
+"due to unknown reason."
+msgstr ""
+
+#: lingu.src#RID_SVXSTR_DIC_ERR_FULL.string.text
+msgid "The dictionary is already full."
+msgstr ""
+
+#: lingu.src#RID_SVXSTR_DIC_ERR_READONLY.string.text
+msgid "The dictionary is read-only."
+msgstr ""
diff --git a/source/uk/editeng/source/outliner.po b/source/uk/editeng/source/outliner.po
new file mode 100644
index 00000000000..b742ef556e6
--- /dev/null
+++ b/source/uk/editeng/source/outliner.po
@@ -0,0 +1,59 @@
+#. 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-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: outliner.src#RID_OUTLUNDO_HEIGHT.string.text
+msgid "Move"
+msgstr "Перемістити"
+
+#: outliner.src#RID_OUTLUNDO_DEPTH.string.text
+msgid "Indent"
+msgstr "Відступ"
+
+#: outliner.src#RID_OUTLUNDO_EXPAND.string.text
+msgid "Show subpoints"
+msgstr ""
+
+#: outliner.src#RID_OUTLUNDO_COLLAPSE.string.text
+msgid "Collapse"
+msgstr "Згорнути підабзаци"
+
+#: outliner.src#RID_OUTLUNDO_ATTR.string.text
+msgid "Apply attributes"
+msgstr "Застосувати атрибути"
+
+#: outliner.src#RID_OUTLUNDO_INSERT.string.text
+#, fuzzy
+msgid "Insert"
+msgstr ""
+"#-#-#-#-# ribbar.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставити\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставити\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставити\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставка файлу\n"
+"#-#-#-#-# appl.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставити\n"
+"#-#-#-#-# tabpages.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Додавати ~розрив\n"
+"#-#-#-#-# formwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставити\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставити\n"
+"#-#-#-#-# basicide.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставити"
diff --git a/source/uk/extensions/source/abpilot.po b/source/uk/extensions/source/abpilot.po
new file mode 100644
index 00000000000..3f70c67235b
--- /dev/null
+++ b/source/uk/extensions/source/abpilot.po
@@ -0,0 +1,226 @@
+#. 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: 2011-04-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "Тип адресної книги"
+
+#: abspilot.src#RID_DLG_ADDRESSBOOKSOURCEPILOT.STR_INVOKE_ADMIN_DIALOG.string.text
+msgid "Connection Settings"
+msgstr "Налаштовування зв'язку"
+
+#: abspilot.src#RID_DLG_ADDRESSBOOKSOURCEPILOT.STR_TABLE_SELECTION.string.text
+msgid "Table selection"
+msgstr "Вибір таблиці"
+
+#: 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 "Призначення поля"
+
+#: abspilot.src#RID_DLG_ADDRESSBOOKSOURCEPILOT.STR_FINAL_CONFIRM.string.text
+msgid "Data Source Title"
+msgstr "Заголовок джерела даних"
+
+#: abspilot.src#RID_DLG_ADDRESSBOOKSOURCEPILOT.modaldialog.text
+msgid "Address Book Data Source Wizard"
+msgstr "Помічник джерел даних адрес"
+
+#: 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 надає доступ до адресних даних вже існуючих у вашій системі. Для цього будуть створені джерела даних %PRODUCTNAME, в яких ваші адресні будуть доступні у вигляді таблиць.\n"
+"\n"
+"Цей помічник допоможе створити джерело даних."
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.FL_TYPE.fixedline.text
+msgid "Please select the type of your external address book:"
+msgstr "Виберіть тип зовнішньої адресної книги:"
+
+#: 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 "Адресна книга Groupwise"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_EVOLUTION_LDAP.radiobutton.text
+msgid "Evolution LDAP"
+msgstr "Адресна книга Evolution 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 ""
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_KAB.radiobutton.text
+msgid "KDE address book"
+msgstr "Адресна книга KDE"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_MACAB.radiobutton.text
+msgid "Mac OS X address book"
+msgstr "Адресна книга Mac OS X"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_LDAP.radiobutton.text
+msgid "LDAP address data"
+msgstr "Адреси LDAP"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_OUTLOOK.radiobutton.text
+msgid "Outlook address book"
+msgstr "Адресна книга Outlook"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_OUTLOOKEXPRESS.radiobutton.text
+msgid "Windows system address book"
+msgstr "Адресна книга Windows"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_OTHER.radiobutton.text
+msgid "Other external data source"
+msgstr "Інше зовнішнє джерело даних"
+
+#: 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 ""
+"Для створення нових джерел даних потрібні додаткові параметри.\n"
+"\n"
+"Натисніть розташовану нижче кнопку, щоб відкрити діалогове вікно, у якому можна ввести необхідну інформацію."
+
+#: abspilot.src#RID_PAGE_ADMININVOKATION.PB_INVOKE_ADMIN_DIALOG.pushbutton.text
+msgid "Settings"
+msgstr "Параметри"
+
+#: 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 ""
+"Неможливо з'єднатись з джерелом даних.\n"
+"Перш ніж продовжити процес, перевірте параметри або виберіть (на попередній сторінці) інший тип джерела."
+
+#: 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 ""
+"Вибрані зовнішні джерела даних містять декілька адресних книг.\n"
+"Виберіть вручну ті, з якими ви будете працювати далі."
+
+#: 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 ""
+"Для використання адрес у шаблонах, %PRODUCTNAME повинен знати поля та конкретні дані, які містяться у цих полях.\n"
+"\n"
+"Наприклад, адреси електронної пошти можуть зберігатись у полі з назвою \"E-Mail\" або \"Електронна пошта\" або з якоюсь іншою назвою.\n"
+"\n"
+"Натискаючи на розташовану нижче кнопку, можна ввести ці параметри."
+
+#: 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 "Призначення поля"
+
+#: 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 ""
+"Інформацію, яка необхідна для інтеграції даних у %PRODUCTNAME зібрано.\n"
+"\n"
+"Залишилось ввести назву, з якою джерело даних буде зареєстроване у %PRODUCTNAME."
+
+#: abspilot.src#RID_PAGE_FINAL.FT_LOCATION.fixedtext.text
+msgid "Location"
+msgstr "Розташування"
+
+#: abspilot.src#RID_PAGE_FINAL.PB_BROWSE.pushbutton.text
+msgid "Browse..."
+msgstr "Огляд.."
+
+#: abspilot.src#RID_PAGE_FINAL.CB_REGISTER_DS.checkbox.text
+msgid "Make this address book available to all modules in %PRODUCTNAME."
+msgstr "Зробити цю адресну книгу видимою для всіх модулів %PRODUCTNAME."
+
+#: abspilot.src#RID_PAGE_FINAL.FT_NAME_EXPL.fixedtext.text
+msgid "Address book name"
+msgstr "Назва адресної книги"
+
+#: 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 "Джерело даних з такою назвою вже існує. Назви первинних даних мають бути унікальними. Потрібно обрати іншу назву."
+
+#: abspilot.src#RID_ERR_NEEDTYPESELECTION.errorbox.text
+msgid "Please select a type of address book."
+msgstr "Виберіть тип адресної книги."
+
+#: 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 ""
+"Ці дані не містять жодної таблиці.\n"
+"Встановити їх у якості джерел даних адрес?"
+
+#: 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 ""
+
+#: abspilot.src#RID_STR_DEFAULT_NAME.string.text
+msgid "Addresses"
+msgstr "Адреси"
+
+#: abspilot.src#RID_STR_ADMINDIALOGTITLE.string.text
+msgid "Create Address Data Source"
+msgstr "Створити джерело даних адрес"
+
+#: abspilot.src#RID_STR_NOCONNECTION.string.text
+msgid "The connection could not be established."
+msgstr "Неможливо встановити з'єднання."
+
+#: abspilot.src#RID_STR_PLEASECHECKSETTINGS.string.text
+msgid "Please check the settings made for the data source."
+msgstr "Перевірте параметри джерела даних."
+
+#: abspilot.src#RID_STR_FIELDDIALOGTITLE.string.text
+msgid "Address Data - Field Assignment"
+msgstr "Адресні дані - призначення полів"
+
+#: 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 ""
+"Наразі поля не призначені.\n"
+" Можна призначити їх зараз, а можна зробити це пізніше,\n"
+"в меню «Файл - Шаблони - Джерело адресної книги...»"
diff --git a/source/uk/extensions/source/bibliography.po b/source/uk/extensions/source/bibliography.po
new file mode 100644
index 00000000000..96744e6bc5e
--- /dev/null
+++ b/source/uk/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: 2011-04-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: bib.src#RID_BIB_STR_FIELDSELECTION.string.text
+msgid "Field selection:"
+msgstr "Вибір поля:"
+
+#: bib.src#RID_BIB_STR_TABWIN_PREFIX.string.text
+msgid "Table;Query;Sql;Sql [Native]"
+msgstr "Таблиця;Запит;Sql;Sql [Стандартний]"
+
+#: bib.src#RID_BIB_STR_FRAME_TITLE.string.text
+msgid "Bibliography Database"
+msgstr "База даних бібліографії"
+
+#: bib.src#RID_MAP_QUESTION.string.text
+msgid "Do you want to edit the column arrangement?"
+msgstr "Змінити розташування стовпчиків?"
+
+#: sections.src#RID_TP_GENERAL.ST_ERROR_PREFIX.string.text
+msgid "The following column names could not be assigned:\n"
+msgstr "Наступні назви стовпчиків не можуть бути призначені:\n"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_ARTICLE.string.text
+msgid "Article"
+msgstr "Стаття"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_BOOK.string.text
+msgid "Book"
+msgstr "Книга"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_BOOKLET.string.text
+msgid "Brochures"
+msgstr "Брошура"
+
+#: 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 "Звіт про конференцію"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_INBOOK.string.text
+msgid "Book excerpt"
+msgstr "Цитата з книжки"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_INCOLLECTION.string.text
+msgid "Book excerpt with title"
+msgstr "Виписка з книжки із заголовком"
+
+#: 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 "Звіт про конференцію"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_JOURNAL.string.text
+msgid "Journal"
+msgstr "Журнал"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_MANUAL.string.text
+msgid "Techn. documentation"
+msgstr "Технічна документація"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_MASTERSTHESIS.string.text
+msgid "Thesis"
+msgstr "Дипломна робота"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_MISC.string.text
+msgid "Miscellaneous"
+msgstr "Різне"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_PHDTHESIS.string.text
+msgid "Dissertation"
+msgstr "Дисертація"
+
+#: 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 "Звіт про конференцію"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_TECHREPORT.string.text
+msgid "Research report"
+msgstr "Звіт про наукове дослідження"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_UNPUBLISHED.string.text
+msgid "Unpublished"
+msgstr "Неопубліковане"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_EMAIL.string.text
+msgid "e-mail"
+msgstr "ел.пошта"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_WWW.string.text
+msgid "WWW document"
+msgstr "Веб-сторінка"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_CUSTOM1.string.text
+msgid "User-defined1"
+msgstr "Тип користувача1"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_CUSTOM2.string.text
+msgid "User-defined2"
+msgstr "Тип користувача2"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_CUSTOM3.string.text
+msgid "User-defined3"
+msgstr "Тип користувача3"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_CUSTOM4.string.text
+msgid "User-defined4"
+msgstr "Тип користувача4"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_CUSTOM5.string.text
+msgid "User-defined5"
+msgstr "Тип користувача5"
+
+#: sections.src#RID_TP_GENERAL.tabpage.text
+msgid "General"
+msgstr "Загальне"
+
+#: sections.src#RID_POPUP_ME_VIEW.PU_INSERT.menuitem.text
+msgid "Insert Section..."
+msgstr "Вставити розділ..."
+
+#: sections.src#RID_POPUP_ME_VIEW.PU_REMOVE.menuitem.text
+msgid "Delete Section..."
+msgstr "Видалити розділ..."
+
+#: sections.src#RID_POPUP_ME_VIEW.PU_CHG_NAME.menuitem.text
+msgid "Modify Name..."
+msgstr "Змінити назву..."
+
+#: sections.src#ST_IDENTIFIER.string.text
+msgid "~Short name"
+msgstr "~Скорочено"
+
+#: sections.src#ST_AUTHTYPE.string.text
+msgid "~Type"
+msgstr "~Тип"
+
+#: sections.src#ST_YEAR.string.text
+msgid "~Year"
+msgstr "~Рік"
+
+#: sections.src#ST_AUTHOR.string.text
+msgid "Author(s)"
+msgstr "Автор(и)"
+
+#: sections.src#ST_TITLE.string.text
+msgid "Tit~le"
+msgstr "~Заголовок"
+
+#: sections.src#ST_PUBLISHER.string.text
+msgid "~Publisher"
+msgstr "~Видавець"
+
+#: sections.src#ST_ADDRESS.string.text
+msgid "A~ddress"
+msgstr "~Адреса"
+
+#: sections.src#ST_ISBN.string.text
+msgid "~ISBN"
+msgstr "~ISBN"
+
+#: sections.src#ST_CHAPTER.string.text
+msgid "~Chapter"
+msgstr "~Глава"
+
+#: sections.src#ST_PAGE.string.text
+msgid "Pa~ge(s)"
+msgstr "~Сторінка(і)"
+
+#: sections.src#ST_EDITOR.string.text
+msgid "Editor"
+msgstr "Редактор"
+
+#: sections.src#ST_EDITION.string.text
+msgid "Ed~ition"
+msgstr "~Видання"
+
+#: sections.src#ST_BOOKTITLE.string.text
+msgid "~Book title"
+msgstr "~Назва книжки"
+
+#: sections.src#ST_VOLUME.string.text
+msgid "Volume"
+msgstr "Том"
+
+#: sections.src#ST_HOWPUBLISHED.string.text
+msgid "Publication t~ype"
+msgstr "~Тип видання"
+
+#: sections.src#ST_ORGANIZATION.string.text
+msgid "Organi~zation"
+msgstr "~Організація"
+
+#: sections.src#ST_INSTITUTION.string.text
+msgid "Instit~ution"
+msgstr "~Установа"
+
+#: sections.src#ST_SCHOOL.string.text
+msgid "University"
+msgstr "Університет"
+
+#: sections.src#ST_REPORT.string.text
+msgid "Type of re~port"
+msgstr "Тип ~звіту"
+
+#: sections.src#ST_MONTH.string.text
+msgid "~Month"
+msgstr "~Місяць"
+
+#: sections.src#ST_JOURNAL.string.text
+msgid "~Journal"
+msgstr "~Журнал"
+
+#: sections.src#ST_NUMBER.string.text
+msgid "Numb~er"
+msgstr "~Номер"
+
+#: sections.src#ST_SERIES.string.text
+msgid "Se~ries"
+msgstr "~Ряд"
+
+#: sections.src#ST_ANNOTE.string.text
+msgid "Ann~otation"
+msgstr "~Коментар"
+
+#: sections.src#ST_NOTE.string.text
+msgid "~Note"
+msgstr "~Примітка"
+
+#: sections.src#ST_URL.string.text
+msgid "URL"
+msgstr "URL"
+
+#: sections.src#ST_CUSTOM1.string.text
+msgid "User-defined field ~1"
+msgstr "Поле користувача ~1"
+
+#: sections.src#ST_CUSTOM2.string.text
+msgid "User-defined field ~2"
+msgstr "Поле користувача ~2"
+
+#: sections.src#ST_CUSTOM3.string.text
+msgid "User-defined field ~3"
+msgstr "Поле користувача ~3"
+
+#: sections.src#ST_CUSTOM4.string.text
+msgid "User-defined field ~4"
+msgstr "Поле користувача ~4"
+
+#: sections.src#ST_CUSTOM5.string.text
+msgid "User-defined field ~5"
+msgstr "Поле користувача ~5"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_FT_SOURCE.toolboxitem.text
+msgid "Table"
+msgstr "Таблиця"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_FT_QUERY.toolboxitem.text
+msgid "Search Key"
+msgstr "Ключ пошуку"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_BT_AUTOFILTER.toolboxitem.text
+msgid "AutoFilter"
+msgstr "Швидкий фільтр"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_BT_FILTERCRIT.toolboxitem.text
+msgid "Standard Filter"
+msgstr "Стандартний фільтр"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_BT_REMOVEFILTER.toolboxitem.text
+msgid "Remove Filter"
+msgstr "Видалити фільтр"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_BT_COL_ASSIGN.toolboxitem.text
+msgid "Column Arrangement"
+msgstr "Розташування стовпчиків"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_BT_CHANGESOURCE.toolboxitem.text
+msgid "Data Source"
+msgstr "Джерело даних"
+
+#: datman.src#RID_DLG_MAPPING.GB_MAPPING.fixedline.text
+msgid "Column names"
+msgstr "Назви стовпчиків"
+
+#: datman.src#RID_DLG_MAPPING.ST_NONE.string.text
+msgid "<none>"
+msgstr "<немає>"
+
+#: datman.src#RID_DLG_MAPPING.modaldialog.text
+msgid "Column Layout for Table %1"
+msgstr "Розташування стовпчика таблиці %1"
+
+#: datman.src#RID_DLG_DBCHANGE.ST_ENTRY.string.text
+msgid "Entry"
+msgstr "Джерело даних"
+
+#: datman.src#RID_DLG_DBCHANGE.modaldialog.text
+msgid "Choose Data Source"
+msgstr "Виберіть джерело даних"
diff --git a/source/uk/extensions/source/dbpilots.po b/source/uk/extensions/source/dbpilots.po
new file mode 100644
index 00000000000..c8762f2a096
--- /dev/null
+++ b/source/uk/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: 2011-04-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dbpilots.src#RID_DLG_GROUPBOXWIZARD.modaldialog.text
+msgid "Group Element Wizard"
+msgstr "Помічник групового блоку"
+
+#: dbpilots.src#RID_DLG_GRIDWIZARD.modaldialog.text
+msgid "Table Element Wizard"
+msgstr "Помічник елементу керування Таблиця"
+
+#: dbpilots.src#RID_STR_LISTWIZARD_TITLE.string.text
+msgid "List Box Wizard"
+msgstr "Помічник списку"
+
+#: dbpilots.src#RID_STR_COMBOWIZARD_TITLE.string.text
+msgid "Combo Box Wizard"
+msgstr "Помічник поля зі списком"
+
+#: dbpilots.src#RID_STR_COULDNOTOPENTABLE.string.text
+msgid "The table connection to the data source could not be established."
+msgstr "Неможливо встановити з'єднання таблиці з первинними даними."
+
+#: groupboxpages.src#RID_PAGE_GROUPRADIOSELECTION.FT_RADIOLABELS.fixedtext.text
+msgid "Which ~names do you want to give the option fields?"
+msgstr "Які ~назви повинні містити поля параметрів?"
+
+#: groupboxpages.src#RID_PAGE_GROUPRADIOSELECTION.FT_RADIOBUTTONS.fixedtext.text
+msgctxt "groupboxpages.src#RID_PAGE_GROUPRADIOSELECTION.FT_RADIOBUTTONS.fixedtext.text"
+msgid "~Option fields"
+msgstr "~Поля параметрів"
+
+#: groupboxpages.src#RID_PAGE_GROUPRADIOSELECTION.tabpage.text
+msgctxt "groupboxpages.src#RID_PAGE_GROUPRADIOSELECTION.tabpage.text"
+msgid "Data"
+msgstr "Дані"
+
+#: groupboxpages.src#RID_PAGE_DEFAULTFIELDSELECTION.FT_DEFAULTSELECTION.fixedtext.text
+msgid "Should one option field be selected as a default?"
+msgstr "Встановити будь-яке типове поле параметрів?"
+
+#: groupboxpages.src#RID_PAGE_DEFAULTFIELDSELECTION.RB_DEFSELECTION_YES.radiobutton.text
+msgid "~Yes, the following:"
+msgstr "~Так, наступне поле:"
+
+#: groupboxpages.src#RID_PAGE_DEFAULTFIELDSELECTION.RB_DEFSELECTION_NO.radiobutton.text
+msgid "No, one particular field is not going to be selected."
+msgstr "Ні, не вибирати поля."
+
+#: groupboxpages.src#RID_PAGE_DEFAULTFIELDSELECTION.tabpage.text
+msgid "Default Field Selection"
+msgstr "Вибір типового поля"
+
+#: 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 "Коли ви виберете принаймні один параметр, то групі параметрів буде призначено певне значення."
+
+#: groupboxpages.src#RID_PAGE_OPTIONVALUES.FT_OPTIONVALUES.fixedtext.text
+msgid "Which ~value do you want to assign to each option?"
+msgstr "Яке ~значення призначити кожному параметру?"
+
+#: groupboxpages.src#RID_PAGE_OPTIONVALUES.FT_RADIOBUTTONS.fixedtext.text
+msgctxt "groupboxpages.src#RID_PAGE_OPTIONVALUES.FT_RADIOBUTTONS.fixedtext.text"
+msgid "~Option fields"
+msgstr "~Поля параметрів"
+
+#: groupboxpages.src#RID_PAGE_OPTIONVALUES.tabpage.text
+msgid "Field Values"
+msgstr "Значення поля"
+
+#: groupboxpages.src#RID_PAGE_OPTIONS_FINAL.FT_NAMEIT.fixedtext.text
+msgid "Which ~caption is to be given to your option group?"
+msgstr "Який ~заголовок має отримати група параметрів?"
+
+#: groupboxpages.src#RID_PAGE_OPTIONS_FINAL.FT_THATSALL.fixedtext.text
+msgid "These were all details needed to create the option group."
+msgstr "Це була вся інформація, необхідна для створення групи параметрів."
+
+#: groupboxpages.src#RID_PAGE_OPTIONS_FINAL.tabpage.text
+msgid "Create Option Group"
+msgstr "Створити групу параметрів"
+
+#: 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 "Значення групи параметрів можна зберегти у полі бази даних або використати його пізніше."
+
+#: gridpages.src#RID_PAGE_GW_FIELDSELECTION.FL_FRAME.fixedline.text
+msgid "Table element"
+msgstr "Вибір полів"
+
+#: 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 "Доступні поля"
+
+#: gridpages.src#RID_PAGE_GW_FIELDSELECTION.FT_SELECTED_FIELDS.fixedtext.text
+msgid "Selected fields"
+msgstr "Вибрані поля"
+
+#: gridpages.src#RID_PAGE_GW_FIELDSELECTION.tabpage.text
+msgctxt "gridpages.src#RID_PAGE_GW_FIELDSELECTION.tabpage.text"
+msgid "Field Selection"
+msgstr "Вибір полів"
+
+#: gridpages.src#RID_STR_DATEPOSTFIX.string.text
+msgid " (Date)"
+msgstr " (Дата)"
+
+#: gridpages.src#RID_STR_TIMEPOSTFIX.string.text
+msgid " (Time)"
+msgstr " (Час)"
+
+#: commonpagesdbp.src#RID_PAGE_TABLESELECTION.FL_DATA.fixedline.text
+msgctxt "commonpagesdbp.src#RID_PAGE_TABLESELECTION.FL_DATA.fixedline.text"
+msgid "Data"
+msgstr "Дані"
+
+#: 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 ""
+"Форма, до якої відноситься елемент керування, наразі не зв'язана (або не повністю зв'язана) з даними бази. \n"
+"\n"
+"Виберіть джерело даних або таблицю.\n"
+"\n"
+"\n"
+"Зауважте, щ зміни на цій сторінці набирають сили одразу після того, як ви залишаєте цю сторінку."
+
+#: commonpagesdbp.src#RID_PAGE_TABLESELECTION.FT_DATASOURCE.fixedtext.text
+msgid "~Data source:"
+msgstr "~Джерело даних:"
+
+#: commonpagesdbp.src#RID_PAGE_TABLESELECTION.PB_FORMDATASOURCE.pushbutton.text
+msgid "~..."
+msgstr "~..."
+
+#: commonpagesdbp.src#RID_PAGE_TABLESELECTION.FT_TABLE.fixedtext.text
+msgid "~Table / Query:"
+msgstr "~Таблиця/запит:"
+
+#: commonpagesdbp.src#RID_PAGE_TABLESELECTION.tabpage.text
+msgctxt "commonpagesdbp.src#RID_PAGE_TABLESELECTION.tabpage.text"
+msgid "Data"
+msgstr "Дані"
+
+#: commonpagesdbp.src#RID_PAGE_OPTION_DBFIELD.FT_DATABASEFIELD_QUEST.fixedtext.text
+msgid "Do you want to save the value in a database field?"
+msgstr "Зберегти значення в полі бази даних?"
+
+#: commonpagesdbp.src#RID_PAGE_OPTION_DBFIELD.RB_STOREINFIELD_YES.radiobutton.text
+msgid "~Yes, I want to save it in the following database field:"
+msgstr "~Так, зберегти в наступному полі бази даних:"
+
+#: commonpagesdbp.src#RID_PAGE_OPTION_DBFIELD.RB_STOREINFIELD_NO.radiobutton.text
+msgid "~No, I only want to save the value in the form."
+msgstr "~Ні, зберегти лише значення у формі."
+
+#: commonpagesdbp.src#RID_PAGE_OPTION_DBFIELD.tabpage.text
+msgid "Database Field"
+msgstr "Поле бази даних"
+
+#: commonpagesdbp.src#RID_PAGE_FORM_DATASOURCE_STATUS.FL_FORMSETINGS.fixedline.text
+msgid "Form"
+msgstr "Форма"
+
+#: commonpagesdbp.src#RID_PAGE_FORM_DATASOURCE_STATUS.FT_FORMDATASOURCELABEL.fixedtext.text
+msgid "Data source"
+msgstr "Джерело даних"
+
+#: commonpagesdbp.src#RID_PAGE_FORM_DATASOURCE_STATUS.FT_FORMCONTENTTYPELABEL.fixedtext.text
+msgid "Content type"
+msgstr "Тип вмісту"
+
+#: commonpagesdbp.src#RID_PAGE_FORM_DATASOURCE_STATUS.FT_FORMTABLELABEL.fixedtext.text
+msgid "Content"
+msgstr "Вміст"
+
+#: commonpagesdbp.src#RID_STR_TYPE_TABLE.string.text
+msgid "Table"
+msgstr "Таблиця"
+
+#: commonpagesdbp.src#RID_STR_TYPE_QUERY.string.text
+msgid "Query"
+msgstr "Запит"
+
+#: commonpagesdbp.src#RID_STR_TYPE_COMMAND.string.text
+msgid "SQL command"
+msgstr "Команда SQL"
+
+#: listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_TABLE.FL_FRAME.fixedline.text
+msgid "Control"
+msgstr "Елемент керування"
+
+#: 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 ""
+"Праворуч показані всі таблиці джерел даних форми.\n"
+"\n"
+"\n"
+"Виберіть таблицю, яка має слугувати основою для змісту списку:"
+
+#: listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_TABLE.tabpage.text
+msgid "Table Selection"
+msgstr "Вибір таблиці"
+
+#: 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 "Доступні поля"
+
+#: listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_FIELD.FT_DISPLAYEDFIELD.fixedtext.text
+msgid "Display field"
+msgstr "Показане поле"
+
+#: 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 "Вміст вибраного поля буде показаний у полі зі списком."
+
+#: 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 "Вміст вибраного поля буде показаний у списку, якщо зв'язані поля збігаються."
+
+#: listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_FIELD.tabpage.text
+msgctxt "listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_FIELD.tabpage.text"
+msgid "Field Selection"
+msgstr "Вибір полів"
+
+#: 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 "Для відображення значення поля, виберіть поля, із узгодженим змістом."
+
+#: listcombopages.src#RID_PAGE_LCW_FIELDLINK.FT_VALUELISTFIELD.fixedtext.text
+msgid "Field from the ~Value Table"
+msgstr "Поле з таблиці ~значень"
+
+#: listcombopages.src#RID_PAGE_LCW_FIELDLINK.FT_TABLEFIELD.fixedtext.text
+msgid "Field from the ~List Table"
+msgstr "Поле з таблиці ~списку"
+
+#: listcombopages.src#RID_PAGE_LCW_FIELDLINK.tabpage.text
+msgid "Field Link"
+msgstr "Зв'язок полів"
+
+#: 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 "Значення поля зі списком можна зберігати у полі бази даних або використовувати його лише для відображення."
diff --git a/source/uk/extensions/source/propctrlr.po b/source/uk/extensions/source/propctrlr.po
new file mode 100644
index 00000000000..1094dc25397
--- /dev/null
+++ b/source/uk/extensions/source/propctrlr.po
@@ -0,0 +1,1614 @@
+#. 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: 2011-04-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: propres.src#RID_STR_STANDARD.string.text
+msgctxt "propres.src#RID_STR_STANDARD.string.text"
+msgid "Default"
+msgstr "Типово"
+
+#: propres.src#RID_STR_PROPPAGE_DEFAULT.string.text
+msgid "General"
+msgstr "Загальні"
+
+#: propres.src#RID_STR_PROPPAGE_DATA.string.text
+msgid "Data"
+msgstr "Дані"
+
+#: propres.src#RID_RSC_ENUM_YESNO.1.string.text
+msgctxt "propres.src#RID_RSC_ENUM_YESNO.1.string.text"
+msgid "No"
+msgstr "Ні"
+
+#: propres.src#RID_RSC_ENUM_YESNO.2.string.text
+msgctxt "propres.src#RID_RSC_ENUM_YESNO.2.string.text"
+msgid "Yes"
+msgstr "Так"
+
+#: propres.src#RID_STR_HELP_SECTION_LABEL.string.text
+msgctxt "propres.src#RID_STR_HELP_SECTION_LABEL.string.text"
+msgid "Help"
+msgstr "Довідка"
+
+#: propres.src#RID_EMBED_IMAGE_PLACEHOLDER.string.text
+msgid "<Embedded-Image>"
+msgstr ""
+
+#: propres.src#RID_STR_TEXT_FORMAT.string.text
+msgctxt "propres.src#RID_STR_TEXT_FORMAT.string.text"
+msgid "Text"
+msgstr "Текст"
+
+#: newdatatype.src#RID_DLG_NEW_DATA_TYPE.FT_LABEL.fixedtext.text
+msgid "Type a name for the new data type:"
+msgstr "Введіть назву для нового типа даних:"
+
+#: newdatatype.src#RID_DLG_NEW_DATA_TYPE.modaldialog.text
+msgid "New Data Type"
+msgstr "Новий тип даних"
+
+#: fontdialog.src#RID_TABDLG_FONTDIALOG.1.TABPAGE_CHARACTERS.pageitem.text
+msgctxt "fontdialog.src#RID_TABDLG_FONTDIALOG.1.TABPAGE_CHARACTERS.pageitem.text"
+msgid "Font"
+msgstr "Шрифт"
+
+#: fontdialog.src#RID_TABDLG_FONTDIALOG.1.TABPAGE_CHARACTERS_EXT.pageitem.text
+msgid "Font Effects"
+msgstr "Ефекти шрифту"
+
+#: fontdialog.src#RID_TABDLG_FONTDIALOG.tabdialog.text
+msgid "Character"
+msgstr "Символ"
+
+#: taborder.src#RID_DLG_TABORDER.FT_CONTROLS.fixedtext.text
+msgid "Controls"
+msgstr "Елементи керування"
+
+#: taborder.src#RID_DLG_TABORDER.PB_MOVE_UP.pushbutton.text
+msgid "Move Up"
+msgstr "Перемістити вгору"
+
+#: taborder.src#RID_DLG_TABORDER.PB_MOVE_DOWN.pushbutton.text
+msgid "Move Down"
+msgstr "Перемістити вниз"
+
+#: taborder.src#RID_DLG_TABORDER.PB_AUTO_ORDER.pushbutton.text
+msgid "Automatic Sort"
+msgstr "Автоматичне сортування"
+
+#: taborder.src#RID_DLG_TABORDER.modaldialog.text
+msgid "Tab Order"
+msgstr "Порядок активування"
+
+#: 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 "Елементи керування, які можуть бути використані у якості позначок для $control_class$ $control_name$."
+
+#: selectlabeldialog.src#RID_DLG_SELECTLABELCONTROL.1.checkbox.text
+msgid "~No assignment"
+msgstr "~Не призначати"
+
+#: selectlabeldialog.src#RID_DLG_SELECTLABELCONTROL.modaldialog.text
+msgid "Label Field Selection"
+msgstr "Вибір позначки"
+
+#: selectlabeldialog.src#RID_STR_FORMS.string.text
+msgid "Forms"
+msgstr "Форми"
+
+#: 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 ""
+"Ви справді хочете видалити з моделі тип даних '#type#' ?\n"
+"Зауважте, що це вплине на всі органи керування (controls) з якими пов'язаний цей тип даних."
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_PUSHBUTTON.string.text
+msgid "Button"
+msgstr "Кнопка"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_RADIOBUTTON.string.text
+msgid "Option Button"
+msgstr "Перемикач"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_CHECKBOX.string.text
+msgid "Check Box"
+msgstr "Поле з відміткою"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_FIXEDTEXT.string.text
+msgctxt "pcrmiscres.src#RID_STR_PROPTITLE_FIXEDTEXT.string.text"
+msgid "Label Field"
+msgstr "Позначка"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_GROUPBOX.string.text
+msgid "Group Box"
+msgstr "Група"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_EDIT.string.text
+msgid "Text Box"
+msgstr "Текстове поле"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_FORMATTED.string.text
+msgid "Formatted Field"
+msgstr "Поле форматування"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_LISTBOX.string.text
+msgid "List Box"
+msgstr "Список"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_COMBOBOX.string.text
+msgid "Combo Box"
+msgstr "Поле зі списком"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_IMAGEBUTTON.string.text
+msgid "Image Button"
+msgstr "Графічна кнопка"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_HIDDENCONTROL.string.text
+msgid "Hidden Control"
+msgstr "Прихований елемент керування"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_UNKNOWNCONTROL.string.text
+msgid "Control (unknown type)"
+msgstr "Елемент керування (невідомий тип)"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_IMAGECONTROL.string.text
+msgid "Image Control"
+msgstr "Графічний елемент керування"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_FILECONTROL.string.text
+msgid "File Selection"
+msgstr "Вибір файлу"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_DATEFIELD.string.text
+msgid "Date Field"
+msgstr "Поле дати"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_TIMEFIELD.string.text
+msgid "Time Field"
+msgstr "Поле часу"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_NUMERICFIELD.string.text
+msgid "Numeric Field"
+msgstr "Числове поле"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_CURRENCYFIELD.string.text
+msgid "Currency Field"
+msgstr "Поле валюти"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_PATTERNFIELD.string.text
+msgid "Pattern Field"
+msgstr "Поле з маскою вводу"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_DBGRID.string.text
+msgid "Table Control "
+msgstr "Елемент керування Таблиця"
+
+#: 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 "Підпорядковані форми можна використовувати для відображення докладних даних про поточний запис у основній формі. Для цього можна вказати, які стовпчики у підпорядкованій формі відповідають стовпчикам у основній формі."
+
+#: formlinkdialog.src#RID_DLG_FORMLINKS.modaldialog.text
+msgid "Link fields"
+msgstr "Зв'язок полів"
+
+#: formlinkdialog.src#PB_SUGGEST.pushbutton.text
+msgid "Suggest"
+msgstr "Побажання"
+
+#: formlinkdialog.src#STR_DETAIL_FORM.string.text
+msgid "Sub Form"
+msgstr "Підформа"
+
+#: formlinkdialog.src#STR_MASTER_FORM.string.text
+msgid "Master Form"
+msgstr "Основна форма"
+
+#. # will be replace with a name.
+#: formlinkdialog.src#STR_ERROR_RETRIEVING_COLUMNS.string.text
+msgid "The columns of '#' could not be retrieved."
+msgstr "Неможливо отримати стовпчики підформи."
+
+#: formres.src#RID_STR_EDITMASK.string.text
+msgid "Edit mask"
+msgstr "Маска вводу"
+
+#: formres.src#RID_STR_LITERALMASK.string.text
+msgid "Literal mask"
+msgstr "Маска знаків"
+
+#: formres.src#RID_STR_READONLY.string.text
+msgctxt "formres.src#RID_STR_READONLY.string.text"
+msgid "Read-only"
+msgstr "Лише для читання"
+
+#: formres.src#RID_STR_ENABLED.string.text
+msgid "Enabled"
+msgstr "Доступно"
+
+#: formres.src#RID_STR_ENABLE_VISIBLE.string.text
+msgid "Visible"
+msgstr "ВИдимий"
+
+#: formres.src#RID_STR_AUTOCOMPLETE.string.text
+msgid "AutoFill"
+msgstr "Автозаповнення"
+
+#: formres.src#RID_STR_LINECOUNT.string.text
+msgid "Line count"
+msgstr "Кількість рядків"
+
+#: formres.src#RID_STR_MAXTEXTLEN.string.text
+msgid "Max. text length"
+msgstr "Максимальна довжина тексту"
+
+#: formres.src#RID_STR_SPIN.string.text
+msgid "Spin Button"
+msgstr "Лічильник"
+
+#: formres.src#RID_STR_STRICTFORMAT.string.text
+msgid "Strict format"
+msgstr "Перевірка формату"
+
+#: formres.src#RID_STR_SHOWTHOUSANDSEP.string.text
+msgid "Thousands separator"
+msgstr "Розділювач розрядів"
+
+#: formres.src#RID_STR_PRINTABLE.string.text
+msgid "Printable"
+msgstr ""
+
+#: 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 "Кадр"
+
+#: formres.src#RID_STR_HELPTEXT.string.text
+msgid "Help text"
+msgstr "Текст контекстної довідки"
+
+#: formres.src#RID_STR_HELPURL.string.text
+msgid "Help URL"
+msgstr "URL довідки"
+
+#: formres.src#RID_STR_TAG.string.text
+msgid "Additional information"
+msgstr "Додаткова інформація"
+
+#: formres.src#RID_STR_ECHO_CHAR.string.text
+msgid "Password character"
+msgstr "Символи паролю"
+
+#: formres.src#RID_STR_TRISTATE.string.text
+msgid "Tristate"
+msgstr "Потрійний стан"
+
+#: formres.src#RID_STR_EMPTY_IS_NULL.string.text
+msgid "Empty string is NULL"
+msgstr "Порожній рядок - NULL"
+
+#: formres.src#RID_STR_DECIMAL_ACCURACY.string.text
+msgid "Decimal accuracy"
+msgstr "Точність"
+
+#: formres.src#RID_STR_IMAGE_URL.string.text
+msgid "Graphics"
+msgstr "Зображення"
+
+#: formres.src#RID_STR_DEFAULT_SELECT_SEQ.string.text
+msgid "Default selection"
+msgstr "Типовий вибір"
+
+#: formres.src#RID_STR_DEFAULT_BUTTON.string.text
+msgid "Default button"
+msgstr "Типова кнопка"
+
+#: formres.src#RID_STR_LABELCONTROL.string.text
+msgctxt "formres.src#RID_STR_LABELCONTROL.string.text"
+msgid "Label Field"
+msgstr "Позначка"
+
+#: formres.src#RID_STR_LABEL.string.text
+msgid "Label"
+msgstr "Текст"
+
+#: formres.src#RID_STR_ALIGN.string.text
+msgid "Alignment"
+msgstr "Вирівнювання"
+
+#: formres.src#RID_STR_VERTICAL_ALIGN.string.text
+msgid "Vert. Alignment"
+msgstr "Верт. вирівнювання"
+
+#: formres.src#RID_RSC_ENUM_VERTICAL_ALIGN.1.string.text
+msgid "Top"
+msgstr "Згори"
+
+#: formres.src#RID_RSC_ENUM_VERTICAL_ALIGN.2.string.text
+msgid "Middle"
+msgstr "У центрі"
+
+#: formres.src#RID_RSC_ENUM_VERTICAL_ALIGN.3.string.text
+msgid "Bottom"
+msgstr "Знизу"
+
+#: formres.src#RID_STR_IMAGEPOSITION.string.text
+msgid "Graphics alignment"
+msgstr "Вирівнювання графіки"
+
+#: formres.src#RID_STR_FONT.string.text
+msgctxt "formres.src#RID_STR_FONT.string.text"
+msgid "Font"
+msgstr "Шрифт"
+
+#: formres.src#RID_STR_BACKGROUNDCOLOR.string.text
+msgid "Background color"
+msgstr "Колір тла"
+
+#: formres.src#RID_STR_BORDER.string.text
+msgid "Border"
+msgstr "Рамка"
+
+#: formres.src#RID_STR_ICONSIZE.string.text
+msgid "Icon size"
+msgstr "Розмір значків"
+
+#: formres.src#RID_RSC_ENUM_ICONSIZE_TYPE.1.string.text
+msgid "Small"
+msgstr "Маленькі"
+
+#: formres.src#RID_RSC_ENUM_ICONSIZE_TYPE.2.string.text
+msgid "Large"
+msgstr "Великі"
+
+#: formres.src#RID_STR_SHOW_POSITION.string.text
+msgid "Positioning"
+msgstr "Позиціювання"
+
+#: formres.src#RID_STR_SHOW_NAVIGATION.string.text
+msgid "Navigation"
+msgstr "Навігація"
+
+#: formres.src#RID_STR_SHOW_RECORDACTIONS.string.text
+msgid "Acting on a record"
+msgstr "Дії над записом"
+
+#: formres.src#RID_STR_SHOW_FILTERSORT.string.text
+msgid "Filtering / Sorting"
+msgstr "Фільтрація / сортування"
+
+#: formres.src#RID_STR_HSCROLL.string.text
+msgid "Horizontal scroll bar"
+msgstr "Горизонтальна смуга прокрутки"
+
+#: formres.src#RID_STR_VSCROLL.string.text
+msgid "Vertical scroll bar"
+msgstr "Вертикальна суга прокрутки"
+
+#: formres.src#RID_STR_WORDBREAK.string.text
+msgid "Word break"
+msgstr "Розрив слова"
+
+#: formres.src#RID_STR_MULTILINE.string.text
+msgid "Multiline input"
+msgstr "Багаторядковий ввід"
+
+#: formres.src#RID_STR_MULTISELECTION.string.text
+msgid "Multiselection"
+msgstr "Групове виділення"
+
+#: formres.src#RID_STR_NAME.string.text
+msgid "Name"
+msgstr "Назва"
+
+#: formres.src#RID_STR_GROUP_NAME.string.text
+msgid "Group name"
+msgstr "Назви групи"
+
+#: formres.src#RID_STR_TABINDEX.string.text
+msgid "Tab order"
+msgstr "Порядок"
+
+#: formres.src#RID_STR_WHEEL_BEHAVIOR.string.text
+msgid "Mouse wheel scroll"
+msgstr ""
+
+#: formres.src#RID_STR_FILTER.string.text
+msgid "Filter"
+msgstr "Фільтр"
+
+#: formres.src#RID_STR_SORT_CRITERIA.string.text
+msgid "Sort"
+msgstr "Сортування"
+
+#: formres.src#RID_STR_RECORDMARKER.string.text
+msgid "Record marker"
+msgstr "Маркер запису"
+
+#: formres.src#RID_STR_FILTERPROPOSAL.string.text
+msgid "Filter proposal"
+msgstr "Сумарний фільтр"
+
+#: formres.src#RID_STR_NAVIGATION.string.text
+msgid "Navigation bar"
+msgstr "Пенал навігації"
+
+#: formres.src#RID_STR_CYCLE.string.text
+msgid "Cycle"
+msgstr "Цикл"
+
+#: formres.src#RID_STR_TABSTOP.string.text
+msgid "Tabstop"
+msgstr "Зупинка табуляції"
+
+#: formres.src#RID_STR_CONTROLSOURCE.string.text
+msgid "Data field"
+msgstr "Поле даних"
+
+#: formres.src#RID_STR_DROPDOWN.string.text
+msgid "Dropdown"
+msgstr "Розкривний"
+
+#: formres.src#RID_STR_BOUNDCOLUMN.string.text
+msgid "Bound field"
+msgstr "Прив'язане поле"
+
+#: formres.src#RID_STR_LISTSOURCE.string.text
+msgid "List content"
+msgstr "Зміст списку"
+
+#: formres.src#RID_STR_LISTSOURCETYPE.string.text
+msgid "Type of list contents"
+msgstr "Тип вмісту списку"
+
+#: formres.src#RID_STR_CURSORSOURCE.string.text
+msgid "Content"
+msgstr "Зміст"
+
+#: formres.src#RID_STR_CURSORSOURCETYPE.string.text
+msgid "Content type"
+msgstr "Тип вмісту"
+
+#: formres.src#RID_STR_ALLOW_ADDITIONS.string.text
+msgid "Allow additions"
+msgstr "Дозволити додавання"
+
+#: formres.src#RID_STR_ALLOW_DELETIONS.string.text
+msgid "Allow deletions"
+msgstr "Дозволити видалення"
+
+#: formres.src#RID_STR_ALLOW_EDITS.string.text
+msgid "Allow modifications"
+msgstr "Дозволити зміни"
+
+#: formres.src#RID_STR_DATAENTRY.string.text
+msgid "Add data only"
+msgstr "Дозволити лише додавання"
+
+#: formres.src#RID_STR_DATASOURCE.string.text
+msgid "Data source"
+msgstr "Джерело даних"
+
+#: formres.src#RID_STR_MASTERFIELDS.string.text
+msgid "Link master fields"
+msgstr "Зв'язок з головним полем"
+
+#: formres.src#RID_STR_SLAVEFIELDS.string.text
+msgid "Link slave fields"
+msgstr "Зв'язок з підлеглим полем"
+
+#: formres.src#RID_STR_VALUEMIN.string.text
+msgid "Value min."
+msgstr "Мінімальне значення"
+
+#: formres.src#RID_STR_VALUEMAX.string.text
+msgid "Value max."
+msgstr "Максимальне значення"
+
+#: formres.src#RID_STR_VALUESTEP.string.text
+msgid "Incr./decrement value"
+msgstr "Крок значення"
+
+#: formres.src#RID_STR_CURRENCYSYMBOL.string.text
+msgid "Currency symbol"
+msgstr "Символ грошової одиниці"
+
+#: formres.src#RID_STR_DATEMIN.string.text
+msgid "Date min."
+msgstr "Мінімальна дата"
+
+#: formres.src#RID_STR_DATEMAX.string.text
+msgid "Date max."
+msgstr "Максимальна дата"
+
+#: formres.src#RID_STR_DATEFORMAT.string.text
+msgid "Date format"
+msgstr "Формат даних"
+
+#: formres.src#RID_STR_SELECTEDITEMS.string.text
+msgid "Selection"
+msgstr "Виділення"
+
+#: formres.src#RID_STR_TIMEMIN.string.text
+msgid "Time min."
+msgstr "Мінімальний час"
+
+#: formres.src#RID_STR_TIMEMAX.string.text
+msgid "Time max."
+msgstr "Максимальний час"
+
+#: formres.src#RID_STR_TIMEFORMAT.string.text
+msgid "Time format"
+msgstr "Формат часу"
+
+#: formres.src#RID_STR_CURRSYM_POSITION.string.text
+msgid "Prefix symbol"
+msgstr "Символ перед цифрами"
+
+#: formres.src#RID_STR_VALUE.string.text
+msgid "Value"
+msgstr "Значення"
+
+#: formres.src#RID_STR_FORMATKEY.string.text
+msgid "Formatting"
+msgstr "Форматування"
+
+#: formres.src#RID_STR_CLASSID.string.text
+msgid "Class ID"
+msgstr "ID класу"
+
+#: formres.src#RID_STR_HEIGHT.string.text
+msgid "Height"
+msgstr "Висота"
+
+#: formres.src#RID_STR_WIDTH.string.text
+msgid "Width"
+msgstr "Ширина"
+
+#: formres.src#RID_STR_LISTINDEX.string.text
+msgid "List index"
+msgstr "Індекс списку"
+
+#: formres.src#RID_STR_ROWHEIGHT.string.text
+msgid "Row height"
+msgstr "Висота рядків"
+
+#: formres.src#RID_STR_FILLCOLOR.string.text
+msgid "Fill color"
+msgstr "Колір заповнення"
+
+#: formres.src#RID_STR_LINECOLOR.string.text
+msgid "Line color"
+msgstr "Колір лінії"
+
+#: formres.src#RID_STR_REFVALUE.string.text
+msgid "Reference value (on)"
+msgstr "Значення покажчика (увімк)"
+
+#: formres.src#RID_STR_UNCHECKEDREFVALUE.string.text
+msgid "Reference value (off)"
+msgstr "Значення покажчика (вимк.)"
+
+#: formres.src#RID_STR_STRINGITEMLIST.string.text
+msgid "List entries"
+msgstr "Елементи списку"
+
+#: formres.src#RID_STR_BUTTONTYPE.string.text
+msgid "Action"
+msgstr "Тип кнопки"
+
+#: 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 "Тип представлення"
+
+#: formres.src#RID_STR_DEFAULT_STATE.string.text
+msgid "Default status"
+msgstr "Типовий стан"
+
+#: formres.src#RID_STR_SUBMIT_ENCODING.string.text
+msgid "Submission encoding"
+msgstr "Кодування представлення"
+
+#: formres.src#RID_STR_DEFAULTVALUE.string.text
+msgid "Default value"
+msgstr "Типове значення"
+
+#: formres.src#RID_STR_DEFAULTTEXT.string.text
+msgid "Default text"
+msgstr "Типовий текст"
+
+#: formres.src#RID_STR_DEFAULTDATE.string.text
+msgid "Default date"
+msgstr "Типова дата"
+
+#: formres.src#RID_STR_DEFAULTTIME.string.text
+msgid "Default time"
+msgstr "Типовий час"
+
+#: formres.src#RID_STR_SUBMIT_TARGET.string.text
+msgctxt "formres.src#RID_STR_SUBMIT_TARGET.string.text"
+msgid "Frame"
+msgstr "Кадр"
+
+#: formres.src#RID_RSC_ENUM_BORDER_TYPE.1.string.text
+msgid "Without frame"
+msgstr "Без рамки"
+
+#: formres.src#RID_RSC_ENUM_BORDER_TYPE.2.string.text
+msgid "3D look"
+msgstr "Тривимірний вигляд"
+
+#: formres.src#RID_RSC_ENUM_BORDER_TYPE.3.string.text
+msgctxt "formres.src#RID_RSC_ENUM_BORDER_TYPE.3.string.text"
+msgid "Flat"
+msgstr "Плаский"
+
+#: formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.1.string.text
+msgid "Valuelist"
+msgstr "Список значень"
+
+#: formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.2.string.text
+msgctxt "formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.2.string.text"
+msgid "Table"
+msgstr "Таблиця"
+
+#: formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.3.string.text
+msgctxt "formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.3.string.text"
+msgid "Query"
+msgstr "Запит"
+
+#: 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 "Поля таблиці"
+
+#: formres.src#RID_RSC_ENUM_ALIGNMENT.1.string.text
+msgid "Left"
+msgstr "Ліворуч"
+
+#: formres.src#RID_RSC_ENUM_ALIGNMENT.2.string.text
+msgid "Center"
+msgstr "У центрі"
+
+#: formres.src#RID_RSC_ENUM_ALIGNMENT.3.string.text
+msgid "Right"
+msgstr "Праворуч"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.1.string.text
+#, fuzzy
+msgctxt "formres.src#RID_RSC_ENUM_BUTTONTYPE.1.string.text"
+msgid "None"
+msgstr ""
+"#-#-#-#-# utlui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Немає\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Немає\n"
+"#-#-#-#-# chrdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Немає\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Немає\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Немає\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Очиатити\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Немає\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Нічого\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Немає\n"
+"#-#-#-#-# formwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Нічого\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Немає\n"
+"#-#-#-#-# control.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Нічого\n"
+"#-#-#-#-# accessibility.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Без\n"
+"#-#-#-#-# form.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Нічого\n"
+"#-#-#-#-# stbctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Немає"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.2.string.text
+msgid "Submit form"
+msgstr "Надіслати форму"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.3.string.text
+msgid "Reset form"
+msgstr "Відносити форму"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.4.string.text
+msgid "Open document/web page"
+msgstr "Відкрити документ/веб-сторінку"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.5.string.text
+msgid "First record"
+msgstr "Перший запис"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.6.string.text
+msgid "Previous record"
+msgstr "Попередній запис"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.7.string.text
+msgid "Next record"
+msgstr "Наступний запис"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.8.string.text
+msgid "Last record"
+msgstr "Останній запис"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.9.string.text
+msgid "Save record"
+msgstr "Зберегти запис"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.10.string.text
+msgid "Undo data entry"
+msgstr "Скасувати ввід даних"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.11.string.text
+msgid "New record"
+msgstr "Додати запис"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.12.string.text
+msgid "Delete record"
+msgstr "Видалити запис"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.13.string.text
+msgid "Refresh form"
+msgstr "Оновити форму"
+
+#: 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 "Post"
+
+#: 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 "Текст"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.1.string.text
+msgid "Standard (short)"
+msgstr "Стандартний (короткий)"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.2.string.text
+msgid "Standard (short YY)"
+msgstr "Стандартний (короткий РР)"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.3.string.text
+msgid "Standard (short YYYY)"
+msgstr "Стандартний (короткий РРРР)"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.4.string.text
+msgid "Standard (long)"
+msgstr "Стандартний (довгий)"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.5.string.text
+msgid "DD/MM/YY"
+msgstr "ДД/ММ/РР"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.6.string.text
+msgid "MM/DD/YY"
+msgstr "ММ/ДД/РР"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.7.string.text
+msgid "YY/MM/DD"
+msgstr "РР/ММ/ДД"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.8.string.text
+msgid "DD/MM/YYYY"
+msgstr "ДД/ММ/РРРР"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.9.string.text
+msgid "MM/DD/YYYY"
+msgstr "ММ/ДД/РРРР"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.10.string.text
+msgid "YYYY/MM/DD"
+msgstr "РРРР/ММ/ДД"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.11.string.text
+msgid "YY-MM-DD"
+msgstr "РР-ММ-ДД"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.12.string.text
+msgid "YYYY-MM-DD"
+msgstr "РРРР-ММ-ДД"
+
+#: 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 "Не вибрано"
+
+#: formres.src#RID_RSC_ENUM_CHECKED.2.string.text
+msgid "Selected"
+msgstr "Вибрано"
+
+#: formres.src#RID_RSC_ENUM_CHECKED.3.string.text
+msgid "Not Defined"
+msgstr "Не визначено"
+
+#: formres.src#RID_RSC_ENUM_CYCLE.1.string.text
+msgid "All records"
+msgstr "Усі записи"
+
+#: formres.src#RID_RSC_ENUM_CYCLE.2.string.text
+msgid "Active record"
+msgstr "Активні записи"
+
+#: formres.src#RID_RSC_ENUM_CYCLE.3.string.text
+msgid "Current page"
+msgstr "Поточна сторінка"
+
+#: formres.src#RID_RSC_ENUM_NAVIGATION.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_NAVIGATION.1.string.text"
+msgid "No"
+msgstr "Ні"
+
+#: formres.src#RID_RSC_ENUM_NAVIGATION.2.string.text
+msgctxt "formres.src#RID_RSC_ENUM_NAVIGATION.2.string.text"
+msgid "Yes"
+msgstr "Так"
+
+#: formres.src#RID_RSC_ENUM_NAVIGATION.3.string.text
+msgid "Parent Form"
+msgstr "Батьківська форма"
+
+#: formres.src#RID_RSC_ENUM_SELECTION_TYPE.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SELECTION_TYPE.1.string.text"
+msgid "None"
+msgstr "Немає"
+
+#: formres.src#RID_RSC_ENUM_SELECTION_TYPE.2.string.text
+msgid "Single"
+msgstr "Одиночний"
+
+#: formres.src#RID_RSC_ENUM_SELECTION_TYPE.3.string.text
+msgid "Multi"
+msgstr "Множинний"
+
+#: formres.src#RID_RSC_ENUM_SELECTION_TYPE.4.string.text
+msgid "Range"
+msgstr "Діапазон"
+
+#: formres.src#RID_STR_EVT_APPROVEPARAMETER.string.text
+msgid "Fill parameters"
+msgstr "При заповненні параметрів"
+
+#: formres.src#RID_STR_EVT_ACTIONPERFORMED.string.text
+msgid "Execute action"
+msgstr ""
+
+#: formres.src#RID_STR_EVT_AFTERUPDATE.string.text
+msgid "After updating"
+msgstr "Після оновлення"
+
+#: formres.src#RID_STR_EVT_BEFOREUPDATE.string.text
+msgid "Before updating"
+msgstr "Перед оновленням"
+
+#: formres.src#RID_STR_EVT_APPROVEROWCHANGE.string.text
+msgid "Before record action"
+msgstr "Перед збереженням"
+
+#: formres.src#RID_STR_EVT_ROWCHANGE.string.text
+msgid "After record action"
+msgstr "Після збереження"
+
+#: formres.src#RID_STR_EVT_CONFIRMDELETE.string.text
+msgid "Confirm deletion"
+msgstr "Підтвердити видалення"
+
+#: formres.src#RID_STR_EVT_ERROROCCURRED.string.text
+msgid "Error occurred"
+msgstr "Виникла помилка"
+
+#: formres.src#RID_STR_EVT_FOCUSGAINED.string.text
+msgid "When receiving focus"
+msgstr "При отриманні фокусу"
+
+#: formres.src#RID_STR_EVT_FOCUSLOST.string.text
+msgid "When losing focus"
+msgstr "При втраті фокусу"
+
+#: formres.src#RID_STR_EVT_ITEMSTATECHANGED.string.text
+msgid "Item status changed"
+msgstr "Статус змінився"
+
+#: formres.src#RID_STR_EVT_KEYTYPED.string.text
+msgid "Key pressed"
+msgstr "Натиск клавіші"
+
+#: formres.src#RID_STR_EVT_KEYUP.string.text
+msgid "Key released"
+msgstr "Відпускання клавіші"
+
+#: formres.src#RID_STR_EVT_LOADED.string.text
+msgid "When loading"
+msgstr "При завантаженні"
+
+#: formres.src#RID_STR_EVT_RELOADING.string.text
+msgid "Before reloading"
+msgstr "Перед повторним завантаженням"
+
+#: formres.src#RID_STR_EVT_RELOADED.string.text
+msgid "When reloading"
+msgstr "При повторному завантаженні"
+
+#: formres.src#RID_STR_EVT_MOUSEDRAGGED.string.text
+msgid "Mouse moved while key pressed"
+msgstr "Переміщення миші з натиском клавішею"
+
+#: formres.src#RID_STR_EVT_MOUSEENTERED.string.text
+msgid "Mouse inside"
+msgstr "Мишка всередині"
+
+#: formres.src#RID_STR_EVT_MOUSEEXITED.string.text
+msgid "Mouse outside"
+msgstr "Мишка ззовні"
+
+#: formres.src#RID_STR_EVT_MOUSEMOVED.string.text
+msgid "Mouse moved"
+msgstr "Переміщення миші"
+
+#: formres.src#RID_STR_EVT_MOUSEPRESSED.string.text
+msgid "Mouse button pressed"
+msgstr "Натиск на кнопку миші"
+
+#: formres.src#RID_STR_EVT_MOUSERELEASED.string.text
+msgid "Mouse button released"
+msgstr "Відпускання кнопки миші"
+
+#: formres.src#RID_STR_EVT_POSITIONING.string.text
+msgid "Before record change"
+msgstr "Перед зміною запису"
+
+#: formres.src#RID_STR_EVT_POSITIONED.string.text
+msgid "After record change"
+msgstr "Після зміни запису"
+
+#: formres.src#RID_STR_EVT_RESETTED.string.text
+msgid "After resetting"
+msgstr "Після відновлення"
+
+#: formres.src#RID_STR_EVT_APPROVERESETTED.string.text
+msgid "Prior to reset"
+msgstr "Перед відновленням"
+
+#: formres.src#RID_STR_EVT_APPROVEACTIONPERFORMED.string.text
+msgid "Approve action"
+msgstr ""
+
+#: formres.src#RID_STR_EVT_SUBMITTED.string.text
+msgid "Before submitting"
+msgstr "Перед підтвердженням"
+
+#: formres.src#RID_STR_EVT_TEXTCHANGED.string.text
+msgid "Text modified"
+msgstr "Текст змінено"
+
+#: formres.src#RID_STR_EVT_UNLOADING.string.text
+msgid "Before unloading"
+msgstr "Перед вивантаженням"
+
+#: formres.src#RID_STR_EVT_UNLOADED.string.text
+msgid "When unloading"
+msgstr "При вивантаженні"
+
+#: formres.src#RID_STR_EVT_CHANGED.string.text
+msgid "Changed"
+msgstr "Зміна стану"
+
+#: formres.src#RID_STR_EVENTS.string.text
+msgid "Events"
+msgstr "Події"
+
+#: formres.src#RID_STR_ESCAPE_PROCESSING.string.text
+msgid "Analyze SQL command"
+msgstr "Аналіз команди SQL"
+
+#: formres.src#RID_STR_POSITIONX.string.text
+msgid "PositionX"
+msgstr "Позиція X"
+
+#: formres.src#RID_STR_POSITIONY.string.text
+msgid "PositionY"
+msgstr "Позиція Y"
+
+#: formres.src#RID_STR_TITLE.string.text
+msgid "Title"
+msgstr "Заголовок"
+
+#: formres.src#RID_STR_STEP.string.text
+msgid "Page (step)"
+msgstr "Сторінка (крок)"
+
+#: formres.src#RID_STR_PROGRESSVALUE.string.text
+msgid "Progress value"
+msgstr "Стан виконання"
+
+#: formres.src#RID_STR_PROGRESSVALUE_MIN.string.text
+msgid "Progress value min."
+msgstr "Мін. значення стану виконання"
+
+#: formres.src#RID_STR_PROGRESSVALUE_MAX.string.text
+msgid "Progress value max."
+msgstr "Макс. значення стану виконання"
+
+#: formres.src#RID_STR_SCROLLVALUE.string.text
+msgid "Scroll value"
+msgstr "Значення прокрутки"
+
+#: formres.src#RID_STR_SCROLLVALUE_MAX.string.text
+msgid "Scroll value max."
+msgstr "Макс. значення прокрутки"
+
+#: formres.src#RID_STR_SCROLLVALUE_MIN.string.text
+msgid "Scroll value min."
+msgstr "Мін. значення прокрутки"
+
+#: formres.src#RID_STR_DEFAULT_SCROLLVALUE.string.text
+msgid "Default scroll value"
+msgstr "Типове значення прокрутки"
+
+#: formres.src#RID_STR_LINEINCREMENT.string.text
+msgid "Small change"
+msgstr "Крок лінії"
+
+#: formres.src#RID_STR_BLOCKINCREMENT.string.text
+msgid "Large change"
+msgstr "Крок блоку"
+
+#: formres.src#RID_STR_REPEAT_DELAY.string.text
+msgid "Delay"
+msgstr "Затримка"
+
+#: formres.src#RID_STR_REPEAT.string.text
+msgid "Repeat"
+msgstr "Повторити"
+
+#: formres.src#RID_STR_VISIBLESIZE.string.text
+msgid "Visible size"
+msgstr "Видимий розмір"
+
+#: formres.src#RID_STR_ORIENTATION.string.text
+msgid "Orientation"
+msgstr "Орієнтація"
+
+#: formres.src#RID_RSC_ENUM_ORIENTATION.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_ORIENTATION.1.string.text"
+msgid "Horizontal"
+msgstr "Горизонтально"
+
+#: formres.src#RID_RSC_ENUM_ORIENTATION.2.string.text
+msgctxt "formres.src#RID_RSC_ENUM_ORIENTATION.2.string.text"
+msgid "Vertical"
+msgstr "Вертикально"
+
+#: formres.src#RID_STR_EVT_ADJUSTMENTVALUECHANGED.string.text
+msgid "While adjusting"
+msgstr "При вирівнюванні"
+
+#: formres.src#RID_STR_DATE.string.text
+msgid "Date"
+msgstr "Дата"
+
+#: formres.src#RID_STR_STATE.string.text
+msgid "State"
+msgstr "Область"
+
+#: formres.src#RID_STR_TIME.string.text
+msgid "Time"
+msgstr "Час"
+
+#: formres.src#RID_STR_SCALEIMAGE.string.text
+msgid "Scale"
+msgstr "Масштаб"
+
+#: formres.src#RID_STR_PUSHBUTTONTYPE.string.text
+msgid "Button type"
+msgstr "Тип кнопки"
+
+#: formres.src#RID_RSC_ENUM_PUSHBUTTONTYPE.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_PUSHBUTTONTYPE.1.string.text"
+msgid "Default"
+msgstr "Типово"
+
+#: formres.src#RID_RSC_ENUM_PUSHBUTTONTYPE.2.string.text
+msgid "OK"
+msgstr "Гаразд"
+
+#: formres.src#RID_RSC_ENUM_PUSHBUTTONTYPE.3.string.text
+msgid "Cancel"
+msgstr "Скасувати"
+
+#: formres.src#RID_RSC_ENUM_PUSHBUTTONTYPE.4.string.text
+msgctxt "formres.src#RID_RSC_ENUM_PUSHBUTTONTYPE.4.string.text"
+msgid "Help"
+msgstr "Довідка"
+
+#: formres.src#RID_STR_UNABLETOCONNECT.string.text
+msgid "The connection to the data source \"$name$\" could not be established."
+msgstr "Неможливо встановити з'єднання з джерелом даних \"$name$\"."
+
+#: formres.src#RID_STR_TEXT.string.text
+msgctxt "formres.src#RID_STR_TEXT.string.text"
+msgid "Text"
+msgstr "Текст"
+
+#: formres.src#RID_STR_BOUND_CELL.string.text
+msgid "Linked cell"
+msgstr "Пов'язані комірки"
+
+#: formres.src#RID_STR_LIST_CELL_RANGE.string.text
+msgid "Source cell range"
+msgstr "Діапазон вхідних комірок"
+
+#: formres.src#RID_STR_CELL_EXCHANGE_TYPE.string.text
+msgid "Contents of the linked cell"
+msgstr "Зміст пов'язаної комірки"
+
+#: formres.src#RID_RSC_ENUM_CELL_EXCHANGE_TYPE.1.string.text
+msgid "The selected entry"
+msgstr "Виділений запис"
+
+#: formres.src#RID_RSC_ENUM_CELL_EXCHANGE_TYPE.2.string.text
+msgid "Position of the selected entry"
+msgstr "Позиція виділеного запису"
+
+#: formres.src#RID_STR_SHOW_SCROLLBARS.string.text
+msgid "Scrollbars"
+msgstr "Смуги прокрутки"
+
+#: formres.src#RID_RSC_ENUM_TEXTTYPE.1.string.text
+msgid "Single-line"
+msgstr "Однорядковий"
+
+#: formres.src#RID_RSC_ENUM_TEXTTYPE.2.string.text
+msgid "Multi-line"
+msgstr "Багаторядковий"
+
+#: formres.src#RID_RSC_ENUM_TEXTTYPE.3.string.text
+msgid "Multi-line with formatting"
+msgstr "Багаторядковий з форматуванням"
+
+#: formres.src#RID_STR_SYMBOLCOLOR.string.text
+msgid "Symbol color"
+msgstr "Колір символів"
+
+#: formres.src#RID_STR_LINEEND_FORMAT.string.text
+msgid "Text lines end with"
+msgstr "Текстові рядки закінчуються"
+
+#: 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 "Нмеає"
+
+#: formres.src#RID_RSC_ENUM_SCROLLBARS.2.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SCROLLBARS.2.string.text"
+msgid "Horizontal"
+msgstr "Горизонтально"
+
+#: formres.src#RID_RSC_ENUM_SCROLLBARS.3.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SCROLLBARS.3.string.text"
+msgid "Vertical"
+msgstr "Вертикально"
+
+#: formres.src#RID_RSC_ENUM_SCROLLBARS.4.string.text
+msgid "Both"
+msgstr "По горизонталі та вертикалі"
+
+#: formres.src#RID_RSC_ENUM_COMMAND_TYPE.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_COMMAND_TYPE.1.string.text"
+msgid "Table"
+msgstr "Таблиця"
+
+#: formres.src#RID_RSC_ENUM_COMMAND_TYPE.2.string.text
+msgctxt "formres.src#RID_RSC_ENUM_COMMAND_TYPE.2.string.text"
+msgid "Query"
+msgstr "Запит"
+
+#: formres.src#RID_RSC_ENUM_COMMAND_TYPE.3.string.text
+msgid "SQL command"
+msgstr "Команда SQL"
+
+#: formres.src#RID_STR_TOGGLE.string.text
+msgid "Toggle"
+msgstr "Перемикнути"
+
+#: formres.src#RID_STR_FOCUSONCLICK.string.text
+msgid "Take Focus on Click"
+msgstr "Захоплювати фокус при клацанні."
+
+#: formres.src#RID_STR_HIDEINACTIVESELECTION.string.text
+msgid "Hide selection"
+msgstr "Приховати виділене"
+
+#: formres.src#RID_STR_VISUALEFFECT.string.text
+msgid "Style"
+msgstr "Стиль"
+
+#: formres.src#RID_RSC_ENUM_VISUALEFFECT.1.string.text
+msgid "3D"
+msgstr "Тривимірний"
+
+#: formres.src#RID_RSC_ENUM_VISUALEFFECT.2.string.text
+msgctxt "formres.src#RID_RSC_ENUM_VISUALEFFECT.2.string.text"
+msgid "Flat"
+msgstr "Плаский"
+
+#: formres.src#RID_STR_BORDERCOLOR.string.text
+msgid "Border color"
+msgstr "Колір рамки"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.1.string.text
+msgid "Left top"
+msgstr "Ліворуч згори"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.2.string.text
+msgid "Left centered"
+msgstr "Ліворуч"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.3.string.text
+msgid "Left bottom"
+msgstr "Ліворуч знизу"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.4.string.text
+msgid "Right top"
+msgstr "Праворуч згори"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.5.string.text
+msgid "Right centered"
+msgstr "Праворуч"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.6.string.text
+msgid "Right bottom"
+msgstr "Праворуч знизу"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.7.string.text
+msgid "Above left"
+msgstr "Згори ліворуч"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.8.string.text
+msgid "Above centered"
+msgstr "Згори"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.9.string.text
+msgid "Above right"
+msgstr "Згори праворуч"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.10.string.text
+msgid "Below left"
+msgstr "Знизу ліворуч"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.11.string.text
+msgid "Below centered"
+msgstr "Знизу"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.12.string.text
+msgid "Below right"
+msgstr "Знизу праворуч"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.13.string.text
+msgid "Centered"
+msgstr "По центру"
+
+#: formres.src#RID_STR_AUTOLINEBREAK.string.text
+msgid "Wrap text automatically"
+msgstr "Обрізати текст по словам автоматично"
+
+#: formres.src#RID_STR_TEXTTYPE.string.text
+msgid "Text type"
+msgstr "Тип тексту"
+
+#: formres.src#RID_RSC_ENUM_SHOWHIDE.1.string.text
+msgid "Hide"
+msgstr "Сховати"
+
+#: formres.src#RID_RSC_ENUM_SHOWHIDE.2.string.text
+msgid "Show"
+msgstr "Показати"
+
+#: formres.src#RID_STR_XML_DATA_MODEL.string.text
+msgid "XML data model"
+msgstr "Модель даних XML"
+
+#: formres.src#RID_STR_BIND_EXPRESSION.string.text
+msgid "Binding expression"
+msgstr "Вираз зв'язування"
+
+#: formres.src#RID_STR_XSD_REQUIRED.string.text
+msgid "Required"
+msgstr "Необхідно"
+
+#: formres.src#RID_STR_LIST_BINDING.string.text
+msgid "List entry source"
+msgstr "Джерело елементу списку"
+
+#: formres.src#RID_STR_XSD_RELEVANT.string.text
+msgid "Relevant"
+msgstr "Відноситься"
+
+#: formres.src#RID_STR_XSD_READONLY.string.text
+msgctxt "formres.src#RID_STR_XSD_READONLY.string.text"
+msgid "Read-only"
+msgstr "Лише для читання"
+
+#: formres.src#RID_STR_XSD_CONSTRAINT.string.text
+msgid "Constraint"
+msgstr "Обмеження"
+
+#: formres.src#RID_STR_XSD_CALCULATION.string.text
+msgid "Calculation"
+msgstr "Обчислення"
+
+#: formres.src#RID_STR_XSD_DATA_TYPE.string.text
+msgid "Data type"
+msgstr "Тип даних"
+
+#: formres.src#RID_STR_XSD_WHITESPACES.string.text
+msgid "Whitespaces"
+msgstr "Пробільні символи"
+
+#: formres.src#RID_RSC_ENUM_WHITESPACE_HANDLING.1.string.text
+msgid "Preserve"
+msgstr "Резервувати"
+
+#: formres.src#RID_RSC_ENUM_WHITESPACE_HANDLING.2.string.text
+msgid "Replace"
+msgstr "Замінити"
+
+#: formres.src#RID_RSC_ENUM_WHITESPACE_HANDLING.3.string.text
+msgid "Collapse"
+msgstr "Згорнути підабзаци"
+
+#: formres.src#RID_STR_XSD_PATTERN.string.text
+msgid "Pattern"
+msgstr "Орнамент"
+
+#: formres.src#RID_STR_XSD_LENGTH.string.text
+msgid "Length"
+msgstr "Довжина"
+
+#: formres.src#RID_STR_XSD_MIN_LENGTH.string.text
+msgid "Length (at least)"
+msgstr "Довжина (принаймні)"
+
+#: formres.src#RID_STR_XSD_MAX_LENGTH.string.text
+msgid "Length (at most)"
+msgstr "Довжина (не більше)"
+
+#: formres.src#RID_STR_XSD_TOTAL_DIGITS.string.text
+msgid "Digits (total)"
+msgstr "Розрядів (всього)"
+
+#: formres.src#RID_STR_XSD_FRACTION_DIGITS.string.text
+msgid "Digits (fraction)"
+msgstr "Розрядів (дробова частина)"
+
+#: formres.src#RID_STR_XSD_MAX_INCLUSIVE.string.text
+msgid "Max. (inclusive)"
+msgstr "Максимум (включно)"
+
+#: formres.src#RID_STR_XSD_MAX_EXCLUSIVE.string.text
+msgid "Max. (exclusive)"
+msgstr "Максимум (не включно)"
+
+#: formres.src#RID_STR_XSD_MIN_INCLUSIVE.string.text
+msgid "Min. (inclusive)"
+msgstr "Мінімум (включно)"
+
+#: formres.src#RID_STR_XSD_MIN_EXCLUSIVE.string.text
+msgid "Min. (exclusive)"
+msgstr "Мінімум (не включно)"
+
+#: formres.src#RID_STR_SUBMISSION_ID.string.text
+msgid "Submission"
+msgstr "Представлення"
+
+#: formres.src#RID_STR_BINDING_UI_NAME.string.text
+msgid "Binding"
+msgstr "Зв'язування"
+
+#: formres.src#RID_STR_SELECTION_TYPE.string.text
+msgid "Selection type"
+msgstr "Тип виділення"
+
+#: formres.src#RID_STR_ROOT_DISPLAYED.string.text
+msgid "Root displayed"
+msgstr "Відображати корінь"
+
+#: formres.src#RID_STR_SHOWS_HANDLES.string.text
+msgid "Show handles"
+msgstr "Показувати позначки"
+
+#: formres.src#RID_STR_SHOWS_ROOT_HANDLES.string.text
+msgid "Show root handles"
+msgstr "Показувати кореневі позначки"
+
+#: formres.src#RID_STR_EDITABLE.string.text
+msgid "Editable"
+msgstr "Редагований"
+
+#: formres.src#RID_STR_INVOKES_STOP_NOT_EDITING.string.text
+msgid "Invokes stop node editing"
+msgstr "Викликає редагування кінцевих вузлів"
+
+#: formres.src#RID_STR_DECORATION.string.text
+msgid "With title bar"
+msgstr "Із заголовком"
+
+#: formres.src#RID_STR_NOLABEL.string.text
+msgid "No Label"
+msgstr "Без позначки"
+
+#: formres.src#RID_RSC_ENUM_SCALE_MODE.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SCALE_MODE.1.string.text"
+msgid "No"
+msgstr "Ні"
+
+#: formres.src#RID_RSC_ENUM_SCALE_MODE.2.string.text
+msgid "Keep Ratio"
+msgstr ""
+
+#: formres.src#RID_RSC_ENUM_SCALE_MODE.3.string.text
+msgid "Fit to Size"
+msgstr ""
+
+#: formres.src#RID_STR_INPUT_REQUIRED.string.text
+msgid "Input required"
+msgstr "Потрібен ввід"
+
+#: formres.src#RID_STR_WRITING_MODE.string.text
+msgid "Text direction"
+msgstr ""
+
+#: formres.src#RID_RSC_ENUM_WRITING_MODE.1.string.text
+msgid "Left-to-right"
+msgstr "Зліва направо"
+
+#: formres.src#RID_RSC_ENUM_WRITING_MODE.2.string.text
+msgid "Right-to-left"
+msgstr "Справа наліво"
+
+#: formres.src#RID_RSC_ENUM_WRITING_MODE.3.string.text
+msgid "Use superordinate object settings"
+msgstr "Успадковувати від батьківського об'єкту"
+
+#: formres.src#RID_RSC_ENUM_WHEEL_BEHAVIOR.1.string.text
+msgid "Never"
+msgstr ""
+
+#: formres.src#RID_RSC_ENUM_WHEEL_BEHAVIOR.2.string.text
+msgid "When focused"
+msgstr ""
+
+#: formres.src#RID_RSC_ENUM_WHEEL_BEHAVIOR.3.string.text
+msgid "Always"
+msgstr "Завжди"
+
+#: formres.src#RID_STR_ANCHOR_TYPE.string.text
+msgid "Anchor"
+msgstr "Прив'язка"
+
+#: formres.src#RID_RSC_ENUM_TEXT_ANCHOR_TYPE.1.string.text
+msgid "To Paragraph"
+msgstr "Абзац"
+
+#: formres.src#RID_RSC_ENUM_TEXT_ANCHOR_TYPE.2.string.text
+msgid "As Character"
+msgstr "Символ"
+
+#: 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 ""
+
+#: formres.src#RID_RSC_ENUM_TEXT_ANCHOR_TYPE.4.string.text
+msgid "To Frame"
+msgstr ""
+
+#: formres.src#RID_RSC_ENUM_TEXT_ANCHOR_TYPE.5.string.text
+msgid "To Character"
+msgstr "Символ"
+
+#: 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 ""
+
+#: formres.src#RID_RSC_ENUM_SHEET_ANCHOR_TYPE.2.string.text
+msgid "To Cell"
+msgstr ""
+
+#. 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 "Звичайний"
+
+#. 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 "Жирний курсив"
+
+#. 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 "Курсив"
+
+#. 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 "Жирний"
+
+#: formres.src#RID_STR_FONT_DEFAULT.string.text
+msgid "(Default)"
+msgstr "Типово"
diff --git a/source/uk/extensions/source/scanner.po b/source/uk/extensions/source/scanner.po
new file mode 100644
index 00000000000..3eb72697d26
--- /dev/null
+++ b/source/uk/extensions/source/scanner.po
@@ -0,0 +1,132 @@
+#. 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-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "Встановити"
+
+#: grid.src#GRID_DIALOG.RESET_TYPE_LINEAR_ASCENDING.string.text
+msgid "Linear ascending"
+msgstr "Лінійне збільшення"
+
+#: grid.src#GRID_DIALOG.RESET_TYPE_LINEAR_DESCENDING.string.text
+msgid "Linear descending"
+msgstr "Лінійне зменшення"
+
+#: grid.src#GRID_DIALOG.RESET_TYPE_RESET.string.text
+msgid "Original values"
+msgstr "Оригінальні значення"
+
+#: grid.src#GRID_DIALOG.RESET_TYPE_EXPONENTIAL.string.text
+msgid "Exponential increasing"
+msgstr "Експонентне збільшення"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_DEVICEINFO_BTN.pushbutton.text
+msgid ""
+"About\n"
+" Dev~ice"
+msgstr "~Пристрій"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_PREVIEW_BTN.pushbutton.text
+msgid ""
+"Create\n"
+"Preview"
+msgstr ""
+"Створити\n"
+"попер.перегляд"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_BTN.pushbutton.text
+msgid "Scan"
+msgstr "Сканувати"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_PREVIEW_BOX.fixedline.text
+msgid "Preview"
+msgstr "Попередній перегляд"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCANAREA_BOX.fixedline.text
+msgid "Scan area"
+msgstr "Область сканування"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_LEFT_TXT.fixedtext.text
+msgid "Left:"
+msgstr "Ліворуч:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_TOP_TXT.fixedtext.text
+msgid "Top:"
+msgstr "Згори:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_RIGHT_TXT.fixedtext.text
+msgid "Right:"
+msgstr "Праворуч:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_BOTTOM_TXT.fixedtext.text
+msgid "Bottom:"
+msgstr "Знизу:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_DEVICE_BOX_TXT.fixedtext.text
+msgid "Device used:"
+msgstr "Використовується пристрій:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_RESOLUTION_TXT.fixedtext.text
+msgid "Resolution [~DPI]"
+msgstr "Роздільна здатність [~DPI]"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_ADVANCED_TXT.fixedtext.text
+msgid "Show advanced options"
+msgstr "Показати розширені параметри"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_OPTION_TXT.fixedtext.text
+msgid "Options:"
+msgstr "Параметри:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_NUMERIC_VECTOR_TXT.fixedtext.text
+msgid "Vector element"
+msgstr "Векторний елемент"
+
+#: 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 "Встановити"
+
+#: sanedlg.src#RID_SANE_DIALOG.modaldialog.text
+msgid "Scanner"
+msgstr "Сканер"
+
+#: sanedlg.src#RID_SANE_DEVICEINFO_TXT.string.text
+msgid ""
+"Device: %s\n"
+"Vendor: %s\n"
+"Model: %s\n"
+"Type: %s"
+msgstr ""
+"Пристрій: %s\n"
+"Виробник: %s\n"
+"Модель: %s\n"
+"Тип: %s"
+
+#: sanedlg.src#RID_SANE_SCANERROR_TXT.string.text
+msgid "An error occurred while scanning."
+msgstr "Помилка при скануванні."
+
+#: 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 "Пристрій не надає можливості попереднього перегляду. Натомість для попереднього перегляду використовується звичайне сканування, що займає значно більше часу."
+
+#: sanedlg.src#RID_SANE_NOSANELIB_TXT.string.text
+msgid "The SANE interface could not be initialized. Scanning is not possible."
+msgstr "Не вдається ініціалізувати інтерфейс SANE. Сканування неможливе."
diff --git a/source/uk/extensions/source/update/check.po b/source/uk/extensions/source/update/check.po
new file mode 100644
index 00000000000..f857e282812
--- /dev/null
+++ b/source/uk/extensions/source/update/check.po
@@ -0,0 +1,242 @@
+#. 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-05-15 15:21+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: updatehdl.src#RID_UPDATE_STR_CHECKING.string.text
+msgid "Checking..."
+msgstr "Перевірка..."
+
+#: updatehdl.src#RID_UPDATE_STR_CHECKING_ERR.string.text
+msgid "Checking for an update failed."
+msgstr "Невдала перевірка оновлень."
+
+#: updatehdl.src#RID_UPDATE_STR_NO_UPD_FOUND.string.text
+msgid "%PRODUCTNAME %PRODUCTVERSION is up to date."
+msgstr "%PRODUCTNAME %PRODUCTVERSION останньої версії."
+
+#: updatehdl.src#RID_UPDATE_STR_UPD_FOUND.string.text
+#, fuzzy
+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 доступно для завантаження.\n"
+"\n"
+"Встановлена версія %PRODUCTNAME %PRODUCTVERSION.\n"
+"\n"
+"Примітка: Перш ніж завантажувати оновлення перевірте, що у вас є права для встановлення.\n"
+"Можливо знадобиться адміністраторський пароль."
+
+#: updatehdl.src#RID_UPDATE_STR_DLG_TITLE.string.text
+msgid "Check for Updates"
+msgstr "Перевірити наявність оновлень"
+
+#: updatehdl.src#RID_UPDATE_STR_DOWNLOAD_PAUSE.string.text
+msgid "Downloading %PRODUCTNAME %NEXTVERSION paused at..."
+msgstr "Завантаження %PRODUCTNAME %NEXTVERSION призупинено на..."
+
+#: updatehdl.src#RID_UPDATE_STR_DOWNLOAD_ERR.string.text
+msgid "Downloading %PRODUCTNAME %NEXTVERSION stalled at"
+msgstr "Завантаження %PRODUCTNAME %NEXTVERSION призупинено на"
+
+#: 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 ""
+"Адреса завантаження: %DOWNLOAD_PATH.\n"
+"\n"
+"Ви можете змінити адресу завантаження у Сервіс – Параметри... - %PRODUCTNAME – Перевірка оновлень."
+
+#: updatehdl.src#RID_UPDATE_STR_DOWNLOAD_DESCR.string.text
+msgid "%FILE_NAME has been downloaded to %DOWNLOAD_PATH."
+msgstr "%FILE_NAME було завантажено до %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 ""
+"Автоматичне завантаження оновлень поки недоступне.\n"
+"\n"
+"Натисніть «Завантажити...» для завантаження %PRODUCTNAME %NEXTVERSION вручну з веб-сайту."
+
+#: updatehdl.src#RID_UPDATE_STR_DOWNLOADING.string.text
+msgid "Downloading %PRODUCTNAME %NEXTVERSION..."
+msgstr "Завантаження %PRODUCTNAME %NEXTVERSION..."
+
+#: updatehdl.src#RID_UPDATE_STR_READY_INSTALL.string.text
+msgid "Download of %PRODUCTNAME %NEXTVERSION completed. Ready for installation."
+msgstr "Завантаження %PRODUCTNAME %NEXTVERSION завершено та готове до встановлення."
+
+#: 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 "Ви справді хочете скасувати завантаження?"
+
+#: 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 "Для встановлення оновлень потрібно закрити %PRODUCTNAME %PRODUCTVERSION. Встановити розширення зараз?"
+
+#: updatehdl.src#RID_UPDATE_STR_INSTALL_NOW.string.text
+msgid "Install ~now"
+msgstr "Встановити ~зараз"
+
+#: updatehdl.src#RID_UPDATE_STR_INSTALL_LATER.string.text
+msgid "Install ~later"
+msgstr "Встановити п~ізніше"
+
+#: 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 "Неможливо запустити програму встановлення, запустіть %FILE_NAME у каталозі %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 "Файл з такою назвою вже існує. Перезаписати існуючий файл?"
+
+#: 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 ""
+
+#: updatehdl.src#RID_UPDATE_STR_RELOAD_RELOAD.string.text
+msgid "Reload File"
+msgstr ""
+
+#: updatehdl.src#RID_UPDATE_STR_RELOAD_CONTINUE.string.text
+#, fuzzy
+msgid "Continue"
+msgstr ""
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Далі\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Продовжити"
+
+#: updatehdl.src#RID_UPDATE_STR_PERCENT.string.text
+msgid "%PERCENT%"
+msgstr "%PERCENT%"
+
+#: updatehdl.src#RID_UPDATE_FT_STATUS.string.text
+msgid "Status"
+msgstr "Статус"
+
+#: updatehdl.src#RID_UPDATE_FT_DESCRIPTION.string.text
+msgid "Description"
+msgstr "Опис"
+
+#: updatehdl.src#RID_UPDATE_BTN_CLOSE.string.text
+msgid "Close"
+msgstr "Закрити"
+
+#: updatehdl.src#RID_UPDATE_BTN_DOWNLOAD.string.text
+msgid "~Download"
+msgstr "~Завантажити"
+
+#: updatehdl.src#RID_UPDATE_BTN_INSTALL.string.text
+msgid "~Install"
+msgstr "~Встановити"
+
+#: updatehdl.src#RID_UPDATE_BTN_PAUSE.string.text
+msgid "~Pause"
+msgstr "Приз~упинити"
+
+#: updatehdl.src#RID_UPDATE_BTN_RESUME.string.text
+msgid "~Resume"
+msgstr "Пр~одовжити"
+
+#: updatehdl.src#RID_UPDATE_BTN_CANCEL.string.text
+msgid "Cancel"
+msgstr "Скасувати"
+
+#: 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 "Доступні оновлення %PRODUCTNAME"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_UPDATE_AVAIL.string.text
+#, fuzzy
+msgid "Click the icon to start the download."
+msgstr "Клацніть тут для початку завантаження."
+
+#: 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 "Доступні оновлення %PRODUCTNAME"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_UPDATE_NO_DOWN.string.text
+#, fuzzy
+msgctxt "updatehdl.src#RID_UPDATE_BUBBLE_UPDATE_NO_DOWN.string.text"
+msgid "Click the icon for more information."
+msgstr "Клацніть тут для подробиць."
+
+#: 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 "Доступні оновлення %PRODUCTNAME"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_AUTO_START.string.text
+msgid "Download of update begins."
+msgstr "Початок завантаження оновлень"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_DOWNLOADING.string.text
+msgid "Download of update in progress"
+msgstr "Завантаження оновлень"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_DOWNLOAD_PAUSED.string.text
+msgid "Download of update paused"
+msgstr "Завантаження оновлень призупинено"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_DOWNLOAD_PAUSED.string.text
+#, fuzzy
+msgid "Click the icon to resume."
+msgstr "Клацніть тут для продовження."
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_ERROR_DOWNLOADING.string.text
+msgid "Download of update stalled"
+msgstr "Завантаження оновлень зупинено"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_ERROR_DOWNLOADING.string.text
+#, fuzzy
+msgctxt "updatehdl.src#RID_UPDATE_BUBBLE_ERROR_DOWNLOADING.string.text"
+msgid "Click the icon for more information."
+msgstr "Клацніть тут для подробиць."
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_DOWNLOAD_AVAIL.string.text
+msgid "Download of update completed"
+msgstr "Завантаження оновлень завершено"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_DOWNLOAD_AVAIL.string.text
+#, fuzzy
+msgid "Click the icon to start the installation."
+msgstr "Клацніть тут для запуску встановлення."
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_EXT_UPD_AVAIL.string.text
+msgid "Updates for extensions available"
+msgstr "Доступні оновлення розширень"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_EXT_UPD_AVAIL.string.text
+#, fuzzy
+msgctxt "updatehdl.src#RID_UPDATE_BUBBLE_EXT_UPD_AVAIL.string.text"
+msgid "Click the icon for more information."
+msgstr "Клацніть тут для подробиць."
diff --git a/source/uk/extensions/source/update/check/org/openoffice/Office.po b/source/uk/extensions/source/update/check/org/openoffice/Office.po
new file mode 100644
index 00000000000..1ebc26d4c59
--- /dev/null
+++ b/source/uk/extensions/source/update/check/org/openoffice/Office.po
@@ -0,0 +1,19 @@
+#. 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: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\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 ""
diff --git a/source/uk/filter/source/config/fragments/filters.po b/source/uk/filter/source/config/fragments/filters.po
new file mode 100644
index 00000000000..029054a89b3
--- /dev/null
+++ b/source/uk/filter/source/config/fragments/filters.po
@@ -0,0 +1,394 @@
+#. 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-05-15 15:21+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
+
+#: calc_OOXML_ui.xcu#Calc_Office_Open_XML.UIName.value.text
+msgid "Office Open XML Spreadsheet"
+msgstr "Ел. таблиця Office Open XML"
+
+#: StarWriter_5_0_Vorlage_Template_ui.xcu#StarWriter_5.0_Vorlage/Template.UIName.value.text
+msgid "StarWriter 5.0 Template"
+msgstr "Шаблон StarWriter 5.0"
+
+#: calc8_template_ui.xcu#calc8_template.UIName.value.text
+msgid "ODF Spreadsheet Template"
+msgstr "Шаблон електронної таблиці ODF"
+
+#: impress8_draw_ui.xcu#impress8_draw.UIName.value.text
+msgid "ODF Drawing (Impress)"
+msgstr "Малюнок 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 "Шаблон HTML %productname% %formatversion%"
+
+#: StarOffice_XML__Base__ui.xcu#StarOffice_XML__Base_.UIName.value.text
+msgid "ODF Database"
+msgstr "База даних ODF"
+
+#: writer8_ui.xcu#writer8.UIName.value.text
+msgctxt "writer8_ui.xcu#writer8.UIName.value.text"
+msgid "ODF Text Document"
+msgstr "Текстовий документ ODF"
+
+#: StarDraw_3_0_Vorlage_ui.xcu#StarDraw_3.0_Vorlage.UIName.value.text
+msgid "StarDraw 3.0 Template"
+msgstr "Шаблон StarDraw 3.0"
+
+#: Text__encoded___StarWriter_GlobalDocument__ui.xcu#Text__encoded___StarWriter/GlobalDocument_.UIName.value.text
+msgid "Text Encoded (Master Document)"
+msgstr ""
+
+#: calc_MS_Excel_2007_Binary_ui.xcu#Calc_MS_Excel_2007_Binary.UIName.value.text
+msgid "Microsoft Excel 2007 Binary"
+msgstr "Двійковий файл Microsoft Excel 2007"
+
+#: impress_OOXML_ui.xcu#Impress_Office_Open_XML.UIName.value.text
+msgid "Office Open XML Presentation"
+msgstr "Презентація Office Open XML"
+
+#: StarOffice_XML__Math__ui.xcu#StarOffice_XML__Math_.UIName.value.text
+msgid "%productname% %formatversion% Formula"
+msgstr "Формула %productname% %formatversion%"
+
+#: MS_Word_2007_XML_ui.xcu#MS_Word_2007_XML.UIName.value.text
+#, fuzzy
+msgid "Microsoft Word 2007/2010 XML"
+msgstr "Microsoft Word 2007 XML"
+
+#: StarWriter_3_0_Vorlage_Template_ui.xcu#StarWriter_3.0_Vorlage/Template.UIName.value.text
+msgid "StarWriter 3.0 Template"
+msgstr "Шаблон StarWriter 3.0"
+
+#: draw8_ui.xcu#draw8.UIName.value.text
+msgid "ODF Drawing"
+msgstr "Малюнок ODF"
+
+#: writer_web_StarOffice_XML_Writer_ui.xcu#writer_web_StarOffice_XML_Writer.UIName.value.text
+#, fuzzy
+msgid "%productname% %formatversion% Text Document (Writer/Web)"
+msgstr "Шаблон текстового документу %productname% %formatversion%"
+
+#: StarOffice_XML__Calc__ui.xcu#StarOffice_XML__Calc_.UIName.value.text
+msgid "%productname% %formatversion% Spreadsheet"
+msgstr "Електронна таблиця %productname% %formatversion%"
+
+#: draw8_template_ui.xcu#draw8_template.UIName.value.text
+msgid "ODF Drawing Template"
+msgstr "Шаблон малюнка 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 "Шаблон 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 "Шаблон текстового документу %productname% %formatversion%"
+
+#: impress_StarOffice_XML_Impress_Template_ui.xcu#impress_StarOffice_XML_Impress_Template.UIName.value.text
+msgid "%productname% %formatversion% Presentation Template"
+msgstr "Шаблон презентації %productname% %formatversion%"
+
+#: writerweb8_writer_template_ui.xcu#writerweb8_writer_template.UIName.value.text
+msgid "HTML Document Template"
+msgstr "Шаблон документу HTML"
+
+#: impress_MS_PowerPoint_2007_XML_Template_ui.xcu#Impress_MS_PowerPoint_2007_XML_Template.UIName.value.text
+#, fuzzy
+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 "Шаблон Microsoft PowerPoint 2007 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 "Шаблон 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 "Складений документ %productname% %formatversion%"
+
+#: StarWriter_5_0_GlobalDocument_ui.xcu#StarWriter_5.0/GlobalDocument.UIName.value.text
+msgid "StarWriter 5.0 Master Document"
+msgstr "Складений документ StarWriter 5.0"
+
+#: MS_Excel_97_Vorlage_Template_ui.xcu#MS_Excel_97_Vorlage/Template.UIName.value.text
+#, fuzzy
+msgid "Microsoft Excel 97/2000/XP/2003 Template"
+msgstr "Шаблон Microsoft Excel 97/2000/XP"
+
+#: impress_MS_PowerPoint_2007_XML_AutoPlay.xcu#Impress_MS_PowerPoint_2007_XML_AutoPlay.UIName.value.text
+#, fuzzy
+msgid "Microsoft PowerPoint 2007/2010 XML AutoPlay"
+msgstr "Шаблон Microsoft PowerPoint 2007 XML"
+
+#: draw_html_Export_ui.xcu#draw_html_Export.UIName.value.text
+msgid "HTML Document (Draw)"
+msgstr ""
+
+#: MS_Word_2007_XML_Template.xcu#MS_Word_2007_XML_Template.UIName.value.text
+#, fuzzy
+msgctxt "MS_Word_2007_XML_Template.xcu#MS_Word_2007_XML_Template.UIName.value.text"
+msgid "Microsoft Word 2007/2010 XML Template"
+msgstr "Шаблон Microsoft Excel 2007 XML"
+
+#: StarCalc_5_0_Vorlage_Template_ui.xcu#StarCalc_5.0_Vorlage/Template.UIName.value.text
+msgid "StarCalc 5.0 Template"
+msgstr "Шаблон StarCalc 5.0"
+
+#: calc8_ui.xcu#calc8.UIName.value.text
+msgid "ODF Spreadsheet"
+msgstr "Електронна таблиця ODF"
+
+#: MS_Word_97_Vorlage_ui.xcu#MS_Word_97_Vorlage.UIName.value.text
+#, fuzzy
+msgid "Microsoft Word 97/2000/XP/2003 Template"
+msgstr "Шаблон Microsoft Word 97/2000/XP"
+
+#: StarCalc_4_0_Vorlage_Template_ui.xcu#StarCalc_4.0_Vorlage/Template.UIName.value.text
+msgid "StarCalc 4.0 Template"
+msgstr "Шаблон StarCalc 4.0"
+
+#: writerweb8_writer_ui.xcu#writerweb8_writer.UIName.value.text
+msgid "%productname% Text (Writer/Web)"
+msgstr ""
+
+#: impress8_template_ui.xcu#impress8_template.UIName.value.text
+msgid "ODF Presentation Template"
+msgstr "Шаблон презентації ODF"
+
+#: Text_ui.xcu#Text.UIName.value.text
+msgid "Text"
+msgstr "Текст"
+
+#: 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 "Текстовий документ %productname% %formatversion%"
+
+#: StarDraw_5_0_Vorlage_ui.xcu#StarDraw_5.0_Vorlage.UIName.value.text
+msgid "StarDraw 5.0 Template"
+msgstr "Шаблон StarDraw 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 "Текстовий документ 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 "Текстовий документ %productname% %formatversion%"
+
+#: impress_MS_PowerPoint_2007_XML_ui.xcu#Impress_MS_PowerPoint_2007_XML.UIName.value.text
+#, fuzzy
+msgid "Microsoft PowerPoint 2007/2010 XML"
+msgstr "Microsoft PowerPoint 2007 XML"
+
+#: HTML_MasterDoc_ui.xcu#HTML_MasterDoc.UIName.value.text
+msgid "HTML Document (Master Document)"
+msgstr ""
+
+#: StarWriter_4_0_GlobalDocument_ui.xcu#StarWriter_4.0/GlobalDocument.UIName.value.text
+msgid "StarWriter 4.0 Master Document"
+msgstr "Складений документ 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 "Шаблон StarWriter/Web 4.0"
+
+#: StarImpress_5_0_Vorlage_ui.xcu#StarImpress_5.0_Vorlage.UIName.value.text
+msgid "StarImpress 5.0 Template"
+msgstr "Шаблон StarImpress 5.0"
+
+#: writer8_template_ui.xcu#writer8_template.UIName.value.text
+msgid "ODF Text Document Template"
+msgstr "Шаблон текстового документу ODF"
+
+#: OOXML_Text_Template_ui.xcu#Office_Open_XML_Text_Template.UIName.value.text
+msgid "Office Open XML Text Template"
+msgstr "Шаблон текстового документа Office Open XML"
+
+#: math8_ui.xcu#math8.UIName.value.text
+msgid "ODF Formula"
+msgstr "Формула ODF"
+
+#: calc_MS_Excel_2007_XML_ui.xcu#Calc_MS_Excel_2007_XML.UIName.value.text
+#, fuzzy
+msgid "Microsoft Excel 2007/2010 XML"
+msgstr "Microsoft Excel 2007 XML"
+
+#: StarOffice_XML__Chart__ui.xcu#StarOffice_XML__Chart_.UIName.value.text
+msgid "%productname% %formatversion% Chart"
+msgstr "Діаграма %productname% %formatversion%"
+
+#: MS_Word_2007_XML_Template_ui.xcu#MS_Word_2007_XML_Template.UIName.value.text
+#, fuzzy
+msgctxt "MS_Word_2007_XML_Template_ui.xcu#MS_Word_2007_XML_Template.UIName.value.text"
+msgid "Microsoft Word 2007/2010 XML Template"
+msgstr "Шаблон Microsoft Excel 2007 XML"
+
+#: HTML__StarWriter__ui.xcu#HTML__StarWriter_.UIName.value.text
+msgid "HTML Document (Writer)"
+msgstr ""
+
+#: 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 "Електронна таблиця Unified Office Format"
+
+#: StarDraw_3_0_Vorlage__StarImpress__ui.xcu#StarDraw_3.0_Vorlage__StarImpress_.UIName.value.text
+msgid "StarDraw 3.0 Template (Impress)"
+msgstr ""
+
+#: StarImpress_4_0_Vorlage_ui.xcu#StarImpress_4.0_Vorlage.UIName.value.text
+msgid "StarImpress 4.0 Template"
+msgstr "Шаблон StarImpress 4.0"
+
+#: calc_OOXML_Template_ui.xcu#Calc_Office_Open_XML_Template.UIName.value.text
+msgid "Office Open XML Spreadsheet Template"
+msgstr "Шаблон ел.таблиці Office Open XML"
+
+#: calc_MS_Excel_2007_XML_Template_ui.xcu#Calc_MS_Excel_2007_XML_Template.UIName.value.text
+#, fuzzy
+msgid "Microsoft Excel 2007/2010 XML Template"
+msgstr "Шаблон Microsoft Excel 2007 XML"
+
+#: impress_MS_PowerPoint_2007_XML_Template.xcu#Impress_MS_PowerPoint_2007_XML_Template.UIName.value.text
+#, fuzzy
+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 "Шаблон Microsoft PowerPoint 2007 XML"
+
+#: HTML_ui.xcu#HTML.UIName.value.text
+msgid "HTML Document"
+msgstr "Документ HTML"
+
+#: impress8_ui.xcu#impress8.UIName.value.text
+msgid "ODF Presentation"
+msgstr "Презентація ODF"
+
+#: impress_OOXML_Template_ui.xcu#Impress_Office_Open_XML_Template.UIName.value.text
+msgid "Office Open XML Presentation Template"
+msgstr "Шаблон презентації Office Open XML"
+
+#: Text__StarWriter_Web__ui.xcu#Text__StarWriter/Web_.UIName.value.text
+msgid "Text (Writer/Web)"
+msgstr ""
+
+#: calc_HTML_WebQuery_ui.xcu#calc_HTML_WebQuery.UIName.value.text
+msgid "Web Page Query (Calc)"
+msgstr ""
+
+#: StarOffice_XML__Impress__ui.xcu#StarOffice_XML__Impress_.UIName.value.text
+msgid "%productname% %formatversion% Presentation"
+msgstr "Презентація %productname% %formatversion%"
+
+#: MS_PowerPoint_97_Vorlage_ui.xcu#MS_PowerPoint_97_Vorlage.UIName.value.text
+#, fuzzy
+msgid "Microsoft PowerPoint 97/2000/XP/2003 Template"
+msgstr "Шаблон Microsoft PowerPoint 97/2000/XP"
+
+#: Text__encoded__ui.xcu#Text__encoded_.UIName.value.text
+msgid "Text Encoded"
+msgstr "Кодований текст"
+
+#: writerglobal8_ui.xcu#writerglobal8.UIName.value.text
+msgid "ODF Master Document"
+msgstr "Складений документ ODF"
+
+#: UOF_text_ui.xcu#UOF_text.UIName.value.text
+msgid "Unified Office Format text"
+msgstr "Текст Unified Office Format"
+
+#: Text__encoded___StarWriter_Web__ui.xcu#Text__encoded___StarWriter/Web_.UIName.value.text
+msgid "Text Encoded (Writer/Web)"
+msgstr ""
+
+#: chart8_ui.xcu#chart8.UIName.value.text
+msgid "ODF Chart"
+msgstr "Діаграма 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 "Шаблон StarWriter/Web 5.0"
+
+#: OOXML_Text_ui.xcu#Office_Open_XML_Text.UIName.value.text
+msgid "Office Open XML Text"
+msgstr "Текстовий документ Office Open XML"
+
+#: draw_StarOffice_XML_Draw_Template_ui.xcu#draw_StarOffice_XML_Draw_Template.UIName.value.text
+msgid "%productname% %formatversion% Drawing Template"
+msgstr "Шаблон малюнку %productname% %formatversion%"
+
+#: StarOffice_XML__Draw__ui.xcu#StarOffice_XML__Draw_.UIName.value.text
+msgid "%productname% %formatversion% Drawing"
+msgstr "Рисунок %productname% %formatversion%"
+
+#: impress_StarOffice_XML_Draw_ui.xcu#impress_StarOffice_XML_Draw.UIName.value.text
+#, fuzzy
+msgid "%productname% %formatversion% Drawing (Impress)"
+msgstr "Шаблон малюнку %productname% %formatversion%"
+
+#: StarCalc_3_0_Vorlage_Template_ui.xcu#StarCalc_3.0_Vorlage/Template.UIName.value.text
+msgid "StarCalc 3.0 Template"
+msgstr "Шаблон StarCalc 3.0"
+
+#: MS_Word_95_Vorlage_ui.xcu#MS_Word_95_Vorlage.UIName.value.text
+msgid "Microsoft Word 95 Template"
+msgstr "Шаблон Microsoft Word 95"
+
+#: MS_Excel_95_Vorlage_Template_ui.xcu#MS_Excel_95_Vorlage/Template.UIName.value.text
+msgid "Microsoft Excel 95 Template"
+msgstr "Шаблон Microsoft Excel 95"
+
+#: calc_StarOffice_XML_Calc_Template_ui.xcu#calc_StarOffice_XML_Calc_Template.UIName.value.text
+msgid "%productname% %formatversion% Spreadsheet Template"
+msgstr "Шаблон електронної таблиці %productname% %formatversion%"
+
+#: UOF_presentation_ui.xcu#UOF_presentation.UIName.value.text
+msgid "Unified Office Format presentation"
+msgstr "Презентація Unified Office Format"
+
+#: impress_html_Export_ui.xcu#impress_html_Export.UIName.value.text
+msgid "HTML Document (Impress)"
+msgstr ""
+
+#: StarImpress_5_0__packed__ui.xcu#StarImpress_5.0__packed_.UIName.value.text
+msgid "StarImpress 5.0 Packed"
+msgstr "StarImpress 5.0 (стиснений)"
+
+#: StarWriter_4_0_Vorlage_Template_ui.xcu#StarWriter_4.0_Vorlage/Template.UIName.value.text
+msgid "StarWriter 4.0 Template"
+msgstr "Шаблон StarWriter 4.0"
+
+#: Text___txt___csv__StarCalc__ui.xcu#Text___txt___csv__StarCalc_.UIName.value.text
+msgid "Text CSV"
+msgstr "Текст CSV"
+
+#: HTML__StarCalc__ui.xcu#HTML__StarCalc_.UIName.value.text
+msgid "HTML Document (Calc)"
+msgstr ""
diff --git a/source/uk/filter/source/config/fragments/internalgraphicfilters.po b/source/uk/filter/source/config/fragments/internalgraphicfilters.po
new file mode 100644
index 00000000000..59a9fb84ef1
--- /dev/null
+++ b/source/uk/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: 2011-04-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\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 - X PixMap"
+
+#: wmf_Import.xcu#wmf_Import.UIName.value.text
+msgctxt "wmf_Import.xcu#wmf_Import.UIName.value.text"
+msgid "WMF - Windows Metafile"
+msgstr "WMF - Windows Metafile"
+
+#: eps_Import.xcu#eps_Import.UIName.value.text
+msgctxt "eps_Import.xcu#eps_Import.UIName.value.text"
+msgid "EPS - Encapsulated PostScript"
+msgstr "EPS - Encapsulated PostScript"
+
+#: 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 - OS/2 Metafile"
+
+#: bmp_Import.xcu#bmp_Import.UIName.value.text
+msgctxt "bmp_Import.xcu#bmp_Import.UIName.value.text"
+msgid "BMP - Windows Bitmap"
+msgstr "BMP - Windows Bitmap"
+
+#: emf_Import.xcu#emf_Import.UIName.value.text
+msgctxt "emf_Import.xcu#emf_Import.UIName.value.text"
+msgid "EMF - Enhanced Metafile"
+msgstr "EMF - Enhanced Metafile"
+
+#: ras_Import.xcu#ras_Import.UIName.value.text
+msgctxt "ras_Import.xcu#ras_Import.UIName.value.text"
+msgid "RAS - Sun Raster Image"
+msgstr "RAS - Sun Raster Image"
+
+#: dxf_Import.xcu#dxf_Import.UIName.value.text
+msgid "DXF - AutoCAD Interchange Format"
+msgstr "DXF - AutoCAD Interchange Format"
+
+#: pcd_Import_Base4.xcu#pcd_Import_Base4.UIName.value.text
+msgid "PCD - Kodak Photo CD (384x256)"
+msgstr "PCD - Kodak Photo CD (384x256)"
+
+#: ppm_Export.xcu#ppm_Export.UIName.value.text
+msgctxt "ppm_Export.xcu#ppm_Export.UIName.value.text"
+msgid "PPM - Portable Pixelmap"
+msgstr "PPM - Portable Pixelmap"
+
+#: eps_Export.xcu#eps_Export.UIName.value.text
+msgctxt "eps_Export.xcu#eps_Export.UIName.value.text"
+msgid "EPS - Encapsulated PostScript"
+msgstr "EPS - Encapsulated PostScript"
+
+#: pcx_Import.xcu#pcx_Import.UIName.value.text
+msgid "PCX - Zsoft Paintbrush"
+msgstr "PCX - Zsoft Paintbrush"
+
+#: svg_Export.xcu#svg_Export.UIName.value.text
+msgctxt "svg_Export.xcu#svg_Export.UIName.value.text"
+msgid "SVG - Scalable Vector Graphics"
+msgstr "SVG - Scalable Vector Graphics"
+
+#: png_Export.xcu#png_Export.UIName.value.text
+msgctxt "png_Export.xcu#png_Export.UIName.value.text"
+msgid "PNG - Portable Network Graphic"
+msgstr "PNG - Portable Network Graphic"
+
+#: pcd_Import_Base16.xcu#pcd_Import_Base16.UIName.value.text
+msgid "PCD - Kodak Photo CD (192x128)"
+msgstr "PCD - Kodak Photo CD (192x128)"
+
+#: pcd_Import_Base.xcu#pcd_Import_Base.UIName.value.text
+msgid "PCD - Kodak Photo CD (768x512)"
+msgstr "PCD - Kodak Photo CD (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 - Tagged Image File Format"
+
+#: svm_Import.xcu#svm_Import.UIName.value.text
+msgctxt "svm_Import.xcu#svm_Import.UIName.value.text"
+msgid "SVM - StarView Metafile"
+msgstr "SVM - StarView Metafile"
+
+#: 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 - Tagged Image File Format"
+
+#: pbm_Import.xcu#pbm_Import.UIName.value.text
+msgctxt "pbm_Import.xcu#pbm_Import.UIName.value.text"
+msgid "PBM - Portable Bitmap"
+msgstr "PBM - Portable Bitmap"
+
+#: png_Import.xcu#png_Import.UIName.value.text
+msgctxt "png_Import.xcu#png_Import.UIName.value.text"
+msgid "PNG - Portable Network Graphic"
+msgstr "PNG - Portable Network Graphic"
+
+#: xpm_Export.xcu#xpm_Export.UIName.value.text
+msgctxt "xpm_Export.xcu#xpm_Export.UIName.value.text"
+msgid "XPM - X PixMap"
+msgstr "XPM - X PixMap"
+
+#: pct_Export.xcu#pct_Export.UIName.value.text
+msgctxt "pct_Export.xcu#pct_Export.UIName.value.text"
+msgid "PCT - Mac Pict"
+msgstr "PCT - Mac Pict"
+
+#: wmf_Export.xcu#wmf_Export.UIName.value.text
+msgctxt "wmf_Export.xcu#wmf_Export.UIName.value.text"
+msgid "WMF - Windows Metafile"
+msgstr "WMF - Windows Metafile"
+
+#: svg_Import.xcu#svg_Import.UIName.value.text
+msgctxt "svg_Import.xcu#svg_Import.UIName.value.text"
+msgid "SVG - Scalable Vector Graphics"
+msgstr "SVG - Scalable Vector Graphics"
+
+#: 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 - Enhanced Metafile"
+
+#: met_Export.xcu#met_Export.UIName.value.text
+msgctxt "met_Export.xcu#met_Export.UIName.value.text"
+msgid "MET - OS/2 Metafile"
+msgstr "MET - OS/2 Metafile"
+
+#: 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 - Mac Pict"
+
+#: ppm_Import.xcu#ppm_Import.UIName.value.text
+msgctxt "ppm_Import.xcu#ppm_Import.UIName.value.text"
+msgid "PPM - Portable Pixelmap"
+msgstr "PPM - Portable Pixelmap"
+
+#: ras_Export.xcu#ras_Export.UIName.value.text
+msgctxt "ras_Export.xcu#ras_Export.UIName.value.text"
+msgid "RAS - Sun Raster Image"
+msgstr "RAS - Sun Raster Image"
+
+#: pgm_Export.xcu#pgm_Export.UIName.value.text
+msgctxt "pgm_Export.xcu#pgm_Export.UIName.value.text"
+msgid "PGM - Portable Graymap"
+msgstr "PGM - Portable Graymap"
+
+#: 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 - StarWriter Graphics Format"
+
+#: bmp_Export.xcu#bmp_Export.UIName.value.text
+msgctxt "bmp_Export.xcu#bmp_Export.UIName.value.text"
+msgid "BMP - Windows Bitmap"
+msgstr "BMP - Windows Bitmap"
+
+#: svm_Export.xcu#svm_Export.UIName.value.text
+msgctxt "svm_Export.xcu#svm_Export.UIName.value.text"
+msgid "SVM - StarView Metafile"
+msgstr "SVM - StarView Metafile"
+
+#: xbm_Import.xcu#xbm_Import.UIName.value.text
+msgid "XBM - X Bitmap"
+msgstr "XBM - X Bitmap"
+
+#: gif_Export.xcu#gif_Export.UIName.value.text
+msgctxt "gif_Export.xcu#gif_Export.UIName.value.text"
+msgid "GIF - Graphics Interchange Format"
+msgstr "GIF - Graphics Interchange Format"
+
+#: pgm_Import.xcu#pgm_Import.UIName.value.text
+msgctxt "pgm_Import.xcu#pgm_Import.UIName.value.text"
+msgid "PGM - Portable Graymap"
+msgstr "PGM - Portable Graymap"
+
+#: pbm_Export.xcu#pbm_Export.UIName.value.text
+msgctxt "pbm_Export.xcu#pbm_Export.UIName.value.text"
+msgid "PBM - Portable Bitmap"
+msgstr "PBM - Portable Bitmap"
+
+#: gif_Import.xcu#gif_Import.UIName.value.text
+msgctxt "gif_Import.xcu#gif_Import.UIName.value.text"
+msgid "GIF - Graphics Interchange Format"
+msgstr "GIF - Graphics Interchange Format"
diff --git a/source/uk/filter/source/config/fragments/types.po b/source/uk/filter/source/config/fragments/types.po
new file mode 100644
index 00000000000..04057fe5478
--- /dev/null
+++ b/source/uk/filter/source/config/fragments/types.po
@@ -0,0 +1,117 @@
+#. 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: 2011-11-26 05:17+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: StarBase.xcu#StarBase.UIName.value.text
+msgid "OpenDocument Database"
+msgstr "База даних OpenDocument"
+
+#: MS_PowerPoint_2007_XML_AutoPlay.xcu#MS_PowerPoint_2007_XML_AutoPlay.UIName.value.text
+#, fuzzy
+msgctxt "MS_PowerPoint_2007_XML_AutoPlay.xcu#MS_PowerPoint_2007_XML_AutoPlay.UIName.value.text"
+msgid "Microsoft PowerPoint 2007/2010 XML"
+msgstr "Microsoft Word 2003 XML"
+
+#: MS_Excel_2007_XML_Template.xcu#MS_Excel_2007_XML_Template.UIName.value.text
+#, fuzzy
+msgid "Microsoft Excel 2007/2010 XML Template"
+msgstr "Microsoft Excel 2003 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 "Складений документ Writer 8"
+
+#: MS_Excel_2007_XML.xcu#MS_Excel_2007_XML.UIName.value.text
+#, fuzzy
+msgid "Microsoft Excel 2007/2010 XML"
+msgstr "Microsoft Excel 2003 XML"
+
+#: writer_MS_Word_2007_XML_Template.xcu#writer_MS_Word_2007_Template.UIName.value.text
+#, fuzzy
+msgid "Microsoft Word 2007/2010 XML Template"
+msgstr "Microsoft Word 2003 XML"
+
+#: MS_PowerPoint_2007_XML_Template.xcu#MS_PowerPoint_2007_XML_Template.UIName.value.text
+#, fuzzy
+msgid "Microsoft PowerPoint 2007/2010 XML Template"
+msgstr "Microsoft Word 2003 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
+#, fuzzy
+msgid "Microsoft Word 2007/2010 XML"
+msgstr "Microsoft Word 2003 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 "Шаблон Writer/Web 8"
+
+#: impress8_template.xcu#impress8_template.UIName.value.text
+msgid "Impress 8 Template"
+msgstr "Шаблон 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 "Шаблон 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 "Шаблон Writer 8"
+
+#: MS_Excel_2007_Binary.xcu#MS_Excel_2007_Binary.UIName.value.text
+msgid "Microsoft Excel 2007 Binary"
+msgstr "Двійковий файл Microsoft Excel 2007"
+
+#: 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 "Шаблон Calc 8"
+
+#: MS_PowerPoint_2007_XML.xcu#MS_PowerPoint_2007_XML.UIName.value.text
+#, fuzzy
+msgctxt "MS_PowerPoint_2007_XML.xcu#MS_PowerPoint_2007_XML.UIName.value.text"
+msgid "Microsoft PowerPoint 2007/2010 XML"
+msgstr "Microsoft Word 2003 XML"
diff --git a/source/uk/filter/source/flash.po b/source/uk/filter/source/flash.po
new file mode 100644
index 00000000000..88b12733efb
--- /dev/null
+++ b/source/uk/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-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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: низка якість\n"
+"100: висока якість"
+
+#: impswfdialog.src#DLG_OPTIONS.modaldialog.text
+msgid "Macromedia Flash (SWF) Options"
+msgstr "Параметри Macromedia Flash (SWF)"
diff --git a/source/uk/filter/source/graphicfilter/eps.po b/source/uk/filter/source/graphicfilter/eps.po
new file mode 100644
index 00000000000..baa7d614439
--- /dev/null
+++ b/source/uk/filter/source/graphicfilter/eps.po
@@ -0,0 +1,22 @@
+#. 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-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
diff --git a/source/uk/filter/source/pdf.po b/source/uk/filter/source/pdf.po
new file mode 100644
index 00000000000..751b39cd641
--- /dev/null
+++ b/source/uk/filter/source/pdf.po
@@ -0,0 +1,494 @@
+#. 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: 2011-04-11 23:35+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: pdf.src#PDF_PROGRESS_BAR.string.text
+msgid "Export as PDF"
+msgstr "Експорт у PDF"
+
+#: impdialog.src#STR_PDF_EXPORT.string.text
+msgid "E~xport"
+msgstr "Експор~т"
+
+#: impdialog.src#STR_PDF_EXPORT_UDPWD.string.text
+#, fuzzy
+msgid "Set open password"
+msgstr "Пароль для ~відкриття..."
+
+#: impdialog.src#STR_PDF_EXPORT_ODPWD.string.text
+#, fuzzy
+msgid "Set permission password"
+msgstr "Пароль для обмеження ~прав..."
+
+#: impdialog.src#RID_PDF_TAB_GENER.FL_PAGES.fixedline.text
+msgid "Range"
+msgstr "Сторінки"
+
+#: impdialog.src#RID_PDF_TAB_GENER.RB_ALL.radiobutton.text
+msgid "~All"
+msgstr "~Всі"
+
+#: impdialog.src#RID_PDF_TAB_GENER.RB_RANGE.radiobutton.text
+msgid "~Pages"
+msgstr "~Сторінки"
+
+#: impdialog.src#RID_PDF_TAB_GENER.RB_SELECTION.radiobutton.text
+msgid "~Selection"
+msgstr "~Виділення"
+
+#: impdialog.src#RID_PDF_TAB_GENER.FL_IMAGES.fixedline.text
+msgid "Images"
+msgstr "Зображення"
+
+#: impdialog.src#RID_PDF_TAB_GENER.RB_LOSSLESSCOMPRESSION.radiobutton.text
+msgid "~Lossless compression"
+msgstr "Стиснення ~без втрат"
+
+#: impdialog.src#RID_PDF_TAB_GENER.RB_JPEGCOMPRESSION.radiobutton.text
+msgid "~JPEG compression"
+msgstr "стиснення ~JPEG"
+
+#: impdialog.src#RID_PDF_TAB_GENER.FT_QUALITY.fixedtext.text
+msgid "~Quality"
+msgstr "~Якість"
+
+#: impdialog.src#RID_PDF_TAB_GENER.CB_REDUCEIMAGERESOLUTION.checkbox.text
+msgid "~Reduce image resolution"
+msgstr "~Роздільна здатність зображення"
+
+#: impdialog.src#RID_PDF_TAB_GENER.tabpage.text
+msgctxt "impdialog.src#RID_PDF_TAB_GENER.tabpage.text"
+msgid "General"
+msgstr "Загальні"
+
+#: impdialog.src#FL_WATERMARK.fixedline.text
+msgid "Watermark"
+msgstr ""
+
+#: impdialog.src#CB_WATERMARK.checkbox.text
+msgid "Sign with Watermark"
+msgstr ""
+
+#: impdialog.src#FT_WATERMARK.fixedtext.text
+msgid "Watermark Text"
+msgstr ""
+
+#: impdialog.src#FL_GENERAL.fixedline.text
+msgctxt "impdialog.src#FL_GENERAL.fixedline.text"
+msgid "General"
+msgstr "Загальні"
+
+#: impdialog.src#CB_ADDSTREAM.checkbox.text
+msgid "Em~bed OpenDocument file"
+msgstr ""
+
+#: impdialog.src#FT_ADDSTREAMDESCRIPTION.fixedtext.text
+msgid "Makes this PDF easily editable in %PRODUCTNAME"
+msgstr ""
+
+#: impdialog.src#CB_PDFA_1B_SELECT.checkbox.text
+msgid "P~DF/A-1a"
+msgstr "PDF/A-1"
+
+#: impdialog.src#CB_TAGGEDPDF.checkbox.text
+msgid "~Tagged PDF"
+msgstr "~Структурований PDF"
+
+#: impdialog.src#CB_EXPORTFORMFIELDS.checkbox.text
+msgid "~Create PDF form"
+msgstr "~Створити форму PDF"
+
+#: impdialog.src#FT_FORMSFORMAT.fixedtext.text
+msgid "Submit ~format"
+msgstr "~Формат передачі"
+
+#: impdialog.src#CB_ALLOWDUPLICATEFIELDNAMES.checkbox.text
+msgid "Allow duplicate field ~names"
+msgstr ""
+
+#: impdialog.src#CB_EXPORTBOOKMARKS.checkbox.text
+msgid "Export ~bookmarks"
+msgstr "Експорт ~закладок"
+
+#: impdialog.src#CB_EXPORTNOTES.checkbox.text
+msgid "~Export comments"
+msgstr ""
+
+#: impdialog.src#CB_EXPORTNOTESPAGES.checkbox.text
+msgid "Export ~notes pages"
+msgstr ""
+
+#: impdialog.src#CB_EXPORTHIDDENSLIDES.checkbox.text
+msgid "Export ~hidden pages"
+msgstr ""
+
+#: impdialog.src#CB_EXPORTEMPTYPAGES.checkbox.text
+msgid "Exp~ort automatically inserted blank pages"
+msgstr "Включати автоматично вставлені ~порожні сторінки"
+
+#: impdialog.src#CB_EMBEDSTANDARDFONTS.checkbox.text
+msgid "E~mbed standard fonts"
+msgstr ""
+
+#: impdialog.src#RID_PDF_WARNPDFAPASSWORD.warningbox.text
+msgid "PDF/A does not allow encryption. The exported PDF file will not be password protected."
+msgstr ""
+
+#: impdialog.src#RID_PDF_WARNPDFAPASSWORD.warningbox.title
+#, fuzzy
+msgid "PDF/A Export"
+msgstr "Експорт Dif"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.FL_INITVIEW.fixedline.text
+msgid "Panes"
+msgstr "Області"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_OPNMODE_PAGEONLY.radiobutton.text
+msgid "~Page only"
+msgstr "~Лише сторінки"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_OPNMODE_OUTLINE.radiobutton.text
+msgid "~Bookmarks and page"
+msgstr "~Закладки та сторінки"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_OPNMODE_THUMBS.radiobutton.text
+msgid "~Thumbnails and page"
+msgstr "~Мініатюри и сторінки"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.FT_MAGNF_INITIAL_PAGE.fixedtext.text
+msgid "Open on page"
+msgstr "Відкрити на сторінці"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.FL_MAGNIFICATION.fixedline.text
+msgid "Magnification"
+msgstr "Збільшення"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_MAGNF_DEFAULT.radiobutton.text
+msgid "~Default"
+msgstr "~Типово"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_MAGNF_WIND.radiobutton.text
+msgid "~Fit in window"
+msgstr "~За розміром вікна"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_MAGNF_WIDTH.radiobutton.text
+msgid "Fit ~width"
+msgstr "По ~ширині"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_MAGNF_VISIBLE.radiobutton.text
+msgid "Fit ~visible"
+msgstr "Умістити ~видиме"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_MAGNF_ZOOM.radiobutton.text
+msgid "~Zoom factor"
+msgstr "Мас~штаб"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.FL_PAGE_LAYOUT.fixedline.text
+msgid "Page layout"
+msgstr "Розмітка сторінки"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_PGLY_DEFAULT.radiobutton.text
+msgid "D~efault"
+msgstr "~Типово"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_PGLY_SINGPG.radiobutton.text
+msgid "~Single page"
+msgstr "~Одна сторінка"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_PGLY_CONT.radiobutton.text
+msgid "~Continuous"
+msgstr "~Безперервна"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_PGLY_CONTFAC.radiobutton.text
+msgid "C~ontinuous facing"
+msgstr "Б~езперервна плитка"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.CB_PGLY_FIRSTLEFT.checkbox.text
+msgid "First page is ~left"
+msgstr "Перша сторінка ~ліворуч"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.tabpage.text
+msgctxt "impdialog.src#RID_PDF_TAB_OPNFTR.tabpage.text"
+msgid "Initial View"
+msgstr "Початковий вигляд"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.FL_WINOPT.fixedline.text
+msgid "Window options"
+msgstr "Властивості вікна"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_WNDOPT_RESINIT.checkbox.text
+msgid "~Resize window to initial page"
+msgstr "~Змінити розмір вікна за початковою сторінкою"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_WNDOPT_CNTRWIN.checkbox.text
+msgid "~Center window on screen"
+msgstr "Вікно у ~центрі"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_WNDOPT_OPNFULL.checkbox.text
+msgid "~Open in full screen mode"
+msgstr "~Відкрити у повноекранному режимі"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_DISPDOCTITLE.checkbox.text
+msgid "~Display document title"
+msgstr "~Показати заголовок документу"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.FL_USRIFOPT.fixedline.text
+msgid "User interface options"
+msgstr "Властивості інтерфейсу користувача"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_UOP_HIDEVMENUBAR.checkbox.text
+msgid "Hide ~menubar"
+msgstr "Сховати панель ~меню"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_UOP_HIDEVTOOLBAR.checkbox.text
+msgid "Hide ~toolbar"
+msgstr "Сховати панель ~інструментів"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_UOP_HIDEVWINCTRL.checkbox.text
+msgid "Hide ~window controls"
+msgstr "Сховати елементи ~керування вікна"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.FL_TRANSITIONS.fixedline.text
+msgid "Transitions"
+msgstr "Переходи"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_TRANSITIONEFFECTS.checkbox.text
+msgid "~Use transition effects"
+msgstr "~Ефекти зміни сторінок"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.FL_BOOKMARKS.fixedline.text
+msgid "Bookmarks"
+msgstr "Закладки"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.RB_ALLBOOKMARKLEVELS.radiobutton.text
+msgid "All bookmark levels"
+msgstr "Всі рівні закладок"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.RB_VISIBLEBOOKMARKLEVELS.radiobutton.text
+msgid "Visible bookmark levels"
+msgstr "Видимі рівні закладок"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.tabpage.text
+msgctxt "impdialog.src#RID_PDF_TAB_VPREFER.tabpage.text"
+msgid "User Interface"
+msgstr "Інтерфейс користувача"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.FL_PWD_GROUP.fixedline.text
+msgid "File encryption and permission"
+msgstr ""
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.BTN_SET_PWD.pushbutton.text
+#, fuzzy
+msgid "Set ~passwords..."
+msgstr "Пароль для ~відкриття..."
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_SET_PWD.string.text
+#, fuzzy
+msgid "Set passwords"
+msgstr "З~берегти пароль"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_USER_PWD_SET.string.text
+msgid "Open password set"
+msgstr ""
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_USER_PWD_ENC.string.text
+msgid "PDF document will be encrypted"
+msgstr ""
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_USER_PWD_UNSET.string.text
+msgid "No open password set"
+msgstr ""
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_USER_PWD_UNENC.string.text
+msgid "PDF document will not be encrypted"
+msgstr ""
+
+#: 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 ""
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_OWNER_PWD_SET.string.text
+msgid "Permission password set"
+msgstr ""
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_OWNER_PWD_REST.string.text
+msgid "PDF document will be restricted"
+msgstr ""
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_OWNER_PWD_UNSET.string.text
+msgid "No permission password set"
+msgstr ""
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_OWNER_PWD_UNREST.string.text
+msgid "PDF document will be unrestricted"
+msgstr ""
+
+#: 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 ""
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.FL_PRINT_PERMISSIONS.fixedline.text
+msgid "Printing"
+msgstr "Друк"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_PRINT_NONE.radiobutton.text
+msgid "~Not permitted"
+msgstr "~Не дозволено"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_PRINT_LOWRES.radiobutton.text
+msgid "~Low resolution (150 dpi)"
+msgstr "Н~изька роздільна здатність (150 dpi)"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_PRINT_HIGHRES.radiobutton.text
+msgid "~High resolution"
+msgstr "~Висока роздільна здатність"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.FL_CHANGES_ALLOWED.fixedline.text
+msgid "Changes"
+msgstr "Зміни"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_CHANGES_NONE.radiobutton.text
+msgid "No~t permitted"
+msgstr "Н~е дозволено"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_CHANGES_INSDEL.radiobutton.text
+msgid "~Inserting, deleting, and rotating pages"
+msgstr "~Вставка, видалення та поворот сторінок"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_CHANGES_FILLFORM.radiobutton.text
+msgid "~Filling in form fields"
+msgstr "~Заповнення полів форм"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_CHANGES_COMMENT.radiobutton.text
+msgid "~Commenting, filling in form fields"
+msgstr "~Коментарі, заповнення полів форм"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_CHANGES_ANY_NOCOPY.radiobutton.text
+msgid "~Any except extracting pages"
+msgstr "~Всі, за винятком витягування сторінок"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.CB_ENDAB_COPY.checkbox.text
+msgid "Ena~ble copying of content"
+msgstr "~Копіювання змісту"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.CB_ENAB_ACCESS.checkbox.text
+msgid "Enable text access for acce~ssibility tools"
+msgstr "Дозволити використання ~спеціальних можливостей для тексту"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.tabpage.text
+msgctxt "impdialog.src#RID_PDF_TAB_SECURITY.tabpage.text"
+msgid "Security"
+msgstr "Безпека"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.CB_EXP_BMRK_TO_DEST.checkbox.text
+msgid "Export bookmarks as named destinations"
+msgstr "Експортувати закладки як іменовані"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.CB_CNV_OOO_DOCTOPDF.checkbox.text
+msgid "Convert document references to PDF targets"
+msgstr "Перетворити перехресні посилання на цілі PDF"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.CB_ENAB_RELLINKFSYS.checkbox.text
+msgid "Export URLs relative to file system"
+msgstr "Експортувати відносні URL"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.FL_DEFAULT_LINK_ACTION.fixedline.text
+msgid "Cross-document links"
+msgstr "Перехресні посилання між документами"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.CB_VIEW_PDF_DEFAULT.radiobutton.text
+msgid "Default mode"
+msgstr "Типовий режим"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.CB_VIEW_PDF_APPLICATION.radiobutton.text
+msgid "Open with PDF reader application"
+msgstr "Відкрити у програмі перегляді PDF"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.CB_VIEW_PDF_BROWSER.radiobutton.text
+msgid "Open with Internet browser"
+msgstr "Відкрити у веб-навігаторі"
+
+#: 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 "Загальні"
+
+#: 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 "Початковий вигляд"
+
+#: 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 "Інтерфейс користувача"
+
+#: impdialog.src#RID_PDF_EXPORT_DLG.1.RID_PDF_TAB_LINKS.pageitem.text
+msgid "Links"
+msgstr "Посилання"
+
+#: 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 "Безпека"
+
+#: impdialog.src#RID_PDF_EXPORT_DLG.tabdialog.text
+msgid "PDF Options"
+msgstr "Параметри PDF"
+
+#: impdialog.src#RID_PDF_ERROR_DLG.FT_PROCESS.fixedtext.text
+msgid "During PDF export the following problems occurred:"
+msgstr "Помилки при експорті PDF:"
+
+#: impdialog.src#RID_PDF_ERROR_DLG.STR_WARN_TRANSP_PDFA_SHORT.string.text
+msgid "PDF/A transparency"
+msgstr "Прозорість 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 "PDF/A забороняє прозорість. Прозорий об'єкт натомість відображатиметься непрозорим."
+
+#: impdialog.src#RID_PDF_ERROR_DLG.STR_WARN_TRANSP_VERSION_SHORT.string.text
+msgid "PDF version conflict"
+msgstr "Конфлікт версій 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 "Прозорість не підтримується PDF у версіях раніше ніж PDF 1.4. Прозорий об'єкт натомість відображатиметься непрозорим."
+
+#: impdialog.src#RID_PDF_ERROR_DLG.STR_WARN_FORMACTION_PDFA_SHORT.string.text
+msgid "PDF/A form action"
+msgstr "Дія форми 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 "Елемент форми містить дію,що не підтримується стандартом PDF/A. Дію пропущено"
+
+#: 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 ""
+
+#: impdialog.src#RID_PDF_ERROR_DLG.STR_WARN_TRANSP_CONVERTED_SHORT.string.text
+msgid "Transparencies removed"
+msgstr ""
+
+#: impdialog.src#RID_PDF_ERROR_DLG.modaldialog.text
+msgid "Problems during PDF export"
+msgstr "Помилки при експорті PDF"
diff --git a/source/uk/filter/source/t602.po b/source/uk/filter/source/t602.po
new file mode 100644
index 00000000000..0beeec97ef0
--- /dev/null
+++ b/source/uk/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-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "параметри для імпорту T602"
+
+#: t602filter.src#T602FILTER_STR_ENCODING_LABEL.string.text
+msgid "Encoding"
+msgstr "Кодування"
+
+#: t602filter.src#T602FILTER_STR_ENCODING_AUTO.string.text
+msgid "Automatic"
+msgstr "Автоматично"
+
+#: 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 "Режим для російської мови (кирилиця)"
+
+#: t602filter.src#T602FILTER_STR_REFORMAT_TEXT.string.text
+msgid "Reformat the text"
+msgstr "Переформатувати текст"
+
+#: t602filter.src#T602FILTER_STR_DOT_COMMANDS.string.text
+msgid "Display dot commands"
+msgstr "Відображати \"крапка\"-команди"
+
+#: t602filter.src#T602FILTER_STR_CANCEL_BUTTON.string.text
+msgid "Cancel"
+msgstr "Скасувати"
+
+#: t602filter.src#T602FILTER_STR_OK_BUTTON.string.text
+msgid "OK"
+msgstr "Гаразд"
diff --git a/source/uk/filter/source/xsltdialog.po b/source/uk/filter/source/xsltdialog.po
new file mode 100644
index 00000000000..32fb0da47a6
--- /dev/null
+++ b/source/uk/filter/source/xsltdialog.po
@@ -0,0 +1,318 @@
+#. 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-05-15 15:21+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: xmlfilterdialogstrings.src#STR_COLUMN_HEADER_NAME.string.text
+msgid "Name"
+msgstr "Назва"
+
+#: xmlfilterdialogstrings.src#STR_COLUMN_HEADER_TYPE.string.text
+msgid "Type"
+msgstr "Тип"
+
+#: xmlfilterdialogstrings.src#STR_UNKNOWN_APPLICATION.string.text
+msgid "Unknown"
+msgstr "Невідомо"
+
+#: xmlfilterdialogstrings.src#STR_IMPORT_ONLY.string.text
+msgid "import filter"
+msgstr "Фільтр імпорту"
+
+#: xmlfilterdialogstrings.src#STR_IMPORT_EXPORT.string.text
+msgid "import/export filter"
+msgstr "фільтр імпорту/експорту"
+
+#: xmlfilterdialogstrings.src#STR_EXPORT_ONLY.string.text
+msgid "export filter"
+msgstr "фільтр експорту"
+
+#: xmlfilterdialogstrings.src#STR_WARN_DELETE.string.text
+msgid "Do you really want to delete the XML Filter '%s'? This action cannot be undone."
+msgstr "Ви дійсно хочете видалити фільтр XML '%s'? Цю дію буде неможливо скасувати."
+
+#: 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 "XML фільтр з назвою '%s' вже існує. Введіть іншу назву."
+
+#: xmlfilterdialogstrings.src#STR_ERROR_TYPE_NAME_EXISTS.string.text
+#, fuzzy
+msgid "The name for the user interface '%s1' is already used by the XML filter '%s2'. Please enter a different name."
+msgstr "Назва для інтерфейсу користувача '%s1' вже використовується XML-фільтром '%s2'. Ведіть іншу назву."
+
+#: xmlfilterdialogstrings.src#STR_ERROR_DTD_NOT_FOUND.string.text
+msgid "The DTD could not be found. Please enter a valid path."
+msgstr "DTD не знайдено. Вкажіть коректний шлях."
+
+#: xmlfilterdialogstrings.src#STR_ERROR_EXPORT_XSLT_NOT_FOUND.string.text
+msgid "The XSLT for export cannot be found. Please enter a valid path."
+msgstr "XSLT для експорту не знайдено. Введіть правильний шлях."
+
+#: xmlfilterdialogstrings.src#STR_ERROR_IMPORT_XSLT_NOT_FOUND.string.text
+msgid "The XSLT for import cannot be found. Please enter a valid path."
+msgstr "XSLT для імпорту не знайдено. Введіть правильний шлях до файлу."
+
+#: xmlfilterdialogstrings.src#STR_ERROR_IMPORT_TEMPLATE_NOT_FOUND.string.text
+msgid "The given import template cannot be found. Please enter a valid path."
+msgstr "Вказаний шаблон для імпорту не знайдено. Введіть правильний шлях."
+
+#: xmlfilterdialogstrings.src#STR_NOT_SPECIFIED.string.text
+msgid "Not specified"
+msgstr "Не вказано"
+
+#: xmlfilterdialogstrings.src#STR_DEFAULT_FILTER_NAME.string.text
+msgid "New Filter"
+msgstr "Новий фільтр"
+
+#: xmlfilterdialogstrings.src#STR_DEFAULT_UI_NAME.string.text
+msgid "Untitled"
+msgstr "Без назви"
+
+#: xmlfilterdialogstrings.src#STR_UNDEFINED_FILTER.string.text
+msgid "undefined filter"
+msgstr "невизначений фільтр"
+
+#: xmlfilterdialogstrings.src#STR_FILTER_HAS_BEEN_SAVED.string.text
+msgid "The XML filter '%s' has been saved as package '%s'. "
+msgstr "Фільтр XML '%s' був збережений у пакеті '%s'."
+
+#: xmlfilterdialogstrings.src#STR_FILTERS_HAVE_BEEN_SAVED.string.text
+msgid "%s XML filters have been saved in the package '%s'."
+msgstr "%s Фільтр XML були збережені у пакеті '%s'."
+
+#: xmlfilterdialogstrings.src#STR_FILTER_PACKAGE.string.text
+msgid "XSLT filter package"
+msgstr "Пакет фільтрів XSLT"
+
+#: xmlfilterdialogstrings.src#STR_FILTER_INSTALLED.string.text
+msgid "The XML filter '%s' has been installed successfully."
+msgstr "Фільтр XML '%s' був успішно встановлений."
+
+#: xmlfilterdialogstrings.src#STR_FILTERS_INSTALLED.string.text
+msgid "%s XML filters have been installed successfully."
+msgstr "%s XML фільтри були успішно встановлені."
+
+#: 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 "XML фільтр не може бути встановлений, оскільки пакет \"%s\" не містить жодного 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 "Загальні"
+
+#: 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 "Перетворення"
+
+#: xmlfiltertabdialog.src#DLG_XML_FILTER_TABDIALOG.tabdialog.text
+msgid "XML Filter: %s"
+msgstr "Фільтр XML:%s"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FL_EXPORT.fixedline.text
+msgid "Export"
+msgstr "Експорт"
+
+#: 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 для експорту"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FT_TRANSFORM_DOCUMENT.fixedtext.text
+msgid "Transform document"
+msgstr "Перетворення документу"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.PB_EXPORT_BROWSE.pushbutton.text
+msgid "~Browse..."
+msgstr "О~гляд..."
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.PB_CURRENT_DOCUMENT.pushbutton.text
+msgid "~Current Document"
+msgstr "~Поточний документ"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FL_IMPORT.fixedline.text
+msgid "Import"
+msgstr "Імпорт"
+
+#: 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 для імпорту"
+
+#: 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 "Шаблон для імпорту"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FT_TRANSFORM_FILE.fixedtext.text
+msgid "Transform file"
+msgstr "Перетворити файл"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.CBX_DISPLAY_SOURCE.checkbox.text
+msgid "~Display source"
+msgstr "~Показати первинний текст"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.PB_IMPORT_BROWSE.pushbutton.text
+msgid "B~rowse..."
+msgstr "Ог~ляд..."
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.PB_RECENT_DOCUMENT.pushbutton.text
+msgid "~Recent File"
+msgstr "~Попередні файли"
+
+#: 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 "~Закрити"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.modaldialog.text
+msgid "Test XML Filter: %s"
+msgstr "Тестовий XML фільтр: %s"
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_NEW.pushbutton.text
+msgid "~New..."
+msgstr "~Створити..."
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_EDIT.pushbutton.text
+msgid "~Edit..."
+msgstr "~Редагування..."
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_TEST.pushbutton.text
+msgid "~Test XSLTs..."
+msgstr "~Тестові XSLT..."
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_DELETE.pushbutton.text
+msgid "~Delete..."
+msgstr "В~идалити..."
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_SAVE.pushbutton.text
+msgid "~Save as Package..."
+msgstr "З~берегти пакет..."
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_OPEN.pushbutton.text
+msgid "~Open Package..."
+msgstr "~Відкрити пакет..."
+
+#: 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 "~Закрити"
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.STR_XML_FILTER_LISTBOX.string.text
+#, fuzzy
+msgid "XML Filter List"
+msgstr "Фільтр XML:%s"
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.workwindow.text
+msgid "XML Filter Settings"
+msgstr "Параметри фільтрів XML"
+
+#: xmlfileview.src#DLG_XML_SOURCE_FILE_DIALOG.PB_VALIDATE.pushbutton.text
+msgid "~Validate"
+msgstr "~Перевірити"
+
+#: xmlfileview.src#DLG_XML_SOURCE_FILE_DIALOG.workwindow.text
+msgid "XML Filter output"
+msgstr "Вивід фільтру 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 "~Огляд..."
+
+#: 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 для експорту"
+
+#: 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 "~Огляд..."
+
+#: 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 для імпорту"
+
+#: 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 "~Огляд..."
+
+#: 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 "Шаблон для імпорту"
+
+#: 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 "~Огляд..."
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.FT_XML_TRANSFORM_SERVICE.fixedtext.text
+msgid "XSLT Transformation Service"
+msgstr ""
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.RB_XML_TRANSFORM_SERVICE_LIBXSLT.radiobutton.text
+msgid "~Builtin (LibXSLT)"
+msgstr ""
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.RB_XML_TRANSFORM_SERVICE_SAXON_J.radiobutton.text
+msgid "~Saxon/J"
+msgstr ""
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.tabpage.text
+msgctxt "xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.tabpage.text"
+msgid "Transformation"
+msgstr "Перетворення"
+
+#: xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.FT_XML_FILTER_NAME.fixedtext.text
+msgid "Filter name"
+msgstr "Назва фільтру"
+
+#: xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.FT_XML_APPLICATION.fixedtext.text
+msgid "Application"
+msgstr "Програма"
+
+#: xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.FT_XML_INTERFACE_NAME.fixedtext.text
+msgid ""
+"Name of\n"
+"file type"
+msgstr ""
+"Опис \n"
+"типу файлу"
+
+#: xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.FT_XML_EXTENSION.fixedtext.text
+msgid "File extension"
+msgstr "Розширення файлу"
+
+#: xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.FT_XML_DESCRIPTION.fixedtext.text
+msgid "Comments"
+msgstr "Коментар"
+
+#: xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.tabpage.text
+msgctxt "xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.tabpage.text"
+msgid "General"
+msgstr "Загальні"
diff --git a/source/uk/forms/source/resource.po b/source/uk/forms/source/resource.po
new file mode 100644
index 00000000000..dcaf6113956
--- /dev/null
+++ b/source/uk/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: 2011-04-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: xforms.src#RID_STR_XFORMS_NO_BINDING_EXPRESSION.string.text
+msgid "Please enter a binding expression."
+msgstr "Введіть вираз зв'язування."
+
+#: xforms.src#RID_STR_XFORMS_INVALID_BINDING_EXPRESSION.string.text
+msgid "This is an invalid binding expression."
+msgstr "Цей вираз зв'язування некоректний."
+
+#: xforms.src#RID_STR_XFORMS_INVALID_VALUE.string.text
+msgid "Value is invalid."
+msgstr "Значення некоректне."
+
+#: xforms.src#RID_STR_XFORMS_REQUIRED.string.text
+msgid "A value is required."
+msgstr "Потрібно вказати значення."
+
+#: xforms.src#RID_STR_XFORMS_INVALID_CONSTRAINT.string.text
+msgid "The constraint '$1' not validated."
+msgstr "Обмеження '$1' не перевірено."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_IS_NOT_A.string.text
+msgid "The value is not of the type '$2'."
+msgstr "Значення має бути типу '$2'."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_MAX_INCL.string.text
+msgid "The value must be smaller than or equal to $2."
+msgstr "Величина має бути меншою або дорівнювати $2."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_MAX_EXCL.string.text
+msgid "The value must be smaller than $2."
+msgstr "Величина має бути меншою за $2."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_MIN_INCL.string.text
+msgid "The value must be greater than or equal to $2."
+msgstr "Величина має бути більшою або дорівнювати $2."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_MIN_EXCL.string.text
+msgid "The value must be greater than $2."
+msgstr "Величина має бути більшою за $2."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_PATTERN.string.text
+msgid "The value does not match the pattern '$2'."
+msgstr "Величина не відповідає шаблону '$2'."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_TOTAL_DIGITS.string.text
+msgid "$2 digits allowed at most."
+msgstr "Допустимо $2 цифр."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_FRACTION_DIGITS.string.text
+msgid "$2 fraction digits allowed at most."
+msgstr "Допустимо $2 цифр після коми."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_LENGTH.string.text
+msgid "The string must be $2 characters long."
+msgstr "Рядок має містити $2 символи."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_MIN_LENGTH.string.text
+msgid "The string must be at least $2 characters long."
+msgstr "Рядок має містити принаймні $2 символи."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_MAX_LENGTH.string.text
+msgid "The string can only be $2 characters long at most."
+msgstr "Рядок може містити максимум $2 символів."
+
+#: xforms.src#RID_STR_DATATYPE_STRING.string.text
+msgid "String"
+msgstr "Рядки"
+
+#: xforms.src#RID_STR_DATATYPE_URL.string.text
+msgid "Hyperlink"
+msgstr "Гіперпосилання"
+
+#: xforms.src#RID_STR_DATATYPE_BOOLEAN.string.text
+msgid "True/False (Boolean)"
+msgstr "True/False (Булеве)"
+
+#: xforms.src#RID_STR_DATATYPE_DECIMAL.string.text
+msgid "Decimal"
+msgstr "Десятковий"
+
+#: xforms.src#RID_STR_DATATYPE_FLOAT.string.text
+msgid "Floating point"
+msgstr "Плаваюча кома"
+
+#: xforms.src#RID_STR_DATATYPE_DOUBLE.string.text
+msgid "Double"
+msgstr "Подвійний"
+
+#: xforms.src#RID_STR_DATATYPE_DATE.string.text
+msgid "Date"
+msgstr "Дата"
+
+#: xforms.src#RID_STR_DATATYPE_TIME.string.text
+msgid "Time"
+msgstr "Час"
+
+#: xforms.src#RID_STR_DATATYPE_DATETIME.string.text
+msgid "Date and Time"
+msgstr "Дата та час"
+
+#: xforms.src#RID_STR_DATATYPE_YEARMONTH.string.text
+msgid "Month and year"
+msgstr "Місяць та рік"
+
+#: xforms.src#RID_STR_DATATYPE_YEAR.string.text
+msgid "Year"
+msgstr "Рік"
+
+#: xforms.src#RID_STR_DATATYPE_MONTHDAY.string.text
+msgid "Month and day"
+msgstr "Місяць та день"
+
+#: xforms.src#RID_STR_DATATYPE_MONTH.string.text
+msgid "Month"
+msgstr "Місяць"
+
+#: xforms.src#RID_STR_DATATYPE_DAY.string.text
+msgid "Day"
+msgstr "День"
+
+#: xforms.src#RID_STR_XFORMS_CANT_EVALUATE.string.text
+msgid "Error during evaluation"
+msgstr "Помилка при виконанні"
+
+#: xforms.src#RID_STR_XFORMS_PATTERN_DOESNT_MATCH.string.text
+msgid "The string '$1' does not match the required regular expression '$2'."
+msgstr "Рядок '$1' не відповідає необхідному регулярному виразу '$2'."
+
+#: xforms.src#RID_STR_XFORMS_BINDING_UI_NAME.string.text
+msgid "Binding"
+msgstr "Зв'язування"
+
+#: strings.src#RID_BASELISTBOX_ERROR_FILLLIST.string.text
+msgid "The contents of a combo box or list field could not be determined."
+msgstr "Неможливо визначити зміст поля зі списком або поля списку."
+
+#: strings.src#RID_STR_IMPORT_GRAPHIC.string.text
+msgid "Insert graphics"
+msgstr "Вставити графічний об'єкт"
+
+#: strings.src#RID_STR_CONTROL_SUBSTITUTED_NAME.string.text
+msgid "substituted"
+msgstr "замінено"
+
+#: 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 "Помилка при завантаженні елементу керування. Тому його замінено на полем заміни."
+
+#: strings.src#RID_STR_READERROR.string.text
+msgid "Error reading data from database"
+msgstr "Помилка при читанні з бази даних"
+
+#: strings.src#RID_STR_CONNECTERROR.string.text
+msgid "Connection failed"
+msgstr "Підключення не встановлено"
+
+#: strings.src#RID_ERR_LOADING_FORM.string.text
+msgid "The data content could not be loaded."
+msgstr "Не вдається завантажити дані."
+
+#: strings.src#RID_ERR_REFRESHING_FORM.string.text
+msgid "The data content could not be updated"
+msgstr "Не вдається оновити зміст даних"
+
+#: strings.src#RID_STR_ERR_INSERTRECORD.string.text
+msgid "Error inserting the new record"
+msgstr "Помилка при вставці нового запису"
+
+#: strings.src#RID_STR_ERR_UPDATERECORD.string.text
+msgid "Error updating the current record"
+msgstr "Помилка при оновленні поточного запису"
+
+#: strings.src#RID_STR_ERR_DELETERECORD.string.text
+msgid "Error deleting the current record"
+msgstr "Помилка видалення поточного запису"
+
+#: strings.src#RID_STR_ERR_DELETERECORDS.string.text
+msgid "Error deleting the specified records"
+msgstr "Помилка видалення вказаного запису"
+
+#: strings.src#RID_STR_NEED_NON_NULL_OBJECT.string.text
+msgid "The object cannot be NULL."
+msgstr "Об'єкт не може бути NULL."
+
+#: strings.src#RID_STR_OPEN_GRAPHICS.string.text
+msgid "Insert graphics from..."
+msgstr "Вставити графічні об'єкти з..."
+
+#: strings.src#RID_STR_CLEAR_GRAPHICS.string.text
+msgid "Remove graphics"
+msgstr "Видалити графічні об'єкти"
+
+#: strings.src#RID_STR_INVALIDSTREAM.string.text
+msgid "The given stream is invalid."
+msgstr "Даний потік некоректний."
+
+#: strings.src#RID_STR_SYNTAXERROR.string.text
+msgid "Syntax error in query expression"
+msgstr "Синтаксична помилка у виразі запиту"
+
+#: 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 "Значення, що підтримується зв'язкою не може бути використане для обміну даних з цим елементом керування."
+
+#: strings.src#RID_STR_LABEL_RECORD.string.text
+msgid "Record"
+msgstr "Запис"
+
+#: 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 "Елемент керування, що підключається до вашого зовнішнього зв'язуючого значення, яке в одночасно виступає як перевірочний елемент. Необхідно роз'єднати зв'язуюче значення, перш ніж зможете встановити новий перевірочний елемент."
+
+#: strings.src#RID_STR_LABEL_OF.string.text
+msgid "of"
+msgstr "розмір:"
+
+#: 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 ""
+"Зміст цієї форми було змінено.\n"
+"Зберегти зміни?"
+
+#: strings.src#RID_STR_COULD_NOT_SET_ORDER.string.text
+msgid "Error setting the sort criteria"
+msgstr "Помилка при встановленні умови сортування"
+
+#: strings.src#RID_STR_COULD_NOT_SET_FILTER.string.text
+msgid "Error setting the filter criteria"
+msgstr "Помилка при встановленні умови фільтру"
+
+#: strings.src#RID_STR_FEATURE_REQUIRES_PARAMETERS.string.text
+msgid "To execute this function, parameters are needed."
+msgstr "Параметри є обов'язковими для запуску цієї функції."
+
+#: strings.src#RID_STR_FEATURE_NOT_EXECUTABLE.string.text
+msgid "This function cannot be executed, but is only for status queries."
+msgstr "Ця функція не може бути запущена, вона лише для запитів стану."
+
+#: strings.src#RID_STR_FEATURE_UNKNOWN.string.text
+msgid "Unknown function."
+msgstr "Невідома функція."
diff --git a/source/uk/formula/source/core/resource.po b/source/uk/formula/source/core/resource.po
new file mode 100644
index 00000000000..5a5a25f1526
--- /dev/null
+++ b/source/uk/formula/source/core/resource.po
@@ -0,0 +1,1239 @@
+#. 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-03-15 23:49+0200\n"
+"Last-Translator: Andras <timar74@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CHOSE.string.text
+msgid "CHOOSE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_AND.string.text
+msgid "AND"
+msgstr "AND"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_OR.string.text
+msgid "OR"
+msgstr "OR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NOT.string.text
+msgid "NOT"
+msgstr "NOT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NEG.string.text
+msgid "NEG"
+msgstr ""
+
+#: 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
+#, fuzzy
+msgid "RAND"
+msgstr "AND"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TRUE.string.text
+msgid "TRUE"
+msgstr "TRUE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FALSE.string.text
+msgid "FALSE"
+msgstr "FALSE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_ACT_DATE.string.text
+msgid "TODAY"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_ACT_TIME.string.text
+msgid "NOW"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NO_VALUE.string.text
+msgid "NA"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CURRENT.string.text
+msgid "CURRENT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DEG.string.text
+msgid "DEGREES"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RAD.string.text
+msgid "RADIANS"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SIN.string.text
+msgid "SIN"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COS.string.text
+msgid "COS"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TAN.string.text
+msgid "TAN"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COT.string.text
+msgid "COT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_SIN.string.text
+msgid "ASIN"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_COS.string.text
+msgid "ACOS"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_TAN.string.text
+msgid "ATAN"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_COT.string.text
+msgid "ACOT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SIN_HYP.string.text
+msgid "SINH"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COS_HYP.string.text
+msgid "COSH"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TAN_HYP.string.text
+msgid "TANH"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COT_HYP.string.text
+msgid "COTH"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_SIN_HYP.string.text
+msgid "ASINH"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_COS_HYP.string.text
+msgid "ACOSH"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_TAN_HYP.string.text
+msgid "ATANH"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_COT_HYP.string.text
+msgid "ACOTH"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COSECANT.string.text
+msgid "CSC"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SECANT.string.text
+msgid "SEC"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COSECANT_HYP.string.text
+msgid "CSCH"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SECANT_HYP.string.text
+msgid "SECH"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EXP.string.text
+msgid "EXP"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LN.string.text
+msgid "LN"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SQRT.string.text
+msgid "SQRT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FACT.string.text
+msgid "FACT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_YEAR.string.text
+msgid "YEAR"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_MONTH.string.text
+msgid "MONTH"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DAY.string.text
+msgid "DAY"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_HOUR.string.text
+msgid "HOUR"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_MIN.string.text
+msgid "MINUTE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_SEC.string.text
+msgid "SECOND"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PLUS_MINUS.string.text
+msgid "SIGN"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ABS.string.text
+msgid "ABS"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_INT.string.text
+msgid "INT"
+msgstr ""
+
+#: 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 ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_EMPTY.string.text
+msgid "ISBLANK"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_STRING.string.text
+msgid "ISTEXT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_NON_STRING.string.text
+msgid "ISNONTEXT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_LOGICAL.string.text
+msgid "ISLOGICAL"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TYPE.string.text
+msgid "TYPE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CELL.string.text
+msgid "CELL"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_REF.string.text
+msgid "ISREF"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_VALUE.string.text
+msgid "ISNUMBER"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_FORMULA.string.text
+msgid "ISFORMULA"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_NV.string.text
+msgid "ISNA"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_ERR.string.text
+msgid "ISERR"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_ERROR.string.text
+msgid "ISERROR"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_EVEN.string.text
+msgid "ISEVEN"
+msgstr "ISEVEN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_ODD.string.text
+msgid "ISODD"
+msgstr "ISODD"
+
+#: 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 ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_TIME_VALUE.string.text
+msgid "TIMEVALUE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CODE.string.text
+msgid "CODE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TRIM.string.text
+msgid "TRIM"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_UPPER.string.text
+msgid "UPPER"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PROPPER.string.text
+msgid "PROPER"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LOWER.string.text
+msgid "LOWER"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LEN.string.text
+msgid "LEN"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_T.string.text
+msgid "T"
+msgstr "Т"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VALUE.string.text
+msgid "VALUE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CLEAN.string.text
+msgid "CLEAN"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CHAR.string.text
+msgid "CHAR"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_JIS.string.text
+msgid "JIS"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ASC.string.text
+msgid "ASC"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_UNICODE.string.text
+msgid "UNICODE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_UNICHAR.string.text
+msgid "UNICHAR"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LOG10.string.text
+msgid "LOG10"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EVEN.string.text
+msgid "EVEN"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ODD.string.text
+msgid "ODD"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_STD_NORM_DIST.string.text
+msgid "NORMSDIST"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FISHER.string.text
+msgid "FISHER"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FISHER_INV.string.text
+msgid "FISHERINV"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_S_NORM_INV.string.text
+msgid "NORMSINV"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GAMMA_LN.string.text
+msgid "GAMMALN"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ERROR_TYPE.string.text
+msgid "ERRORTYPE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FORMULA.string.text
+msgid "FORMULA"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARABIC.string.text
+msgid "ARABIC"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_TAN_2.string.text
+msgid "ATAN2"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CEIL.string.text
+msgid "CEILING"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FLOOR.string.text
+msgid "FLOOR"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ROUND.string.text
+msgid "ROUND"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ROUND_UP.string.text
+msgid "ROUNDUP"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ROUND_DOWN.string.text
+msgid "ROUNDDOWN"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TRUNC.string.text
+msgid "TRUNC"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LOG.string.text
+msgid "LOG"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_POWER.string.text
+msgid "POWER"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GGT.string.text
+msgid "GCD"
+msgstr "GCD"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KGV.string.text
+msgid "LCM"
+msgstr "LCM"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MOD.string.text
+msgid "MOD"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUM_PRODUCT.string.text
+msgid "SUMPRODUCT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUM_SQ.string.text
+msgid "SUMSQ"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUM_X2MY2.string.text
+msgid "SUMX2MY2"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUM_X2DY2.string.text
+msgid "SUMX2PY2"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUM_XMY2.string.text
+msgid "SUMXMY2"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DATE.string.text
+msgid "DATE"
+msgstr "DATE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_TIME.string.text
+msgid "TIME"
+msgstr "TIME"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DIFF_DATE.string.text
+msgid "DAYS"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DIFF_DATE_360.string.text
+msgid "DAYS360"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DATEDIF.string.text
+msgid "DATEDIF"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MIN.string.text
+msgid "MIN"
+msgstr "MIN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MIN_A.string.text
+#, fuzzy
+msgid "MINA"
+msgstr "MIN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAX.string.text
+msgid "MAX"
+msgstr "MAX"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAX_A.string.text
+#, fuzzy
+msgid "MAXA"
+msgstr "MAX"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUM.string.text
+msgid "SUM"
+msgstr "SUM"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PRODUCT.string.text
+msgid "PRODUCT"
+msgstr "PRODUCT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_AVERAGE.string.text
+msgid "AVERAGE"
+msgstr "AVERAGE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_AVERAGE_A.string.text
+#, fuzzy
+msgid "AVERAGEA"
+msgstr "AVERAGE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COUNT.string.text
+msgid "COUNT"
+msgstr "COUNT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COUNT_2.string.text
+msgid "COUNTA"
+msgstr "COUNTA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NBW.string.text
+msgid "NPV"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IKV.string.text
+msgid "IRR"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MIRR.string.text
+msgid "MIRR"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ISPMT.string.text
+msgid "ISPMT"
+msgstr ""
+
+#: 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
+#, fuzzy
+msgid "VARA"
+msgstr "VAR"
+
+#: 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
+#, fuzzy
+msgid "VARPA"
+msgstr "VARP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ST_DEV.string.text
+#, fuzzy
+msgid "STDEV"
+msgstr "STDEVP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ST_DEV_A.string.text
+#, fuzzy
+msgid "STDEVA"
+msgstr "STDEVP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ST_DEV_P.string.text
+msgid "STDEVP"
+msgstr "STDEVP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ST_DEV_P_A.string.text
+#, fuzzy
+msgid "STDEVPA"
+msgstr "STDEVP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_B.string.text
+msgid "B"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NORM_DIST.string.text
+msgid "NORMDIST"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EXP_DIST.string.text
+msgid "EXPONDIST"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BINOM_DIST.string.text
+msgid "BINOMDIST"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_POISSON_DIST.string.text
+msgid "POISSON"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KOMBIN.string.text
+msgid "COMBIN"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KOMBIN_2.string.text
+msgid "COMBINA"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VARIATIONEN.string.text
+msgid "PERMUT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VARIATIONEN_2.string.text
+msgid "PERMUTATIONA"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BW.string.text
+msgid "PV"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DIA.string.text
+msgid "SYD"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GDA.string.text
+msgid "DDB"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GDA_2.string.text
+msgid "DB"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VBD.string.text
+msgid "VDB"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LAUFZ.string.text
+msgid "DURATION"
+msgstr "DURATION"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LIA.string.text
+msgid "SLN"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RMZ.string.text
+msgid "PMT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COLUMNS.string.text
+msgid "COLUMNS"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ROWS.string.text
+msgid "ROWS"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TABLES.string.text
+#, fuzzy
+msgid "SHEETS"
+msgstr "SHEET"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COLUMN.string.text
+msgid "COLUMN"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ROW.string.text
+msgid "ROW"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TABLE.string.text
+msgid "SHEET"
+msgstr "SHEET"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ZGZ.string.text
+msgid "RRI"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ZW.string.text
+msgid "FV"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ZZR.string.text
+msgid "NPER"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ZINS.string.text
+#, fuzzy
+msgid "RATE"
+msgstr "DATE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ZINS_Z.string.text
+msgid "IPMT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KAPZ.string.text
+msgid "PPMT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KUM_ZINS_Z.string.text
+msgid "CUMIPMT"
+msgstr "CUMIPMT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KUM_KAP_Z.string.text
+msgid "CUMPRINC"
+msgstr "CUMPRINC"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EFFEKTIV.string.text
+msgid "EFFECTIVE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NOMINAL.string.text
+msgid "NOMINAL"
+msgstr "NOMINAL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUB_TOTAL.string.text
+msgid "SUBTOTAL"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_SUM.string.text
+#, fuzzy
+msgid "DSUM"
+msgstr "SUM"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_COUNT.string.text
+#, fuzzy
+msgid "DCOUNT"
+msgstr "COUNT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_COUNT_2.string.text
+#, fuzzy
+msgid "DCOUNTA"
+msgstr "COUNTA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_AVERAGE.string.text
+#, fuzzy
+msgid "DAVERAGE"
+msgstr "AVERAGE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_GET.string.text
+msgid "DGET"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_MAX.string.text
+#, fuzzy
+msgid "DMAX"
+msgstr "MAX"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_MIN.string.text
+#, fuzzy
+msgid "DMIN"
+msgstr "MIN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_PRODUCT.string.text
+#, fuzzy
+msgid "DPRODUCT"
+msgstr "PRODUCT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_STD_DEV.string.text
+#, fuzzy
+msgid "DSTDEV"
+msgstr "STDEVP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_STD_DEV_P.string.text
+#, fuzzy
+msgid "DSTDEVP"
+msgstr "STDEVP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_VAR.string.text
+#, fuzzy
+msgid "DVAR"
+msgstr "VAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_VAR_P.string.text
+#, fuzzy
+msgid "DVARP"
+msgstr "VARP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_INDIRECT.string.text
+msgid "INDIRECT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ADDRESS.string.text
+msgid "ADDRESS"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MATCH.string.text
+msgid "MATCH"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COUNT_EMPTY_CELLS.string.text
+msgid "COUNTBLANK"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COUNT_IF.string.text
+msgid "COUNTIF"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUM_IF.string.text
+msgid "SUMIF"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LOOKUP.string.text
+msgid "LOOKUP"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_V_LOOKUP.string.text
+msgid "VLOOKUP"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_H_LOOKUP.string.text
+msgid "HLOOKUP"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MULTI_AREA.string.text
+msgid "MULTIRANGE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_OFFSET.string.text
+msgid "OFFSET"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_INDEX.string.text
+msgid "INDEX"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_AREAS.string.text
+msgid "AREAS"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CURRENCY.string.text
+msgid "DOLLAR"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_REPLACE.string.text
+msgid "REPLACE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FIXED.string.text
+msgid "FIXED"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FIND.string.text
+msgid "FIND"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EXACT.string.text
+msgid "EXACT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LEFT.string.text
+msgid "LEFT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RIGHT.string.text
+msgid "RIGHT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SEARCH.string.text
+msgid "SEARCH"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MID.string.text
+msgid "MID"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TEXT.string.text
+msgid "TEXT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUBSTITUTE.string.text
+msgid "SUBSTITUTE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_REPT.string.text
+msgid "REPT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CONCAT.string.text
+msgid "CONCATENATE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAT_VALUE.string.text
+msgid "MVALUE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAT_DET.string.text
+msgid "MDETERM"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAT_INV.string.text
+msgid "MINVERSE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAT_MULT.string.text
+msgid "MMULT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAT_TRANS.string.text
+msgid "TRANSPOSE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MATRIX_UNIT.string.text
+msgid "MUNIT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BACK_SOLVER.string.text
+msgid "GOALSEEK"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_HYP_GEOM_DIST.string.text
+msgid "HYPGEOMDIST"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LOG_NORM_DIST.string.text
+msgid "LOGNORMDIST"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_T_DIST.string.text
+msgid "TDIST"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_F_DIST.string.text
+msgid "FDIST"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CHI_DIST.string.text
+msgid "CHIDIST"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_WEIBULL.string.text
+msgid "WEIBULL"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NEG_BINOM_VERT.string.text
+msgid "NEGBINOMDIST"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KRIT_BINOM.string.text
+msgid "CRITBINOM"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KURT.string.text
+msgid "KURT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_HAR_MEAN.string.text
+msgid "HARMEAN"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GEO_MEAN.string.text
+msgid "GEOMEAN"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_STANDARD.string.text
+msgid "STANDARDIZE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_AVE_DEV.string.text
+msgid "AVEDEV"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SCHIEFE.string.text
+msgid "SKEW"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DEV_SQ.string.text
+msgid "DEVSQ"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MEDIAN.string.text
+msgid "MEDIAN"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MODAL_VALUE.string.text
+msgid "MODE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_Z_TEST.string.text
+msgid "ZTEST"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_T_TEST.string.text
+msgid "TTEST"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RANK.string.text
+#, fuzzy
+msgid "RANK"
+msgstr "AND"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PERCENTILE.string.text
+msgid "PERCENTILE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PERCENT_RANK.string.text
+msgid "PERCENTRANK"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LARGE.string.text
+msgid "LARGE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SMALL.string.text
+msgid "SMALL"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FREQUENCY.string.text
+msgid "FREQUENCY"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_QUARTILE.string.text
+msgid "QUARTILE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NORM_INV.string.text
+msgid "NORMINV"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CONFIDENCE.string.text
+msgid "CONFIDENCE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_F_TEST.string.text
+msgid "FTEST"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TRIM_MEAN.string.text
+msgid "TRIMMEAN"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PROB.string.text
+msgid "PROB"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CORREL.string.text
+msgid "CORREL"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COVAR.string.text
+msgid "COVAR"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PEARSON.string.text
+msgid "PEARSON"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RSQ.string.text
+msgid "RSQ"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_STEYX.string.text
+msgid "STEYX"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SLOPE.string.text
+msgid "SLOPE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_INTERCEPT.string.text
+msgid "INTERCEPT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TREND.string.text
+msgid "TREND"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GROWTH.string.text
+msgid "GROWTH"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RGP.string.text
+msgid "LINEST"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RKP.string.text
+msgid "LOGEST"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FORECAST.string.text
+msgid "FORECAST"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CHI_INV.string.text
+msgid "CHIINV"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GAMMA_DIST.string.text
+msgid "GAMMADIST"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GAMMA_INV.string.text
+msgid "GAMMAINV"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_T_INV.string.text
+msgid "TINV"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_F_INV.string.text
+msgid "FINV"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CHI_TEST.string.text
+msgid "CHITEST"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LOG_INV.string.text
+msgid "LOGINV"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TABLE_OP.string.text
+msgid "MULTIPLE.OPERATIONS"
+msgstr "MULTIPLE.OPERATIONS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BETA_DIST.string.text
+msgid "BETADIST"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BETA_INV.string.text
+msgid "BETAINV"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_WEEK.string.text
+msgid "WEEKNUM"
+msgstr "WEEKNUM"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EASTERSUNDAY.string.text
+msgid "EASTERSUNDAY"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DAY_OF_WEEK.string.text
+msgid "WEEKDAY"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NO_NAME.string.text
+msgid "#NAME!"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_STYLE.string.text
+msgid "STYLE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DDE.string.text
+msgid "DDE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BASE.string.text
+msgid "BASE"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DECIMAL.string.text
+msgid "DECIMAL"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CONVERT.string.text
+msgid "CONVERT"
+msgstr "CONVERT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ROMAN.string.text
+msgid "ROMAN"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_HYPERLINK.string.text
+msgid "HYPERLINK"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_INFO.string.text
+msgid "INFO"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BAHTTEXT.string.text
+msgid "BAHTTEXT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_PIVOT_DATA.string.text
+msgid "GETPIVOTDATA"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EUROCONVERT.string.text
+msgid "EUROCONVERT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NUMBERVALUE.string.text
+msgid "NUMBERVALUE"
+msgstr ""
+
+#: 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 ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CHISQ_INV.string.text
+msgid "CHISQINV"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BITAND.string.text
+msgid "BITAND"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BITOR.string.text
+msgid "BITOR"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BITXOR.string.text
+msgid "BITXOR"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BITRSHIFT.string.text
+msgid "BITRSHIFT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BITLSHIFT.string.text
+msgid "BITLSHIFT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ERROR_NULL.string.text
+msgid "#NULL!"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ERROR_DIVZERO.string.text
+msgid "#DIV/0!"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ERROR_VALUE.string.text
+msgid "#VALUE!"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ERROR_REF.string.text
+msgid "#REF!"
+msgstr "#ССЫЛ!"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ERROR_NAME.string.text
+msgid "#NAME?"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ERROR_NUM.string.text
+msgid "#NUM!"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ERROR_NA.string.text
+msgid "#N/A"
+msgstr ""
diff --git a/source/uk/formula/source/ui/dlg.po b/source/uk/formula/source/ui/dlg.po
new file mode 100644
index 00000000000..c12e7ffbbe9
--- /dev/null
+++ b/source/uk/formula/source/ui/dlg.po
@@ -0,0 +1,238 @@
+#. 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: 2011-04-12 01:20+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\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
+#, fuzzy
+msgid "Select"
+msgstr ""
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вибрати\n"
+"#-#-#-#-# basicide.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вибір"
+
+#: parawin.src#RID_FORMULATAB_PARAMETER.FT_EDITDESC.fixedtext.text
+msgid "Function not known"
+msgstr ""
+
+#: parawin.src#RID_FORMULATAB_PARAMETER.STR_OPTIONAL.string.text
+msgid "(optional)"
+msgstr "(необов'язковий)"
+
+#: parawin.src#RID_FORMULATAB_PARAMETER.STR_REQUIRED.string.text
+msgid "(required)"
+msgstr "(обов'язковий)"
+
+#: formdlgs.src#RID_FORMULATAB_FUNCTION.LB_CATEGORY.1.stringlist.text
+msgid "Last Used"
+msgstr "Використано останнім"
+
+#: formdlgs.src#RID_FORMULATAB_FUNCTION.LB_CATEGORY.2.stringlist.text
+#, fuzzy
+msgid "All"
+msgstr ""
+"#-#-#-#-# uiview.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Усі\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Усі\n"
+"#-#-#-#-# formdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Усі\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Усі\n"
+"#-#-#-#-# classes.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Усі\n"
+"#-#-#-#-# tabpages.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Усі\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Все\n"
+"#-#-#-#-# basicide.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Усі\n"
+"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Усі"
+
+#: formdlgs.src#RID_FORMULATAB_FUNCTION.FT_CATEGORY.fixedtext.text
+msgid "~Category"
+msgstr "~Категорія"
+
+#: formdlgs.src#RID_FORMULATAB_FUNCTION.FT_FUNCTION.fixedtext.text
+msgid "~Function"
+msgstr "~Функція"
+
+#: formdlgs.src#RID_FORMULATAB_STRUCT.FT_STRUCT.fixedtext.text
+msgid "~Structure"
+msgstr "~Структура"
+
+#: formdlgs.src#RID_FORMULATAB_STRUCT.STR_STRUCT_ERR1.string.text
+msgid "=?"
+msgstr ""
+
+#: formdlgs.src#RID_FORMULATAB_STRUCT.STR_STRUCT_ERR2.string.text
+#, fuzzy
+msgid "Error"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Помилка\n"
+"#-#-#-#-# options.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Помилки\n"
+"#-#-#-#-# importwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Помилка\n"
+"#-#-#-#-# Localization.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Помилка\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Помилка\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Помилка\n"
+"#-#-#-#-# gui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Помилка"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.TC_FUNCTION.TP_FUNCTION.pageitem.text
+#, fuzzy
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.TC_FUNCTION.TP_FUNCTION.pageitem.text"
+msgid "Functions"
+msgstr "~Функція"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.TC_FUNCTION.TP_STRUCT.pageitem.text
+#, fuzzy
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.TC_FUNCTION.TP_STRUCT.pageitem.text"
+msgid "Structure"
+msgstr "~Структура"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.BTN_MATRIX.checkbox.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.BTN_MATRIX.checkbox.text"
+msgid "Array"
+msgstr ""
+
+#: 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 ""
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.BTN_BACKWARD.pushbutton.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.BTN_BACKWARD.pushbutton.text"
+msgid "<< ~Back"
+msgstr ""
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.BTN_FORWARD.pushbutton.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.BTN_FORWARD.pushbutton.text"
+msgid "~Next >>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.STR_END.string.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.STR_END.string.text"
+msgid "~End"
+msgstr ""
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.TC_FUNCTION.TP_FUNCTION.pageitem.text
+#, fuzzy
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.TC_FUNCTION.TP_FUNCTION.pageitem.text"
+msgid "Functions"
+msgstr "~Функція"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.TC_FUNCTION.TP_STRUCT.pageitem.text
+#, fuzzy
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.TC_FUNCTION.TP_STRUCT.pageitem.text"
+msgid "Structure"
+msgstr "~Структура"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.FT_FORMULA.fixedtext.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.FT_FORMULA.fixedtext.text"
+msgid "For~mula"
+msgstr ""
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.FT_RESULT.fixedtext.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.FT_RESULT.fixedtext.text"
+msgid "Function result"
+msgstr ""
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.FT_FORMULA_RESULT.fixedtext.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.FT_FORMULA_RESULT.fixedtext.text"
+msgid "Result"
+msgstr ""
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.BTN_MATRIX.checkbox.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.BTN_MATRIX.checkbox.text"
+msgid "Array"
+msgstr ""
+
+#: 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 ""
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.BTN_BACKWARD.pushbutton.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.BTN_BACKWARD.pushbutton.text"
+msgid "<< ~Back"
+msgstr ""
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.BTN_FORWARD.pushbutton.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.BTN_FORWARD.pushbutton.text"
+msgid "~Next >>"
+msgstr ""
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.STR_TITLE1.string.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.STR_TITLE1.string.text"
+msgid "Function Wizard"
+msgstr ""
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.STR_TITLE2.string.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.STR_TITLE2.string.text"
+msgid "Function Wizard -"
+msgstr ""
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.STR_END.string.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.STR_END.string.text"
+msgid "~End"
+msgstr ""
diff --git a/source/uk/fpicker/source/office.po b/source/uk/fpicker/source/office.po
new file mode 100644
index 00000000000..cb967c67d69
--- /dev/null
+++ b/source/uk/fpicker/source/office.po
@@ -0,0 +1,311 @@
+#. 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-05-15 15:21+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "Створити новий каталог"
+
+#: 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 "На рівень вгору"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.FT_EXPLORERFILE_FILENAME.fixedtext.text
+msgid "File ~name:"
+msgstr "~Назва файлу:"
+
+#: 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 "~Тип файлу:"
+
+#: 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 "~Лише для читання"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.CB_EXPLORERFILE_PASSWORD.checkbox.text
+msgid "Save with password"
+msgstr "Зберегти з паролем"
+
+#: 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 "~Автоматичне розширення"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.CB_OPTIONS.checkbox.text
+msgid "Edit ~filter settings"
+msgstr "~Редагувати налаштування фільтра"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_OPEN.pushbutton.text
+msgid "~Open"
+msgstr "~Відкрити"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_EXPLORERFILE_OPEN.string.text
+msgid "Open"
+msgstr "Відкрити"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_EXPLORERFILE_SAVE.string.text
+msgid "Save as"
+msgstr "Зберегти як"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_EXPLORERFILE_BUTTONSAVE.string.text
+msgid "~Save"
+msgstr "З~берегти"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_PATHNAME.string.text
+msgid "~Path:"
+msgstr "~Шлях:"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_PATHSELECT.string.text
+msgid "Select path"
+msgstr "Виберіть шлях"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_BUTTONSELECT.string.text
+msgid "~Select"
+msgstr "~Вибрати"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_ACTUALVERSION.string.text
+msgid "Current version"
+msgstr "Поточна версія"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_PREVIEW.string.text
+#, fuzzy
+msgid "File Preview"
+msgstr "Деактивувати попередній перегляд"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_DEFAULT_DIRECTORY.string.text
+msgid "Default Directory"
+msgstr "Типова тека"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_PLACES_TITLE.string.text
+msgid "Places"
+msgstr ""
+
+#: iodlg.src#DLG_FPICKER_QUERYFOLDERNAME.FT_SVT_QUERYFOLDERNAME_DLG_NAME.fixedtext.text
+msgid "Na~me"
+msgstr "Н~азва"
+
+#: iodlg.src#DLG_FPICKER_QUERYFOLDERNAME.FL_SVT_QUERYFOLDERNAME_DLG_NAME.fixedline.text
+msgid "Create new folder"
+msgstr "Створити нову теку"
+
+#: iodlg.src#RID_FILEOPEN_INVALIDFOLDER.string.text
+msgid "$name$ does not exist."
+msgstr "$name$ не існує."
+
+#: 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 ""
+"Файл $name$ не існує.\n"
+"Перевірте правильність написання назви."
+
+#: iodlg.src#STR_FILTERNAME_ALL.string.text
+msgid "All files"
+msgstr ""
+
+#: iodlg.src#STR_SVT_ALREADYEXISTOVERWRITE.string.text
+#, fuzzy
+msgid ""
+"A file named \"$filename$\" already exists.\n"
+"\n"
+"Do you want to replace it?"
+msgstr ""
+"Елемент з такою назвою вже існує.\n"
+"Замінити?"
+
+#: iodlg.src#STR_SVT_NEW_FOLDER.string.text
+msgid "Folder"
+msgstr "Тека"
+
+#: 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 ""
+"Змінний пристрій не виявлений.\n"
+"Перевірте, що він не підключений та повторіть знову."
+
+#: iodlg.src#STR_SVT_ALLFORMATS.string.text
+msgid "All Formats"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_SERVERNAME.fixedtext.text
+#, fuzzy
+msgid "Name"
+msgstr "Н~азва"
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_SERVERTYPE.fixedtext.text
+msgid "Type"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_HOST.fixedtext.text
+msgid "Host"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_PORT.fixedtext.text
+msgid "Port"
+msgstr ""
+
+#: 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 ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.CB_ADDPLACE_DAVS.checkbox.text
+msgid "Secured WebDAV (HTTPS)"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_SHARE.fixedtext.text
+msgid "Share"
+msgstr ""
+
+#: 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 ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_CMIS_BINDING.fixedtext.text
+msgid "Binding URL"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_CMIS_REPOSITORY.fixedtext.text
+msgid "Repository"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.LB_ADDPLACE_SERVERTYPE.1.stringlist.text
+msgid "WebDAV"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.LB_ADDPLACE_SERVERTYPE.2.stringlist.text
+msgid "FTP"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.LB_ADDPLACE_SERVERTYPE.3.stringlist.text
+msgid "SSH"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.LB_ADDPLACE_SERVERTYPE.4.stringlist.text
+msgid "Windows Share"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.LB_ADDPLACE_SERVERTYPE.5.stringlist.text
+msgid "CMIS (Atom Binding)"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_USERNAME.fixedtext.text
+msgid "Login"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.BT_ADDPLACE_DELETE.pushbutton.text
+msgid "Delete"
+msgstr ""
+
+#: 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 "~Автоматичне розширення"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_PASSWORD.string.text
+msgid "Save with pass~word"
+msgstr "Зберегти з паролем"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_FILTER_OPTIONS.string.text
+msgid "~Edit filter settings"
+msgstr "Зміна параметрів фільтру"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_READONLY.string.text
+msgctxt "OfficeFilePicker.src#STR_SVT_FILEPICKER_READONLY.string.text"
+msgid "~Read-only"
+msgstr "~Лише для читання"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_INSERT_AS_LINK.string.text
+msgid "~Link"
+msgstr "~Адреса"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_SHOW_PREVIEW.string.text
+msgid "Pr~eview"
+msgstr "~Попередній перегляд"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_PLAY.string.text
+msgid "~Play"
+msgstr "~Відтворити"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_VERSION.string.text
+msgid "~Version:"
+msgstr "В~ерсія:"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_TEMPLATES.string.text
+msgid "S~tyles:"
+msgstr "~Стилі:"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_IMAGE_TEMPLATE.string.text
+msgid "Style:"
+msgstr "Стиль:"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_SELECTION.string.text
+msgid "~Selection"
+msgstr "Виді~лення"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_FILTER_TITLE.string.text
+msgctxt "OfficeFilePicker.src#STR_SVT_FILEPICKER_FILTER_TITLE.string.text"
+msgid "File ~type:"
+msgstr "~Тип файла:"
+
+#: OfficeFilePicker.src#STR_SVT_FOLDERPICKER_DEFAULT_TITLE.string.text
+msgid "Select Path"
+msgstr "Вибрати шлях"
+
+#: OfficeFilePicker.src#STR_SVT_FOLDERPICKER_DEFAULT_DESCRIPTION.string.text
+msgid "Please select a folder."
+msgstr "Виберіть теку"
diff --git a/source/uk/framework/source/classes.po b/source/uk/framework/source/classes.po
new file mode 100644
index 00000000000..8bff74cd441
--- /dev/null
+++ b/source/uk/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: 2011-04-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: resource.src#STR_MENU_ADDONS.string.text
+msgid "Add-Ons"
+msgstr "~Доповнення"
+
+#: resource.src#STR_MENU_ADDONHELP.string.text
+msgid "Add-~On Help"
+msgstr "~Довідка з доповнень"
+
+#: resource.src#STR_MENU_HEADFOOTALL.string.text
+msgid "All"
+msgstr "Усі"
+
+#: resource.src#STR_UPDATEDOC.string.text
+msgid "~Update"
+msgstr "~Оновити"
+
+#: resource.src#STR_CLOSEDOC_ANDRETURN.string.text
+msgid "~Close & Return to "
+msgstr "~Закрити та повернутися до"
+
+#: resource.src#POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION.MENUITEM_TOOLBAR_VISIBLEBUTTON.menuitem.text
+msgid "Visible ~Buttons"
+msgstr "Показати ~кнопки"
+
+#: resource.src#POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION.MENUITEM_TOOLBAR_CUSTOMIZETOOLBAR.menuitem.text
+msgid "~Customize Toolbar..."
+msgstr "~Налаштувати панелі інструментів..."
+
+#: resource.src#POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION.MENUITEM_TOOLBAR_DOCKTOOLBAR.menuitem.text
+msgid "~Dock Toolbar"
+msgstr "~Закріпити панель інструментів"
+
+#: resource.src#POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION.MENUITEM_TOOLBAR_DOCKALLTOOLBAR.menuitem.text
+msgid "Dock ~All Toolbars"
+msgstr "Закріпити ~всі панелі інструментів"
+
+#: resource.src#POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION.MENUITEM_TOOLBAR_LOCKTOOLBARPOSITION.menuitem.text
+msgid "~Lock Toolbar Position"
+msgstr "~Блокувати позицію панелі інструментів"
+
+#: resource.src#POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION.MENUITEM_TOOLBAR_CLOSE.menuitem.text
+msgid "Close ~Toolbar"
+msgstr "Закрити п~анель інструментів"
+
+#: resource.src#STR_SAVECOPYDOC.string.text
+msgid "Save Copy ~as..."
+msgstr "Зберегти копію ~як..."
+
+#: resource.src#STR_NODOCUMENT.string.text
+msgid "No Documents"
+msgstr "Немає документів"
+
+#: resource.src#STR_TOOLBAR_TITLE_ADDON.string.text
+msgid "Add-On %num%"
+msgstr "Розширення %num%"
+
+#: resource.src#STR_STATUSBAR_LOGOTEXT.string.text
+msgid "A %PRODUCTNAME product by %OOOVENDOR"
+msgstr "Продукт %PRODUCTNAME від %OOOVENDOR"
+
+#: resource.src#DLG_LICENSE.FT_INFO1.fixedtext.text
+msgid "Please follow these steps to proceed with the installation:"
+msgstr "Виконайте наступні дії, щоб продовжити встановлення:"
+
+#: 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 "Перегляньте повністю ліцензійну угоду. Користуйтесь смугою прокрутки або кнопкою '%PAGEDOWN' для перегляду тексту ліцензії."
+
+#: resource.src#DLG_LICENSE.PB_PAGEDOWN.pushbutton.text
+msgid "Scroll Down"
+msgstr "Прокрутити вниз"
+
+#: 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 "Прийняти ліцензійну угоду."
+
+#: resource.src#DLG_LICENSE.LICENSE_ACCEPT.string.text
+msgid "~Accept"
+msgstr "~Прийняти"
+
+#: resource.src#DLG_LICENSE.LICENSE_NOTACCEPT.string.text
+msgid "Decline"
+msgstr "Відхилити"
+
+#: resource.src#DLG_LICENSE.modaldialog.text
+msgid "License Agreement"
+msgstr "Ліцензійна угода"
+
+#: resource.src#STR_FULL_DISC_RETRY_BUTTON.string.text
+msgid "Retry"
+msgstr "Повторити"
+
+#: 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 не може зберігати важливу внутрішню інформацію через брак місця на диску за наступним шляхом:\n"
+"%PATH\n"
+"\n"
+"Буде неможливо продовжити роботу з %PRODUCTNAME без виділення додаткового вільного місця на диску за цією адресою.\n"
+"\n"
+"Після виділення додаткового місця на диску натисніть кнопку \"Повторити\" для повторення спроби збереження даних.\n"
+"\n"
+
+#: resource.src#STR_RESTORE_TOOLBARS.string.text
+msgid "~Reset"
+msgstr "~Відновити"
+
+#: 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 ""
+"Помилка при завантаженні конфігурації інтерфейсу користувача. Програму буде закрито.\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 ""
+"Помилка при завантаженні конфігурації інтерфейсу користувача. Програму буде закрито.\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 ""
+"Помилка завантаження конфігурацій інтерфейсу користувача. Програму буде закрито.\n"
+"Спробуйте видалити профіль користувача та перевстановити програму."
+
+#: resource.src#STR_UNTITLED_DOCUMENT.string.text
+msgid "Untitled"
+msgstr "Без назви"
+
+#: resource.src#STR_LANGSTATUS_MULTIPLE_LANGUAGES.string.text
+msgid "Multiple Languages"
+msgstr "Декілька мов"
+
+#: resource.src#STR_LANGSTATUS_NONE.string.text
+msgid "None (Do not check spelling)"
+msgstr "Немає (не перевіряти орфографію)"
+
+#: resource.src#STR_RESET_TO_DEFAULT_LANGUAGE.string.text
+msgid "Reset to Default Language"
+msgstr ""
+
+#: resource.src#STR_LANGSTATUS_MORE.string.text
+msgid "More..."
+msgstr "Додатково..."
+
+#: resource.src#STR_SET_LANGUAGE_FOR_SELECTION.string.text
+msgid "Set Language for Selection"
+msgstr "Встановити мову для виділення"
+
+#: resource.src#STR_SET_LANGUAGE_FOR_PARAGRAPH.string.text
+msgid "Set Language for Paragraph"
+msgstr "Встановити мову для абзацу"
+
+#: resource.src#STR_SET_LANGUAGE_FOR_ALL_TEXT.string.text
+msgid "Set Language for all Text"
+msgstr "Встановити мову для всього тексту"
diff --git a/source/uk/framework/source/services.po b/source/uk/framework/source/services.po
new file mode 100644
index 00000000000..66b51b1bbd5
--- /dev/null
+++ b/source/uk/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: 2011-04-06 04:17+0200\n"
+"Last-Translator: Daniel <ted.korostiled@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "Створити новий документ"
+
+#: fwk_services.src#DLG_BACKING.STR_BACKING_TEMPLATE.string.text
+msgid "~Templates..."
+msgstr "~Шаблони..."
+
+#: fwk_services.src#DLG_BACKING.STR_BACKING_FILE.string.text
+msgid "~Open..."
+msgstr "~Відкрити..."
+
+#: fwk_services.src#DLG_BACKING.STR_BACKING_EXTHELP.string.text
+msgid "Add new features to %PRODUCTNAME"
+msgstr "Додати нову властивість до %PRODUCTNAME"
+
+#: fwk_services.src#DLG_BACKING.STR_BACKING_INFOHELP.string.text
+msgid "Get more information about %PRODUCTNAME"
+msgstr "Отримати додаткову інформацію про %PRODUCTNAME"
+
+#: fwk_services.src#DLG_BACKING.STR_BACKING_TPLREP.string.text
+msgid "Get more templates for %PRODUCTNAME"
+msgstr "Завантажити ще шаблони для %PRODUCTNAME"
diff --git a/source/uk/helpcontent2/source/text/sbasic/guide.po b/source/uk/helpcontent2/source/text/sbasic/guide.po
new file mode 100644
index 00000000000..f45377f5318
--- /dev/null
+++ b/source/uk/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 23:19+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: translation.xhp#par_id5806756.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Add UI languages for your dialog strings.</ahelp>"
+msgstr ""
+
+#: translation.xhp#hd_id6596881.help.text
+msgid "To enable localizable dialogs"
+msgstr ""
+
+#: 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 ""
+
+#: translation.xhp#par_id2224494.help.text
+msgid "If the current library already contains a localizable dialog, the Language toolbar is shown automatically."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: translation.xhp#par_id6529740.help.text
+msgid "Click Add in the dialog to add a language entry. "
+msgstr ""
+
+#: translation.xhp#par_id7811822.help.text
+msgid "This step enables all new dialogs to contain localizable string resources."
+msgstr ""
+
+#: 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 ""
+
+#: translation.xhp#par_id3640247.help.text
+msgid "You can also change the default language in the Manage User Interface Language dialog."
+msgstr ""
+
+#: translation.xhp#par_id3808404.help.text
+msgid "Select a language. "
+msgstr ""
+
+#: 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 ""
+
+#: translation.xhp#par_id2394482.help.text
+msgid "Close the dialog or add additional languages."
+msgstr ""
+
+#: translation.xhp#hd_id631733.help.text
+msgid "To edit localizable controls in your dialog"
+msgstr ""
+
+#: 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 ""
+
+#: translation.xhp#par_id8956572.help.text
+msgid "Switch the Current Language listbox to display the default language."
+msgstr ""
+
+#: translation.xhp#par_id500808.help.text
+msgid "Insert any number of controls to your dialog and enter all strings you want."
+msgstr ""
+
+#: translation.xhp#par_id8366649.help.text
+msgid "Select another language in the Current Language listbox."
+msgstr ""
+
+#: translation.xhp#par_id476393.help.text
+msgid "Using the control's property dialogs, edit all strings to the other language."
+msgstr ""
+
+#: translation.xhp#par_id2655720.help.text
+msgid "Repeat for all languages that you added."
+msgstr ""
+
+#: 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 ""
+
+#: translation.xhp#par_id5977965.help.text
+msgid "If no language matches the user's version, the user will see the default language strings. "
+msgstr ""
+
+#: 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 ""
+
+#: sample_code.xhp#tit.help.text
+msgid "Programming Examples for Controls in the Dialog Editor"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: sample_code.xhp#hd_id3154909.4.help.text
+msgid "Global Function for Loading Dialogs"
+msgstr ""
+
+#: sample_code.xhp#par_id3153193.73.help.text
+msgid "Function LoadDialog(Libname as String, DialogName as String, Optional oLibContainer)"
+msgstr ""
+
+#: sample_code.xhp#par_id3145787.74.help.text
+msgid "Dim oLib as Object"
+msgstr ""
+
+#: sample_code.xhp#par_id3148576.75.help.text
+msgid "Dim oLibDialog as Object"
+msgstr ""
+
+#: sample_code.xhp#par_id3153726.76.help.text
+msgid "Dim oRuntimeDialog as Object"
+msgstr ""
+
+#: sample_code.xhp#par_id3149261.77.help.text
+msgid "If IsMissing(oLibContainer ) then"
+msgstr ""
+
+#: sample_code.xhp#par_id3148646.78.help.text
+msgid "oLibContainer = DialogLibraries"
+msgstr ""
+
+#: sample_code.xhp#par_id3151115.79.help.text
+msgid "End If"
+msgstr ""
+
+#: sample_code.xhp#par_id3146986.80.help.text
+msgid "oLibContainer.LoadLibrary(LibName)"
+msgstr ""
+
+#: sample_code.xhp#par_id3145366.81.help.text
+msgid "oLib = oLibContainer.GetByName(Libname)"
+msgstr ""
+
+#: sample_code.xhp#par_id3145271.82.help.text
+msgid "oLibDialog = oLib.GetByName(DialogName)"
+msgstr ""
+
+#: sample_code.xhp#par_id3144764.83.help.text
+msgid "oRuntimeDialog = CreateUnoDialog(oLibDialog)"
+msgstr ""
+
+#: sample_code.xhp#par_id3153876.84.help.text
+msgid "LoadDialog() = oRuntimeDialog"
+msgstr ""
+
+#: sample_code.xhp#par_id3156286.85.help.text
+msgid "End Function"
+msgstr ""
+
+#: sample_code.xhp#hd_id3149412.18.help.text
+msgid "Displaying a Dialog"
+msgstr ""
+
+#: sample_code.xhp#par_id3145801.86.help.text
+msgid "rem global definition of variables"
+msgstr ""
+
+#: sample_code.xhp#par_id3150716.87.help.text
+msgid "Dim oDialog1 AS Object"
+msgstr ""
+
+#: sample_code.xhp#par_id3154510.88.help.text
+msgid "Sub StartDialog1"
+msgstr ""
+
+#: sample_code.xhp#par_id3146913.162.help.text
+msgctxt "sample_code.xhp#par_id3146913.162.help.text"
+msgid "BasicLibraries.LoadLibrary(\"Tools\")"
+msgstr ""
+
+#: sample_code.xhp#par_id3150327.89.help.text
+msgctxt "sample_code.xhp#par_id3150327.89.help.text"
+msgid "oDialog1 = LoadDialog(\"Standard\", \"Dialog1\")"
+msgstr ""
+
+#: sample_code.xhp#par_id3155767.92.help.text
+msgctxt "sample_code.xhp#par_id3155767.92.help.text"
+msgid "oDialog1.Execute()"
+msgstr ""
+
+#: sample_code.xhp#par_id3149019.93.help.text
+msgctxt "sample_code.xhp#par_id3149019.93.help.text"
+msgid "end sub"
+msgstr ""
+
+#: sample_code.xhp#hd_id3150042.27.help.text
+msgid "Read or Edit Properties of Controls in the Program"
+msgstr ""
+
+#: sample_code.xhp#par_id3159267.136.help.text
+msgid "Sub Sample1"
+msgstr ""
+
+#: sample_code.xhp#par_id3155335.163.help.text
+msgctxt "sample_code.xhp#par_id3155335.163.help.text"
+msgid "BasicLibraries.LoadLibrary(\"Tools\")"
+msgstr ""
+
+#: sample_code.xhp#par_id3163808.137.help.text
+msgctxt "sample_code.xhp#par_id3163808.137.help.text"
+msgid "oDialog1 = LoadDialog(\"Standard\", \"Dialog1\")"
+msgstr ""
+
+#: sample_code.xhp#par_id3145232.138.help.text
+msgid "REM get dialog model"
+msgstr ""
+
+#: sample_code.xhp#par_id3146316.139.help.text
+msgctxt "sample_code.xhp#par_id3146316.139.help.text"
+msgid "oDialog1Model = oDialog1.Model"
+msgstr ""
+
+#: sample_code.xhp#par_id3154021.140.help.text
+msgid "REM display text of Label1"
+msgstr ""
+
+#: sample_code.xhp#par_id3150301.141.help.text
+msgid "oLabel1 = oDialog1.GetControl(\"Label1\")"
+msgstr ""
+
+#: sample_code.xhp#par_id3152584.142.help.text
+msgid "MsgBox oLabel1.Text"
+msgstr ""
+
+#: sample_code.xhp#par_id3151277.143.help.text
+msgid "REM set new text for control Label1"
+msgstr ""
+
+#: sample_code.xhp#par_id3154119.144.help.text
+msgid "oLabel1.Text = \"New Files\""
+msgstr ""
+
+#: sample_code.xhp#par_id3155115.145.help.text
+msgid "REM display model properties for the control CheckBox1"
+msgstr ""
+
+#: sample_code.xhp#par_id3166426.146.help.text
+msgid "oCheckBox1Model = oDialog1Model.CheckBox1"
+msgstr ""
+
+#: sample_code.xhp#par_id3153270.147.help.text
+msgid "MsgBox oCheckBox1Model.Dbg_Properties"
+msgstr ""
+
+#: sample_code.xhp#par_id3149817.148.help.text
+msgid "REM set new state for CheckBox1 for model of control"
+msgstr ""
+
+#: sample_code.xhp#par_id3145134.149.help.text
+msgid "oCheckBox1Model.State = 1"
+msgstr ""
+
+#: sample_code.xhp#par_id3159102.150.help.text
+msgid "REM display model properties for control CommandButton1"
+msgstr ""
+
+#: sample_code.xhp#par_id3152777.151.help.text
+msgid "oCMD1Model = oDialog1Model.CommandButton1"
+msgstr ""
+
+#: sample_code.xhp#par_id3149209.152.help.text
+msgid "MsgBox oCMD1Model.Dbg_Properties"
+msgstr ""
+
+#: sample_code.xhp#par_id3150368.153.help.text
+msgid "REM display properties of control CommandButton1"
+msgstr ""
+
+#: sample_code.xhp#par_id3150883.154.help.text
+msgid "oCMD1 = oDialog1.GetControl(\"CommandButton1\")"
+msgstr ""
+
+#: sample_code.xhp#par_id3155380.155.help.text
+msgid "MsgBox oCMD1.Dbg_Properties"
+msgstr ""
+
+#: sample_code.xhp#par_id3150201.156.help.text
+msgid "REM execute dialog"
+msgstr ""
+
+#: sample_code.xhp#par_id3154485.157.help.text
+msgctxt "sample_code.xhp#par_id3154485.157.help.text"
+msgid "oDialog1.Execute()"
+msgstr ""
+
+#: sample_code.xhp#par_id3146115.158.help.text
+msgctxt "sample_code.xhp#par_id3146115.158.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: sample_code.xhp#hd_id3145387.55.help.text
+msgid "Add an Entry to a ListBox"
+msgstr ""
+
+#: sample_code.xhp#par_id3155088.122.help.text
+msgid "Sub AddEntry"
+msgstr ""
+
+#: sample_code.xhp#par_id3154528.164.help.text
+msgctxt "sample_code.xhp#par_id3154528.164.help.text"
+msgid "BasicLibraries.LoadLibrary(\"Tools\")"
+msgstr ""
+
+#: sample_code.xhp#par_id3159222.159.help.text
+msgctxt "sample_code.xhp#par_id3159222.159.help.text"
+msgid "oDialog1 = LoadDialog(\"Standard\", \"Dialog1\")"
+msgstr ""
+
+#: sample_code.xhp#par_id3148700.123.help.text
+msgid "REM adds a new entry to the ListBox"
+msgstr ""
+
+#: sample_code.xhp#par_id3159173.124.help.text
+msgctxt "sample_code.xhp#par_id3159173.124.help.text"
+msgid "oDialog1Model = oDialog1.Model"
+msgstr ""
+
+#: sample_code.xhp#par_id3153305.125.help.text
+msgctxt "sample_code.xhp#par_id3153305.125.help.text"
+msgid "oListBox = oDialog1.GetControl(\"ListBox1\")"
+msgstr ""
+
+#: sample_code.xhp#par_id3153914.126.help.text
+msgid "dim iCount as integer"
+msgstr ""
+
+#: sample_code.xhp#par_id3151243.127.help.text
+msgid "iCount = oListbox.ItemCount"
+msgstr ""
+
+#: sample_code.xhp#par_id3144504.128.help.text
+msgid "oListbox.additem(\"New Item\" & iCount,0)"
+msgstr ""
+
+#: sample_code.xhp#par_id3149328.129.help.text
+msgctxt "sample_code.xhp#par_id3149328.129.help.text"
+msgid "end sub"
+msgstr ""
+
+#: sample_code.xhp#hd_id3147071.64.help.text
+msgid "Remove an Entry from a ListBox"
+msgstr ""
+
+#: sample_code.xhp#par_id3159095.130.help.text
+msgid "Sub RemoveEntry"
+msgstr ""
+
+#: sample_code.xhp#par_id3154958.165.help.text
+msgctxt "sample_code.xhp#par_id3154958.165.help.text"
+msgid "BasicLibraries.LoadLibrary(\"Tools\")"
+msgstr ""
+
+#: sample_code.xhp#par_id3149443.160.help.text
+msgctxt "sample_code.xhp#par_id3149443.160.help.text"
+msgid "oDialog1 = LoadDialog(\"Standard\", \"Dialog1\")"
+msgstr ""
+
+#: sample_code.xhp#par_id3153247.131.help.text
+msgid "REM remove the first entry from the ListBox"
+msgstr ""
+
+#: sample_code.xhp#par_id3151302.132.help.text
+msgctxt "sample_code.xhp#par_id3151302.132.help.text"
+msgid "oDialog1Model = oDialog1.Model"
+msgstr ""
+
+#: sample_code.xhp#par_id3153976.133.help.text
+msgctxt "sample_code.xhp#par_id3153976.133.help.text"
+msgid "oListBox = oDialog1.GetControl(\"ListBox1\")"
+msgstr ""
+
+#: sample_code.xhp#par_id3155383.134.help.text
+msgid "oListbox.removeitems(0,1)"
+msgstr ""
+
+#: sample_code.xhp#par_id3150892.135.help.text
+msgctxt "sample_code.xhp#par_id3150892.135.help.text"
+msgid "end sub"
+msgstr ""
+
+#: show_dialog.xhp#tit.help.text
+msgid "Opening a Dialog With Program Code"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: show_dialog.xhp#par_id3156443.7.help.text
+msgctxt "show_dialog.xhp#par_id3156443.7.help.text"
+msgid "Sub Dialog1Show"
+msgstr ""
+
+#: show_dialog.xhp#par_id3148575.24.help.text
+msgctxt "show_dialog.xhp#par_id3148575.24.help.text"
+msgid "BasicLibraries.LoadLibrary(\"Tools\")"
+msgstr ""
+
+#: 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 ""
+
+#: show_dialog.xhp#par_id3148646.14.help.text
+msgctxt "show_dialog.xhp#par_id3148646.14.help.text"
+msgid "oDialog1.Execute()"
+msgstr ""
+
+#: show_dialog.xhp#par_id3147349.15.help.text
+msgctxt "show_dialog.xhp#par_id3147349.15.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: show_dialog.xhp#par_id3152596.18.help.text
+msgid "Without using \"LoadDialog\" you can call the code as follows:"
+msgstr ""
+
+#: show_dialog.xhp#par_id3163710.19.help.text
+msgctxt "show_dialog.xhp#par_id3163710.19.help.text"
+msgid "Sub Dialog1Show"
+msgstr ""
+
+#: show_dialog.xhp#par_id3146985.20.help.text
+msgid "DialogLibraries.LoadLibrary( \"Standard\" )"
+msgstr ""
+
+#: show_dialog.xhp#par_id3155418.21.help.text
+msgid "oDialog1 = CreateUnoDialog( DialogLibraries.Standard.Dialog1 )"
+msgstr ""
+
+#: show_dialog.xhp#par_id3154944.22.help.text
+msgctxt "show_dialog.xhp#par_id3154944.22.help.text"
+msgid "oDialog1.Execute()"
+msgstr ""
+
+#: show_dialog.xhp#par_id3145800.23.help.text
+msgctxt "show_dialog.xhp#par_id3145800.23.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 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 ""
+
+#: create_dialog.xhp#tit.help.text
+msgid "Creating a Basic Dialog"
+msgstr ""
+
+#: create_dialog.xhp#bm_id3149346.help.text
+msgid "<bookmark_value>dialogs;creating Basic dialogs</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: create_dialog.xhp#par_id3163802.3.help.text
+msgid "Choose <emph>Tools - Macros - Organize Dialogs</emph>, and then click <emph>New</emph>."
+msgstr ""
+
+#: 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 ""
+
+#: create_dialog.xhp#par_idN1065F.help.text
+msgid "Click <emph>Edit</emph>. The Basic dialog editor opens and contains a blank dialog."
+msgstr ""
+
+#: 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 ""
+
+#: create_dialog.xhp#par_id3148455.12.help.text
+msgid "Click a tool and then drag in the dialog to create the control."
+msgstr ""
+
+#: control_properties.xhp#tit.help.text
+msgid "Changing the Properties of Controls in the Dialog Editor"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: insert_control.xhp#tit.help.text
+msgid "Creating Controls in the Dialog Editor"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: insert_control.xhp#par_id3145068.3.help.text
+msgid "Click a tool on the toolbar, for example, <emph>Button</emph>."
+msgstr ""
+
+#: insert_control.xhp#par_id3153360.4.help.text
+msgid "On the dialog, drag the button to the size you want."
+msgstr ""
diff --git a/source/uk/helpcontent2/source/text/sbasic/shared.po b/source/uk/helpcontent2/source/text/sbasic/shared.po
new file mode 100644
index 00000000000..188e85d0ebd
--- /dev/null
+++ b/source/uk/helpcontent2/source/text/sbasic/shared.po
@@ -0,0 +1,24937 @@
+#. 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: 2011-04-13 00:17+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 03120103.xhp#tit.help.text
+msgid "Str Function [Runtime]"
+msgstr ""
+
+#: 03120103.xhp#bm_id3143272.help.text
+msgid "<bookmark_value>Str function</bookmark_value>"
+msgstr ""
+
+#: 03120103.xhp#hd_id3143272.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120103.xhp\" name=\"Str Function [Runtime]\">Str Function [Runtime]</link>"
+msgstr ""
+
+#: 03120103.xhp#par_id3155100.2.help.text
+msgid "Converts a numeric expression into a string."
+msgstr ""
+
+#: 03120103.xhp#hd_id3109850.3.help.text
+msgctxt "03120103.xhp#hd_id3109850.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03120103.xhp#par_id3149497.4.help.text
+msgid "Str (Expression)"
+msgstr ""
+
+#: 03120103.xhp#hd_id3150040.5.help.text
+msgctxt "03120103.xhp#hd_id3150040.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03120103.xhp#par_id3146117.6.help.text
+msgctxt "03120103.xhp#par_id3146117.6.help.text"
+msgid "String"
+msgstr ""
+
+#: 03120103.xhp#hd_id3155805.7.help.text
+msgctxt "03120103.xhp#hd_id3155805.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03120103.xhp#par_id3149178.8.help.text
+msgid "<emph>Expression: </emph>Any numeric expression."
+msgstr ""
+
+#: 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 ""
+
+#: 03120103.xhp#hd_id3155419.10.help.text
+msgctxt "03120103.xhp#hd_id3155419.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03120103.xhp#par_id3149514.11.help.text
+msgid "Sub ExampleStr"
+msgstr ""
+
+#: 03120103.xhp#par_id3150771.12.help.text
+msgctxt "03120103.xhp#par_id3150771.12.help.text"
+msgid "Dim iVar As Single"
+msgstr ""
+
+#: 03120103.xhp#par_id3153626.13.help.text
+msgctxt "03120103.xhp#par_id3153626.13.help.text"
+msgid "Dim sVar As String"
+msgstr ""
+
+#: 03120103.xhp#par_id3145069.14.help.text
+msgctxt "03120103.xhp#par_id3145069.14.help.text"
+msgid "iVar = 123.123"
+msgstr ""
+
+#: 03120103.xhp#par_id3153897.15.help.text
+msgid "sVar = LTrim(Str(iVar))"
+msgstr ""
+
+#: 03120103.xhp#par_id3154924.16.help.text
+msgid "Msgbox sVar & chr(13) & Str(iVar)"
+msgstr ""
+
+#: 03120103.xhp#par_id3152811.17.help.text
+msgctxt "03120103.xhp#par_id3152811.17.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03100060.xhp#tit.help.text
+msgid "CDec Function [Runtime]"
+msgstr ""
+
+#: 03100060.xhp#bm_id863979.help.text
+msgid "<bookmark_value>CDec function</bookmark_value>"
+msgstr ""
+
+#: 03100060.xhp#par_idN10548.help.text
+msgid "<link href=\"text/sbasic/shared/03100060.xhp\">CDec Function [Runtime]</link>"
+msgstr ""
+
+#: 03100060.xhp#par_idN10558.help.text
+msgid "Converts a string expression or numeric expression to a decimal expression."
+msgstr ""
+
+#: 03100060.xhp#par_idN1055B.help.text
+msgctxt "03100060.xhp#par_idN1055B.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03100060.xhp#par_idN105EA.help.text
+msgid "CDec(Expression)"
+msgstr ""
+
+#: 03100060.xhp#par_idN105ED.help.text
+msgctxt "03100060.xhp#par_idN105ED.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03100060.xhp#par_idN105F1.help.text
+msgid "Decimal number."
+msgstr ""
+
+#: 03100060.xhp#par_idN105F4.help.text
+msgctxt "03100060.xhp#par_idN105F4.help.text"
+msgid "Parameter:"
+msgstr ""
+
+#: 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 ""
+
+#: 03103450.xhp#tit.help.text
+msgid "Global Statement [Runtime]"
+msgstr ""
+
+#: 03103450.xhp#bm_id3159201.help.text
+msgid "<bookmark_value>Global statement</bookmark_value>"
+msgstr ""
+
+#: 03103450.xhp#hd_id3159201.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103450.xhp\" name=\"Global Statement [Runtime]\">Global Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03103450.xhp#hd_id3143270.3.help.text
+msgctxt "03103450.xhp#hd_id3143270.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03103450.xhp#par_id3150771.4.help.text
+msgid "Global VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
+msgstr ""
+
+#: 03103450.xhp#hd_id3156152.5.help.text
+msgctxt "03103450.xhp#hd_id3156152.5.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03103450.xhp#par_id3145315.6.help.text
+msgid "Global iGlobalVar As Integer"
+msgstr ""
+
+#: 03103450.xhp#par_id3147531.7.help.text
+msgid "Sub ExampleGlobal"
+msgstr ""
+
+#: 03103450.xhp#par_id3149670.8.help.text
+msgid "iGlobalVar = iGlobalVar + 1"
+msgstr ""
+
+#: 03103450.xhp#par_id3148552.9.help.text
+msgid "MsgBox iGlobalVar"
+msgstr ""
+
+#: 03103450.xhp#par_id3149457.10.help.text
+msgctxt "03103450.xhp#par_id3149457.10.help.text"
+msgid "End sub"
+msgstr ""
+
+#: 03060200.xhp#tit.help.text
+msgid "Eqv Operator [Runtime]"
+msgstr ""
+
+#: 03060200.xhp#bm_id3156344.help.text
+msgid "<bookmark_value>Eqv operator (logical)</bookmark_value>"
+msgstr ""
+
+#: 03060200.xhp#hd_id3156344.1.help.text
+msgid "<link href=\"text/sbasic/shared/03060200.xhp\" name=\"Eqv Operator [Runtime]\">Eqv Operator [Runtime]</link>"
+msgstr ""
+
+#: 03060200.xhp#par_id3149656.2.help.text
+msgid "Calculates the logical equivalence of two expressions."
+msgstr ""
+
+#: 03060200.xhp#hd_id3154367.3.help.text
+msgctxt "03060200.xhp#hd_id3154367.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03060200.xhp#par_id3154910.4.help.text
+msgid "Result = Expression1 Eqv Expression2"
+msgstr ""
+
+#: 03060200.xhp#hd_id3151043.5.help.text
+msgctxt "03060200.xhp#hd_id3151043.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03060200.xhp#par_id3150869.6.help.text
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the comparison."
+msgstr ""
+
+#: 03060200.xhp#par_id3150448.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to compare."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03060200.xhp#hd_id3159154.10.help.text
+msgctxt "03060200.xhp#hd_id3159154.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03060200.xhp#par_id3147426.11.help.text
+msgid "Sub ExampleEqv"
+msgstr ""
+
+#: 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 ""
+
+#: 03060200.xhp#par_id3146986.13.help.text
+msgctxt "03060200.xhp#par_id3146986.13.help.text"
+msgid "Dim vOut as Variant"
+msgstr ""
+
+#: 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 ""
+
+#: 03060200.xhp#par_id3152462.15.help.text
+msgid "vOut = A > B Eqv B > C REM returns -1"
+msgstr ""
+
+#: 03060200.xhp#par_id3153191.16.help.text
+msgid "vOut = B > A Eqv B > C REM returns 0"
+msgstr ""
+
+#: 03060200.xhp#par_id3145799.17.help.text
+msgid "vOut = A > B Eqv B > D REM returns 0"
+msgstr ""
+
+#: 03060200.xhp#par_id3149412.18.help.text
+msgid "vOut = (B > D Eqv B > A) REM returns -1"
+msgstr ""
+
+#: 03060200.xhp#par_id3149959.19.help.text
+msgid "vOut = B Eqv A REM returns -3"
+msgstr ""
+
+#: 03060200.xhp#par_id3145646.20.help.text
+msgctxt "03060200.xhp#par_id3145646.20.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03020401.xhp#tit.help.text
+msgid "ChDir Statement [Runtime]"
+msgstr ""
+
+#: 03020401.xhp#bm_id3150178.help.text
+msgid "<bookmark_value>ChDir statement</bookmark_value>"
+msgstr ""
+
+#: 03020401.xhp#hd_id3150178.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020401.xhp\" name=\"ChDir Statement [Runtime]\">ChDir Statement [Runtime]</link>"
+msgstr ""
+
+#: 03020401.xhp#par_id3153126.2.help.text
+msgid "Changes the current directory or drive."
+msgstr ""
+
+#: 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 ""
+
+#: 03020401.xhp#hd_id3154347.3.help.text
+msgctxt "03020401.xhp#hd_id3154347.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020401.xhp#par_id3153897.4.help.text
+msgid "ChDir Text As String"
+msgstr ""
+
+#: 03020401.xhp#hd_id3148664.5.help.text
+msgctxt "03020401.xhp#hd_id3148664.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03020401.xhp#par_id3150543.6.help.text
+msgid "<emph>Text:</emph> Any string expression that specifies the directory path or drive."
+msgstr ""
+
+#: 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 ""
+
+#: 03020401.xhp#hd_id3151116.8.help.text
+msgctxt "03020401.xhp#hd_id3151116.8.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020401.xhp#par_id3153364.9.help.text
+msgid "Sub ExampleChDir"
+msgstr ""
+
+#: 03020401.xhp#par_id3147348.10.help.text
+msgctxt "03020401.xhp#par_id3147348.10.help.text"
+msgid "Dim sDir1 as String , sDir2 as String"
+msgstr ""
+
+#: 03020401.xhp#par_id3155308.11.help.text
+msgctxt "03020401.xhp#par_id3155308.11.help.text"
+msgid "sDir1 = \"c:\\Test\""
+msgstr ""
+
+#: 03020401.xhp#par_id3154319.12.help.text
+msgctxt "03020401.xhp#par_id3154319.12.help.text"
+msgid "sDir2 = \"d:\\private\""
+msgstr ""
+
+#: 03020401.xhp#par_id3154944.13.help.text
+msgctxt "03020401.xhp#par_id3154944.13.help.text"
+msgid "ChDir( sDir1 )"
+msgstr ""
+
+#: 03020401.xhp#par_id3151074.14.help.text
+msgctxt "03020401.xhp#par_id3151074.14.help.text"
+msgid "msgbox CurDir"
+msgstr ""
+
+#: 03020401.xhp#par_id3147124.15.help.text
+msgctxt "03020401.xhp#par_id3147124.15.help.text"
+msgid "ChDir( sDir2 )"
+msgstr ""
+
+#: 03020401.xhp#par_id3148456.16.help.text
+msgctxt "03020401.xhp#par_id3148456.16.help.text"
+msgid "msgbox CurDir"
+msgstr ""
+
+#: 03020401.xhp#par_id3149581.17.help.text
+msgctxt "03020401.xhp#par_id3149581.17.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03100400.xhp#tit.help.text
+msgid "CDbl Function [Runtime]"
+msgstr ""
+
+#: 03100400.xhp#bm_id3153750.help.text
+msgid "<bookmark_value>CDbl function</bookmark_value>"
+msgstr ""
+
+#: 03100400.xhp#hd_id3153750.1.help.text
+msgid "<link href=\"text/sbasic/shared/03100400.xhp\" name=\"CDbl Function [Runtime]\">CDbl Function [Runtime]</link>"
+msgstr ""
+
+#: 03100400.xhp#par_id3149233.2.help.text
+msgid "Converts any numerical expression or string expression to a double type."
+msgstr ""
+
+#: 03100400.xhp#hd_id3149516.3.help.text
+msgctxt "03100400.xhp#hd_id3149516.3.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 03100400.xhp#par_id3156152.4.help.text
+msgid "CDbl (Expression)"
+msgstr ""
+
+#: 03100400.xhp#hd_id3153061.5.help.text
+msgctxt "03100400.xhp#hd_id3153061.5.help.text"
+msgid "Return value"
+msgstr ""
+
+#: 03100400.xhp#par_id3145068.6.help.text
+msgctxt "03100400.xhp#par_id3145068.6.help.text"
+msgid "Double"
+msgstr ""
+
+#: 03100400.xhp#hd_id3154760.7.help.text
+msgctxt "03100400.xhp#hd_id3154760.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03100400.xhp#hd_id3148797.9.help.text
+msgctxt "03100400.xhp#hd_id3148797.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03100400.xhp#par_id3154217.10.help.text
+msgctxt "03100400.xhp#par_id3154217.10.help.text"
+msgid "Sub ExampleCountryConvert"
+msgstr ""
+
+#: 03100400.xhp#par_id3147229.11.help.text
+msgctxt "03100400.xhp#par_id3147229.11.help.text"
+msgid "Msgbox CDbl(1234.5678)"
+msgstr ""
+
+#: 03100400.xhp#par_id3151042.12.help.text
+msgctxt "03100400.xhp#par_id3151042.12.help.text"
+msgid "Msgbox CInt(1234.5678)"
+msgstr ""
+
+#: 03100400.xhp#par_id3150616.13.help.text
+msgctxt "03100400.xhp#par_id3150616.13.help.text"
+msgid "Msgbox CLng(1234.5678)"
+msgstr ""
+
+#: 03100400.xhp#par_id3153969.14.help.text
+msgctxt "03100400.xhp#par_id3153969.14.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03131500.xhp#tit.help.text
+msgid "CreateUnoStruct Function [Runtime]"
+msgstr ""
+
+#: 03131500.xhp#bm_id3150499.help.text
+msgid "<bookmark_value>CreateUnoStruct function</bookmark_value>"
+msgstr ""
+
+#: 03131500.xhp#hd_id3150499.1.help.text
+msgid "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"CreateUnoStruct Function [Runtime]\">CreateUnoStruct Function [Runtime]</link>"
+msgstr ""
+
+#: 03131500.xhp#par_id3150713.2.help.text
+msgid "<ahelp hid=\".\">Creates an instance of a Uno structure type.</ahelp>"
+msgstr ""
+
+#: 03131500.xhp#par_id3147226.3.help.text
+msgid "Use the following structure for your statement:"
+msgstr ""
+
+#: 03131500.xhp#par_id3149177.4.help.text
+msgid "Dim oStruct as new com.sun.star.beans.Property"
+msgstr ""
+
+#: 03131500.xhp#hd_id3156153.5.help.text
+msgctxt "03131500.xhp#hd_id3156153.5.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03131500.xhp#par_id3155341.6.help.text
+msgid "oStruct = CreateUnoStruct( Uno type name )"
+msgstr ""
+
+#: 03131500.xhp#hd_id3145316.7.help.text
+msgctxt "03131500.xhp#hd_id3145316.7.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03131500.xhp#par_id3149762.8.help.text
+msgid "oStruct = CreateUnoStruct( \"com.sun.star.beans.Property\" )"
+msgstr ""
+
+#: 03090403.xhp#tit.help.text
+msgid "Declare Statement [Runtime]"
+msgstr ""
+
+#: 03090403.xhp#bm_id3148473.help.text
+msgid "<bookmark_value>Declare statement</bookmark_value>"
+msgstr ""
+
+#: 03090403.xhp#hd_id3148473.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare Statement [Runtime]\">Declare Statement [Runtime]</link>"
+msgstr ""
+
+#: 03090403.xhp#bm_id3145316.help.text
+msgid "<bookmark_value>DLL (Dynamic Link Library)</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 03090403.xhp#par_id3146795.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">FreeLibrary</link>"
+msgstr ""
+
+#: 03090403.xhp#hd_id3156344.4.help.text
+msgctxt "03090403.xhp#hd_id3156344.4.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03090403.xhp#par_id3148664.5.help.text
+msgid "Declare {Sub | Function} Name Lib \"Libname\" [Alias \"Aliasname\"] [Parameter] [As Type]"
+msgstr ""
+
+#: 03090403.xhp#hd_id3153360.6.help.text
+msgctxt "03090403.xhp#hd_id3153360.6.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03090403.xhp#par_id3150870.9.help.text
+msgid "<emph>Aliasname</emph>: Name of the subroutine as defined in the DLL."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03090403.xhp#hd_id3153951.14.help.text
+msgctxt "03090403.xhp#hd_id3153951.14.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 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 ""
+
+#: 03090403.xhp#par_id3150417.17.help.text
+msgctxt "03090403.xhp#par_id3150417.17.help.text"
+msgid "Sub ExampleDeclare"
+msgstr ""
+
+#: 03090403.xhp#par_id3149959.18.help.text
+msgctxt "03090403.xhp#par_id3149959.18.help.text"
+msgid "Dim lValue As Long"
+msgstr ""
+
+#: 03090403.xhp#par_id3145647.19.help.text
+msgctxt "03090403.xhp#par_id3145647.19.help.text"
+msgid "lValue = 5000"
+msgstr ""
+
+#: 03090403.xhp#par_id3145801.20.help.text
+msgctxt "03090403.xhp#par_id3145801.20.help.text"
+msgid "MyMessageBeep( lValue )"
+msgstr ""
+
+#: 03090403.xhp#par_id3145253.21.help.text
+msgctxt "03090403.xhp#par_id3145253.21.help.text"
+msgid "FreeLibrary(\"user32.dll\" )"
+msgstr ""
+
+#: 03090403.xhp#par_id3149402.22.help.text
+msgctxt "03090403.xhp#par_id3149402.22.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03100300.xhp#tit.help.text
+msgid "CDate Function [Runtime]"
+msgstr ""
+
+#: 03100300.xhp#bm_id3150772.help.text
+msgid "<bookmark_value>CDate function</bookmark_value>"
+msgstr ""
+
+#: 03100300.xhp#hd_id3150772.1.help.text
+msgid "<link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate Function [Runtime]\">CDate Function [Runtime]</link>"
+msgstr ""
+
+#: 03100300.xhp#par_id3150986.2.help.text
+msgid "Converts any string or numeric expression to a date value."
+msgstr ""
+
+#: 03100300.xhp#hd_id3148944.3.help.text
+msgctxt "03100300.xhp#hd_id3148944.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03100300.xhp#par_id3148947.4.help.text
+msgid "CDate (Expression)"
+msgstr ""
+
+#: 03100300.xhp#hd_id3148552.5.help.text
+msgctxt "03100300.xhp#hd_id3148552.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03100300.xhp#par_id3159414.6.help.text
+msgctxt "03100300.xhp#par_id3159414.6.help.text"
+msgid "Date"
+msgstr ""
+
+#: 03100300.xhp#hd_id3153525.7.help.text
+msgctxt "03100300.xhp#hd_id3153525.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03100300.xhp#par_id3150359.8.help.text
+msgid "<emph>Expression:</emph> Any string or numeric expression that you want to convert."
+msgstr ""
+
+#: 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 ""
+
+#: 03100300.xhp#hd_id3156422.10.help.text
+msgctxt "03100300.xhp#hd_id3156422.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03100300.xhp#par_id3153969.11.help.text
+msgid "sub ExampleCDate"
+msgstr ""
+
+#: 03100300.xhp#par_id3159254.12.help.text
+msgid "MsgBox cDate(1000.25) REM 09.26.1902 06:00:00"
+msgstr ""
+
+#: 03100300.xhp#par_id3155133.13.help.text
+msgid "MsgBox cDate(1001.26) REM 09.27.1902 06:14:24"
+msgstr ""
+
+#: 03100300.xhp#par_id3153140.14.help.text
+msgctxt "03100300.xhp#par_id3153140.14.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03103900.xhp#tit.help.text
+msgid "FindPropertyObject Function [Runtime]"
+msgstr ""
+
+#: 03103900.xhp#bm_id3146958.help.text
+msgid "<bookmark_value>FindPropertyObject function</bookmark_value>"
+msgstr ""
+
+#: 03103900.xhp#hd_id3146958.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject Function [Runtime]\">FindPropertyObject Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03103900.xhp#par_id3147573.3.help.text
+msgid "For instance, the command:"
+msgstr ""
+
+#: 03103900.xhp#par_id3145610.4.help.text
+msgctxt "03103900.xhp#par_id3145610.4.help.text"
+msgid "MyObj.Prop1.Command = 5"
+msgstr ""
+
+#: 03103900.xhp#par_id3147265.5.help.text
+msgid "corresponds to the following command block:"
+msgstr ""
+
+#: 03103900.xhp#par_id3153896.6.help.text
+msgctxt "03103900.xhp#par_id3153896.6.help.text"
+msgid "Dim ObjVar as Object"
+msgstr ""
+
+#: 03103900.xhp#par_id3148664.7.help.text
+msgctxt "03103900.xhp#par_id3148664.7.help.text"
+msgid "Dim ObjProp as Object"
+msgstr ""
+
+#: 03103900.xhp#par_id3150792.8.help.text
+msgctxt "03103900.xhp#par_id3150792.8.help.text"
+msgid "ObjName As String = \"MyObj\""
+msgstr ""
+
+#: 03103900.xhp#par_id3154365.9.help.text
+msgctxt "03103900.xhp#par_id3154365.9.help.text"
+msgid "ObjVar = FindObject( ObjName As String )"
+msgstr ""
+
+#: 03103900.xhp#par_id3148453.10.help.text
+msgctxt "03103900.xhp#par_id3148453.10.help.text"
+msgid "PropName As String = \"Prop1\""
+msgstr ""
+
+#: 03103900.xhp#par_id3150449.11.help.text
+msgctxt "03103900.xhp#par_id3150449.11.help.text"
+msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
+msgstr ""
+
+#: 03103900.xhp#par_id3159152.12.help.text
+msgctxt "03103900.xhp#par_id3159152.12.help.text"
+msgid "ObjProp.Command = 5"
+msgstr ""
+
+#: 03103900.xhp#par_id3156214.13.help.text
+msgid "To dynamically create Names at run-time, use:"
+msgstr ""
+
+#: 03103900.xhp#par_id3154686.14.help.text
+msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five names."
+msgstr ""
+
+#: 03103900.xhp#par_id3150868.15.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">FindObject</link>"
+msgstr ""
+
+#: 03103900.xhp#hd_id3147287.16.help.text
+msgctxt "03103900.xhp#hd_id3147287.16.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03103900.xhp#par_id3149560.17.help.text
+msgid "FindPropertyObject( ObjVar, PropName As String )"
+msgstr ""
+
+#: 03103900.xhp#hd_id3150012.18.help.text
+msgctxt "03103900.xhp#hd_id3150012.18.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03103900.xhp#par_id3109839.19.help.text
+msgid "<emph>ObjVar:</emph> Object variable that you want to dynamically define at run-time."
+msgstr ""
+
+#: 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 ""
+
+#: 03103800.xhp#tit.help.text
+msgid "FindObject Function [Runtime]"
+msgstr ""
+
+#: 03103800.xhp#bm_id3145136.help.text
+msgid "<bookmark_value>FindObject function</bookmark_value>"
+msgstr ""
+
+#: 03103800.xhp#hd_id3145136.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject Function [Runtime]\">FindObject Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03103800.xhp#par_id3150669.3.help.text
+msgid "For example, the following command:"
+msgstr ""
+
+#: 03103800.xhp#par_id3148473.4.help.text
+msgctxt "03103800.xhp#par_id3148473.4.help.text"
+msgid "MyObj.Prop1.Command = 5"
+msgstr ""
+
+#: 03103800.xhp#par_id3156023.5.help.text
+msgid "corresponds to the command block:"
+msgstr ""
+
+#: 03103800.xhp#par_id3153896.6.help.text
+msgctxt "03103800.xhp#par_id3153896.6.help.text"
+msgid "Dim ObjVar as Object"
+msgstr ""
+
+#: 03103800.xhp#par_id3154760.7.help.text
+msgctxt "03103800.xhp#par_id3154760.7.help.text"
+msgid "Dim ObjProp as Object"
+msgstr ""
+
+#: 03103800.xhp#par_id3145069.8.help.text
+msgctxt "03103800.xhp#par_id3145069.8.help.text"
+msgid "ObjName As String = \"MyObj\""
+msgstr ""
+
+#: 03103800.xhp#par_id3154939.9.help.text
+msgctxt "03103800.xhp#par_id3154939.9.help.text"
+msgid "ObjVar = FindObject( ObjName As String )"
+msgstr ""
+
+#: 03103800.xhp#par_id3150793.10.help.text
+msgctxt "03103800.xhp#par_id3150793.10.help.text"
+msgid "PropName As String = \"Prop1\""
+msgstr ""
+
+#: 03103800.xhp#par_id3154141.11.help.text
+msgctxt "03103800.xhp#par_id3154141.11.help.text"
+msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
+msgstr ""
+
+#: 03103800.xhp#par_id3156424.12.help.text
+msgctxt "03103800.xhp#par_id3156424.12.help.text"
+msgid "ObjProp.Command = 5"
+msgstr ""
+
+#: 03103800.xhp#par_id3145420.13.help.text
+msgid "This allows names to be dynamically created at run-time. For example:"
+msgstr ""
+
+#: 03103800.xhp#par_id3153104.14.help.text
+msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five control names."
+msgstr ""
+
+#: 03103800.xhp#par_id3150767.15.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link>"
+msgstr ""
+
+#: 03103800.xhp#hd_id3150868.16.help.text
+msgctxt "03103800.xhp#hd_id3150868.16.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03103800.xhp#par_id3151042.17.help.text
+msgid "FindObject( ObjName As String )"
+msgstr ""
+
+#: 03103800.xhp#hd_id3159254.18.help.text
+msgctxt "03103800.xhp#hd_id3159254.18.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03050300.xhp#tit.help.text
+msgid "Error Function [Runtime]"
+msgstr ""
+
+#: 03050300.xhp#bm_id3159413.help.text
+msgid "<bookmark_value>Error function</bookmark_value>"
+msgstr ""
+
+#: 03050300.xhp#hd_id3159413.1.help.text
+msgid "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error Function [Runtime]\">Error Function [Runtime]</link>"
+msgstr ""
+
+#: 03050300.xhp#par_id3148663.2.help.text
+msgid "Returns the error message that corresponds to a given error code."
+msgstr ""
+
+#: 03050300.xhp#hd_id3153379.3.help.text
+msgctxt "03050300.xhp#hd_id3153379.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03050300.xhp#par_id3154366.4.help.text
+msgid "Error (Expression)"
+msgstr ""
+
+#: 03050300.xhp#hd_id3145173.5.help.text
+msgctxt "03050300.xhp#hd_id3145173.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03050300.xhp#par_id3154125.6.help.text
+msgctxt "03050300.xhp#par_id3154125.6.help.text"
+msgid "String"
+msgstr ""
+
+#: 03050300.xhp#hd_id3150869.7.help.text
+msgctxt "03050300.xhp#hd_id3150869.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03120300.xhp#tit.help.text
+msgid "Editing String Contents"
+msgstr ""
+
+#: 03120300.xhp#bm_id7499008.help.text
+msgid "<bookmark_value>ampersand symbol in StarBasic</bookmark_value>"
+msgstr ""
+
+#: 03120300.xhp#hd_id3153894.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120300.xhp\" name=\"Editing String Contents\">Editing String Contents</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03102100.xhp#tit.help.text
+msgid "Dim Statement [Runtime]"
+msgstr ""
+
+#: 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 ""
+
+#: 03102100.xhp#hd_id3149812.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102100.xhp\" name=\"Dim Statement [Runtime]\">Dim Statement [Runtime]</link>"
+msgstr ""
+
+#: 03102100.xhp#par_id3143271.2.help.text
+msgctxt "03102100.xhp#par_id3143271.2.help.text"
+msgid "Declares a variable or an array."
+msgstr ""
+
+#: 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 ""
+
+#: 03102100.xhp#par_id3156422.4.help.text
+msgid "DIM sPar1 AS STRING"
+msgstr ""
+
+#: 03102100.xhp#par_id3159252.5.help.text
+msgid "DIM sPar2 AS STRING"
+msgstr ""
+
+#: 03102100.xhp#par_id3153142.6.help.text
+msgid "DIM sPar3 AS STRING"
+msgstr ""
+
+#: 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 ""
+
+#: 03102100.xhp#hd_id3156443.8.help.text
+msgctxt "03102100.xhp#hd_id3156443.8.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 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 ""
+
+#: 03102100.xhp#hd_id3147397.10.help.text
+msgctxt "03102100.xhp#hd_id3147397.10.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03102100.xhp#par_id3153877.13.help.text
+msgid "Start and End can be numerical expressions if ReDim is applied at the procedure level."
+msgstr ""
+
+#: 03102100.xhp#par_id3153510.14.help.text
+msgid "<emph>VarType:</emph> Key word that declares the data type of a variable."
+msgstr ""
+
+#: 03102100.xhp#par_id3154015.15.help.text
+msgctxt "03102100.xhp#par_id3154015.15.help.text"
+msgid "<emph>Keyword:</emph> Variable type"
+msgstr ""
+
+#: 03102100.xhp#par_id3153949.16.help.text
+msgid "<emph>Bool:</emph> Boolean variable (True, False)"
+msgstr ""
+
+#: 03102100.xhp#par_id3156275.17.help.text
+msgid "<emph>Currency:</emph> Currency-Variable (Currency with 4 Decimal places)"
+msgstr ""
+
+#: 03102100.xhp#par_id3156057.18.help.text
+msgctxt "03102100.xhp#par_id3156057.18.help.text"
+msgid "<emph>Date:</emph> Date variable"
+msgstr ""
+
+#: 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 ""
+
+#: 03102100.xhp#par_id3148916.20.help.text
+msgctxt "03102100.xhp#par_id3148916.20.help.text"
+msgid "<emph>Integer:</emph> Integer variable (-32768 - 32767)"
+msgstr ""
+
+#: 03102100.xhp#par_id3150045.21.help.text
+msgid "<emph>Long:</emph> Long integer variable (-2.147.483.648 - 2.147.483.647)"
+msgstr ""
+
+#: 03102100.xhp#par_id3149255.22.help.text
+msgid "<emph>Object:</emph> Object variable (Note: this variable can only subsequently be defined with Set!)"
+msgstr ""
+
+#: 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 ""
+
+#: 03102100.xhp#par_id3151251.24.help.text
+msgid "<emph>String:</emph> String variable consisting of a maximum of 64,000 ASCII characters."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03102100.xhp#par_id3154662.29.help.text
+msgid "DIM text(20) as String REM 21 elements numbered from 0 to 20"
+msgstr ""
+
+#: 03102100.xhp#par_id3155604.30.help.text
+msgid "DIM text(5 to 25) as String REM 21 elements numbered from 5 to 25"
+msgstr ""
+
+#: 03102100.xhp#par_id3151274.31.help.text
+msgid "DIM text(-15 to 5) as String REM 21 elements (including 0)"
+msgstr ""
+
+#: 03102100.xhp#par_id3152774.32.help.text
+msgid "REM numbered from -15 to 5"
+msgstr ""
+
+#: 03102100.xhp#par_id3150829.33.help.text
+msgid "Two-dimensional data field"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03102100.xhp#hd_id3150344.36.help.text
+msgctxt "03102100.xhp#hd_id3150344.36.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03102100.xhp#par_id3150206.37.help.text
+msgid "Sub ExampleDim1"
+msgstr ""
+
+#: 03102100.xhp#par_id3154201.38.help.text
+msgctxt "03102100.xhp#par_id3154201.38.help.text"
+msgid "Dim sVar As String"
+msgstr ""
+
+#: 03102100.xhp#par_id3146134.39.help.text
+msgctxt "03102100.xhp#par_id3146134.39.help.text"
+msgid "Dim iVar As Integer"
+msgstr ""
+
+#: 03102100.xhp#par_id3154657.40.help.text
+msgctxt "03102100.xhp#par_id3154657.40.help.text"
+msgid "sVar = \"Office\""
+msgstr ""
+
+#: 03102100.xhp#par_id3148459.41.help.text
+msgctxt "03102100.xhp#par_id3148459.41.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03102100.xhp#par_id3166424.43.help.text
+msgid "Sub ExampleDim2"
+msgstr ""
+
+#: 03102100.xhp#par_id3149036.44.help.text
+msgid "REM Two-dimensional data field"
+msgstr ""
+
+#: 03102100.xhp#par_id3149737.45.help.text
+msgid "Dim stext(20,2) as String"
+msgstr ""
+
+#: 03102100.xhp#par_id3153782.46.help.text
+msgid "Const sDim as String = \" Dimension:\""
+msgstr ""
+
+#: 03102100.xhp#par_id3150518.48.help.text
+msgctxt "03102100.xhp#par_id3150518.48.help.text"
+msgid "for i = 0 to 20"
+msgstr ""
+
+#: 03102100.xhp#par_id3166428.49.help.text
+msgctxt "03102100.xhp#par_id3166428.49.help.text"
+msgid "for ii = 0 to 2"
+msgstr ""
+
+#: 03102100.xhp#par_id3152994.50.help.text
+msgid "stext(i,ii) = str(i) & sDim & str(ii)"
+msgstr ""
+
+#: 03102100.xhp#par_id3150202.51.help.text
+msgctxt "03102100.xhp#par_id3150202.51.help.text"
+msgid "next ii"
+msgstr ""
+
+#: 03102100.xhp#par_id3154370.52.help.text
+msgctxt "03102100.xhp#par_id3154370.52.help.text"
+msgid "next i"
+msgstr ""
+
+#: 03102100.xhp#par_id3156166.54.help.text
+msgctxt "03102100.xhp#par_id3156166.54.help.text"
+msgid "for i = 0 to 20"
+msgstr ""
+
+#: 03102100.xhp#par_id3148815.55.help.text
+msgctxt "03102100.xhp#par_id3148815.55.help.text"
+msgid "for ii = 0 to 2"
+msgstr ""
+
+#: 03102100.xhp#par_id3146981.56.help.text
+msgid "msgbox stext(i,ii)"
+msgstr ""
+
+#: 03102100.xhp#par_id3155125.57.help.text
+msgctxt "03102100.xhp#par_id3155125.57.help.text"
+msgid "next ii"
+msgstr ""
+
+#: 03102100.xhp#par_id3154528.58.help.text
+msgctxt "03102100.xhp#par_id3154528.58.help.text"
+msgid "next i"
+msgstr ""
+
+#: 03102100.xhp#par_id3155087.59.help.text
+msgctxt "03102100.xhp#par_id3155087.59.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03010102.xhp#tit.help.text
+msgid "MsgBox Function [Runtime]"
+msgstr ""
+
+#: 03010102.xhp#bm_id3153379.help.text
+msgid "<bookmark_value>MsgBox function</bookmark_value>"
+msgstr ""
+
+#: 03010102.xhp#hd_id3153379.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010102.xhp\" name=\"MsgBox Function [Runtime]\">MsgBox Function [Runtime]</link>"
+msgstr ""
+
+#: 03010102.xhp#par_id3145171.2.help.text
+msgid "Displays a dialog box containing a message and returns a value."
+msgstr ""
+
+#: 03010102.xhp#hd_id3156281.3.help.text
+msgctxt "03010102.xhp#hd_id3156281.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03010102.xhp#par_id3154685.4.help.text
+msgid "MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]])"
+msgstr ""
+
+#: 03010102.xhp#hd_id3153771.5.help.text
+msgctxt "03010102.xhp#hd_id3153771.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03010102.xhp#par_id3146985.6.help.text
+msgctxt "03010102.xhp#par_id3146985.6.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03010102.xhp#hd_id3153363.7.help.text
+msgctxt "03010102.xhp#hd_id3153363.7.help.text"
+msgid "Parameter:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03010102.xhp#par_id3154319.11.help.text
+msgid "<emph>Values</emph>"
+msgstr ""
+
+#: 03010102.xhp#par_id3147397.12.help.text
+msgctxt "03010102.xhp#par_id3147397.12.help.text"
+msgid "0 : Display OK button only."
+msgstr ""
+
+#: 03010102.xhp#par_id3145646.13.help.text
+msgctxt "03010102.xhp#par_id3145646.13.help.text"
+msgid "1 : Display OK and Cancel buttons."
+msgstr ""
+
+#: 03010102.xhp#par_id3149410.14.help.text
+msgctxt "03010102.xhp#par_id3149410.14.help.text"
+msgid "2 : Display Abort, Retry, and Ignore buttons."
+msgstr ""
+
+#: 03010102.xhp#par_id3151075.15.help.text
+msgid "3 : Display Yes, No, and Cancel buttons."
+msgstr ""
+
+#: 03010102.xhp#par_id3153878.16.help.text
+msgctxt "03010102.xhp#par_id3153878.16.help.text"
+msgid "4 : Display Yes and No buttons."
+msgstr ""
+
+#: 03010102.xhp#par_id3155601.17.help.text
+msgctxt "03010102.xhp#par_id3155601.17.help.text"
+msgid "5 : Display Retry and Cancel buttons."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03010102.xhp#par_id3150751.20.help.text
+msgid "48 : Add the Exclamation Point icon to the dialog."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03010102.xhp#par_id3159267.25.help.text
+msgid "<emph>Return value:</emph>"
+msgstr ""
+
+#: 03010102.xhp#par_id3145230.26.help.text
+msgid "1 : OK"
+msgstr ""
+
+#: 03010102.xhp#par_id3149567.27.help.text
+msgid "2 : Cancel"
+msgstr ""
+
+#: 03010102.xhp#par_id4056825.help.text
+msgid "3 : Abort"
+msgstr ""
+
+#: 03010102.xhp#par_id3155335.28.help.text
+msgid "4 : Retry"
+msgstr ""
+
+#: 03010102.xhp#par_id3146918.29.help.text
+msgid "5 : Ignore"
+msgstr ""
+
+#: 03010102.xhp#par_id3155961.30.help.text
+msgid "6 : Yes"
+msgstr ""
+
+#: 03010102.xhp#par_id3148488.31.help.text
+msgid "7 : No"
+msgstr ""
+
+#: 03010102.xhp#hd_id3150090.40.help.text
+msgctxt "03010102.xhp#hd_id3150090.40.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03010102.xhp#par_id3154120.41.help.text
+msgctxt "03010102.xhp#par_id3154120.41.help.text"
+msgid "Sub ExampleMsgBox"
+msgstr ""
+
+#: 03010102.xhp#par_id3145131.42.help.text
+msgid "Dim sVar as Integer"
+msgstr ""
+
+#: 03010102.xhp#par_id3151278.43.help.text
+msgid "sVar = MsgBox(\"Las Vegas\")"
+msgstr ""
+
+#: 03010102.xhp#par_id3149034.44.help.text
+msgid "sVar = MsgBox(\"Las Vegas\",1)"
+msgstr ""
+
+#: 03010102.xhp#par_id3166424.45.help.text
+msgid "sVar = MsgBox( \"Las Vegas\",256 + 16 + 2,\"Dialog title\")"
+msgstr ""
+
+#: 03010102.xhp#par_id3152581.46.help.text
+msgctxt "03010102.xhp#par_id3152581.46.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03010100.xhp#tit.help.text
+msgid "Display Functions"
+msgstr ""
+
+#: 03010100.xhp#hd_id3151384.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010100.xhp\" name=\"Display Functions\">Display Functions</link>"
+msgstr ""
+
+#: 03010100.xhp#par_id3149346.2.help.text
+msgid "This section describes Runtime functions used to output information to the screen display."
+msgstr ""
+
+#: 03010301.xhp#tit.help.text
+msgid "Blue Function [Runtime]"
+msgstr ""
+
+#: 03010301.xhp#bm_id3149180.help.text
+msgid "<bookmark_value>Blue function</bookmark_value>"
+msgstr ""
+
+#: 03010301.xhp#hd_id3149180.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Blue Function [Runtime]\">Blue Function [Runtime]</link>"
+msgstr ""
+
+#: 03010301.xhp#par_id3156343.2.help.text
+msgid "Returns the blue component of the specified color code."
+msgstr ""
+
+#: 03010301.xhp#hd_id3149670.3.help.text
+msgctxt "03010301.xhp#hd_id3149670.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03010301.xhp#par_id3149457.4.help.text
+msgid "Blue (Color As Long)"
+msgstr ""
+
+#: 03010301.xhp#hd_id3149656.5.help.text
+msgctxt "03010301.xhp#hd_id3149656.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03010301.xhp#par_id3154365.6.help.text
+msgctxt "03010301.xhp#par_id3154365.6.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03010301.xhp#hd_id3156423.7.help.text
+msgctxt "03010301.xhp#hd_id3156423.7.help.text"
+msgid "Parameter:"
+msgstr ""
+
+#: 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 ""
+
+#: 03010301.xhp#hd_id3153091.9.help.text
+msgctxt "03010301.xhp#hd_id3153091.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03010301.xhp#par_id3153143.10.help.text
+msgctxt "03010301.xhp#par_id3153143.10.help.text"
+msgid "Sub ExampleColor"
+msgstr ""
+
+#: 03010301.xhp#par_id3149664.11.help.text
+msgctxt "03010301.xhp#par_id3149664.11.help.text"
+msgid "Dim lVar As Long"
+msgstr ""
+
+#: 03010301.xhp#par_id3148576.12.help.text
+msgctxt "03010301.xhp#par_id3148576.12.help.text"
+msgid "lVar = rgb(128,0,200)"
+msgstr ""
+
+#: 03010301.xhp#par_id3154012.13.help.text
+msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgstr ""
+
+#: 03010301.xhp#par_id3148645.14.help.text
+msgid "\"red= \" & Red(lVar) & Chr(13)&_"
+msgstr ""
+
+#: 03010301.xhp#par_id3159155.15.help.text
+msgid "\"green= \" & Green(lVar) & Chr(13)&_"
+msgstr ""
+
+#: 03010301.xhp#par_id3147319.16.help.text
+msgid "\"blue= \" & Blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr ""
+
+#: 03010301.xhp#par_id3147434.17.help.text
+msgctxt "03010301.xhp#par_id3147434.17.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03132500.xhp#tit.help.text
+msgid "GetDefaultContext Function [Runtime]"
+msgstr ""
+
+#: 03132500.xhp#bm_id4761192.help.text
+msgid "<bookmark_value>GetDefaultContext function</bookmark_value>"
+msgstr ""
+
+#: 03132500.xhp#par_idN10580.help.text
+msgid "<link href=\"text/sbasic/shared/03132500.xhp\">GetDefaultContext Function [Runtime]</link>"
+msgstr ""
+
+#: 03132500.xhp#par_idN10590.help.text
+msgid "Returns the default context of the process service factory, if existent, else returns a null reference. "
+msgstr ""
+
+#: 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 ""
+
+#: 03104200.xhp#tit.help.text
+msgid "Array Function [Runtime]"
+msgstr ""
+
+#: 03104200.xhp#bm_id3150499.help.text
+msgid "<bookmark_value>Array function</bookmark_value>"
+msgstr ""
+
+#: 03104200.xhp#hd_id3150499.1.help.text
+msgid "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array Function [Runtime]\">Array Function [Runtime]</link>"
+msgstr ""
+
+#: 03104200.xhp#par_id3155555.2.help.text
+msgid "Returns the type Variant with a data field."
+msgstr ""
+
+#: 03104200.xhp#hd_id3148538.3.help.text
+msgctxt "03104200.xhp#hd_id3148538.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03104200.xhp#par_id3153126.4.help.text
+msgid "Array ( Argument list)"
+msgstr ""
+
+#: 03104200.xhp#par_id3155419.5.help.text
+msgid "See also <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
+msgstr ""
+
+#: 03104200.xhp#hd_id3150669.6.help.text
+msgctxt "03104200.xhp#hd_id3150669.6.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03104200.xhp#hd_id3156343.8.help.text
+msgctxt "03104200.xhp#hd_id3156343.8.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03104200.xhp#par_id3153897.9.help.text
+msgid "Dim A As Variant"
+msgstr ""
+
+#: 03104200.xhp#par_id3153525.10.help.text
+msgid "A = Array(\"Fred\",\"Tom\",\"Bill\")"
+msgstr ""
+
+#: 03104200.xhp#par_id3150792.11.help.text
+msgid "Msgbox A(2)"
+msgstr ""
+
+#: 03120400.xhp#tit.help.text
+msgid "Editing String Length"
+msgstr ""
+
+#: 03120400.xhp#hd_id3155150.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"Editing String Length\">Editing String Length</link>"
+msgstr ""
+
+#: 03120400.xhp#par_id3159201.2.help.text
+msgid "The following functions determine string lengths and compare strings."
+msgstr ""
+
+#: 03090402.xhp#tit.help.text
+msgid "Choose Function [Runtime]"
+msgstr ""
+
+#: 03090402.xhp#bm_id3143271.help.text
+msgid "<bookmark_value>Choose function</bookmark_value>"
+msgstr ""
+
+#: 03090402.xhp#hd_id3143271.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090402.xhp\" name=\"Choose Function [Runtime]\">Choose Function [Runtime]</link>"
+msgstr ""
+
+#: 03090402.xhp#par_id3149234.2.help.text
+msgid "Returns a selected value from a list of arguments."
+msgstr ""
+
+#: 03090402.xhp#hd_id3148943.3.help.text
+msgctxt "03090402.xhp#hd_id3148943.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03090402.xhp#par_id3147560.4.help.text
+msgid "Choose (Index, Selection1[, Selection2, ... [,Selection_n]])"
+msgstr ""
+
+#: 03090402.xhp#hd_id3154346.5.help.text
+msgctxt "03090402.xhp#hd_id3154346.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03090402.xhp#par_id3148664.6.help.text
+msgid "<emph>Index:</emph> A numeric expression that specifies the value to return."
+msgstr ""
+
+#: 03090402.xhp#par_id3150791.7.help.text
+msgid "<emph>Selection1:</emph> Any expression that contains one of the possible choices."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03090402.xhp#hd_id3150439.11.help.text
+msgctxt "03090402.xhp#hd_id3150439.11.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03090402.xhp#par_id3153091.12.help.text
+msgid "Sub ExampleChoose"
+msgstr ""
+
+#: 03090402.xhp#par_id3152597.13.help.text
+msgctxt "03090402.xhp#par_id3152597.13.help.text"
+msgid "Dim sReturn As String"
+msgstr ""
+
+#: 03090402.xhp#par_id3155855.14.help.text
+msgid "sReturn = ChooseMenu(2)"
+msgstr ""
+
+#: 03090402.xhp#par_id3148575.15.help.text
+msgctxt "03090402.xhp#par_id3148575.15.help.text"
+msgid "Print sReturn"
+msgstr ""
+
+#: 03090402.xhp#par_id3154012.16.help.text
+msgctxt "03090402.xhp#par_id3154012.16.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03090402.xhp#par_id3146921.19.help.text
+msgid "Function ChooseMenu(Index As Integer)"
+msgstr ""
+
+#: 03090402.xhp#par_id3156443.20.help.text
+msgid "ChooseMenu = Choose(Index, \"Quick Format\", \"Save Format\", \"System Format\")"
+msgstr ""
+
+#: 03090402.xhp#par_id3148645.21.help.text
+msgctxt "03090402.xhp#par_id3148645.21.help.text"
+msgid "End Function"
+msgstr ""
+
+#: 03100070.xhp#tit.help.text
+msgid "CVar Function [Runtime]"
+msgstr ""
+
+#: 03100070.xhp#bm_id2338633.help.text
+msgid "<bookmark_value>CVar function</bookmark_value>"
+msgstr ""
+
+#: 03100070.xhp#par_idN1054B.help.text
+msgid "<link href=\"text/sbasic/shared/03100070.xhp\">CVar Function [Runtime]</link>"
+msgstr ""
+
+#: 03100070.xhp#par_idN1055B.help.text
+msgid "Converts a string expression or numeric expression to a variant expression."
+msgstr ""
+
+#: 03100070.xhp#par_idN1055E.help.text
+msgctxt "03100070.xhp#par_idN1055E.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03100070.xhp#par_idN10562.help.text
+msgid "CVar(Expression)"
+msgstr ""
+
+#: 03100070.xhp#par_idN10565.help.text
+msgctxt "03100070.xhp#par_idN10565.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03100070.xhp#par_idN10569.help.text
+msgctxt "03100070.xhp#par_idN10569.help.text"
+msgid "Variant."
+msgstr ""
+
+#: 03100070.xhp#par_idN1056C.help.text
+msgctxt "03100070.xhp#par_idN1056C.help.text"
+msgid "Parameter:"
+msgstr ""
+
+#: 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 ""
+
+#: 03020304.xhp#tit.help.text
+msgid "Seek Function [Runtime]"
+msgstr ""
+
+#: 03020304.xhp#bm_id3154367.help.text
+msgid "<bookmark_value>Seek function</bookmark_value>"
+msgstr ""
+
+#: 03020304.xhp#hd_id3154367.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek Function [Runtime]\">Seek Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020304.xhp#hd_id3152460.6.help.text
+msgctxt "03020304.xhp#hd_id3152460.6.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020304.xhp#par_id3145365.7.help.text
+msgid "Seek (FileNumber)"
+msgstr ""
+
+#: 03020304.xhp#hd_id3148575.8.help.text
+msgctxt "03020304.xhp#hd_id3148575.8.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03020304.xhp#par_id3159156.9.help.text
+msgctxt "03020304.xhp#par_id3159156.9.help.text"
+msgid "Long"
+msgstr ""
+
+#: 03020304.xhp#hd_id3149665.10.help.text
+msgctxt "03020304.xhp#hd_id3149665.10.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03020304.xhp#par_id3148645.11.help.text
+msgid "<emph>FileNumber:</emph> The data channel number used in the Open statement."
+msgstr ""
+
+#: 03120312.xhp#tit.help.text
+msgid "ConvertToURL Function [Runtime]"
+msgstr ""
+
+#: 03120312.xhp#bm_id3152801.help.text
+msgid "<bookmark_value>ConvertToURL function</bookmark_value>"
+msgstr ""
+
+#: 03120312.xhp#hd_id3152801.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"ConvertToURL Function [Runtime]\">ConvertToURL Function [Runtime]</link>"
+msgstr ""
+
+#: 03120312.xhp#par_id3148538.2.help.text
+msgid "Converts a system file name to a file URL."
+msgstr ""
+
+#: 03120312.xhp#hd_id3150669.3.help.text
+msgctxt "03120312.xhp#hd_id3150669.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03120312.xhp#par_id3154285.4.help.text
+msgid "ConvertToURL(filename)"
+msgstr ""
+
+#: 03120312.xhp#hd_id3150984.5.help.text
+msgctxt "03120312.xhp#hd_id3150984.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03120312.xhp#par_id3147530.6.help.text
+msgctxt "03120312.xhp#par_id3147530.6.help.text"
+msgid "String"
+msgstr ""
+
+#: 03120312.xhp#hd_id3148550.7.help.text
+msgctxt "03120312.xhp#hd_id3148550.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03120312.xhp#par_id3148947.8.help.text
+msgid "<emph>Filename:</emph> A file name as string."
+msgstr ""
+
+#: 03120312.xhp#hd_id3153361.9.help.text
+msgctxt "03120312.xhp#hd_id3153361.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03120312.xhp#par_id3150792.10.help.text
+msgctxt "03120312.xhp#par_id3150792.10.help.text"
+msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
+msgstr ""
+
+#: 03120312.xhp#par_id3154365.11.help.text
+msgctxt "03120312.xhp#par_id3154365.11.help.text"
+msgid "url$ = ConvertToURL( systemFile$ )"
+msgstr ""
+
+#: 03120312.xhp#par_id3151042.12.help.text
+msgctxt "03120312.xhp#par_id3151042.12.help.text"
+msgid "print url$"
+msgstr ""
+
+#: 03120312.xhp#par_id3154909.13.help.text
+msgctxt "03120312.xhp#par_id3154909.13.help.text"
+msgid "systemFileAgain$ = ConvertFromURL( url$ )"
+msgstr ""
+
+#: 03120312.xhp#par_id3144762.14.help.text
+msgctxt "03120312.xhp#par_id3144762.14.help.text"
+msgid "print systemFileAgain$"
+msgstr ""
+
+#: 03090101.xhp#tit.help.text
+msgid "If...Then...Else Statement [Runtime]"
+msgstr ""
+
+#: 03090101.xhp#bm_id3154422.help.text
+msgid "<bookmark_value>If statement</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03090101.xhp#hd_id3146957.3.help.text
+msgctxt "03090101.xhp#hd_id3146957.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 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 ""
+
+#: 03090101.xhp#hd_id3155419.5.help.text
+msgctxt "03090101.xhp#hd_id3155419.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03090101.xhp#par_id3153192.7.help.text
+msgid "You can nest multiple <emph>If...Then</emph> statements."
+msgstr ""
+
+#: 03090101.xhp#par_id3154684.8.help.text
+msgid "<emph>Else</emph> and <emph>ElseIf</emph> statements are optional."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03090101.xhp#hd_id3152576.11.help.text
+msgctxt "03090101.xhp#hd_id3152576.11.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03090101.xhp#par_id3150011.12.help.text
+msgid "Sub ExampleIfThenDate"
+msgstr ""
+
+#: 03090101.xhp#par_id3148645.13.help.text
+msgctxt "03090101.xhp#par_id3148645.13.help.text"
+msgid "Dim sDate as String"
+msgstr ""
+
+#: 03090101.xhp#par_id3155855.14.help.text
+msgid "Dim sToday as String"
+msgstr ""
+
+#: 03090101.xhp#par_id3154490.16.help.text
+msgid "sDate = InputBox(\"Enter the expiration date (MM.DD.YYYY)\")"
+msgstr ""
+
+#: 03090101.xhp#par_id3154943.17.help.text
+msgid "sDate = Right$(sDate, 4) + Mid$(sDate, 4, 2) + Left$(sDate, 2)"
+msgstr ""
+
+#: 03090101.xhp#par_id3154098.18.help.text
+msgid "sToday = Date$"
+msgstr ""
+
+#: 03090101.xhp#par_id3144765.19.help.text
+msgid "sToday = Right$(sToday, 4)+ Mid$(sToday, 4, 2) + Left$(sToday, 2)"
+msgstr ""
+
+#: 03090101.xhp#par_id3154792.20.help.text
+msgid "If sDate < sToday Then"
+msgstr ""
+
+#: 03090101.xhp#par_id3155601.21.help.text
+msgid "MsgBox \"The expiration date has passed\""
+msgstr ""
+
+#: 03090101.xhp#par_id3146972.22.help.text
+msgid "ElseIf sDate > sToday Then"
+msgstr ""
+
+#: 03090101.xhp#par_id3146912.23.help.text
+msgid "MsgBox \"The expiration date has not yet passed\""
+msgstr ""
+
+#: 03090101.xhp#par_id3153710.24.help.text
+msgid "Else"
+msgstr ""
+
+#: 03090101.xhp#par_id3154754.25.help.text
+msgid "MsgBox \"The expiration date is today\""
+msgstr ""
+
+#: 03090101.xhp#par_id3154361.26.help.text
+msgctxt "03090101.xhp#par_id3154361.26.help.text"
+msgid "End If"
+msgstr ""
+
+#: 03090101.xhp#par_id3148405.28.help.text
+msgctxt "03090101.xhp#par_id3148405.28.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03120310.xhp#tit.help.text
+msgid "UCase Function [Runtime]"
+msgstr ""
+
+#: 03120310.xhp#bm_id3153527.help.text
+msgid "<bookmark_value>UCase function</bookmark_value>"
+msgstr ""
+
+#: 03120310.xhp#hd_id3153527.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase Function [Runtime]\">UCase Function [Runtime]</link>"
+msgstr ""
+
+#: 03120310.xhp#par_id3155420.2.help.text
+msgid "Converts lowercase characters in a string to uppercase."
+msgstr ""
+
+#: 03120310.xhp#par_id3150771.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function\">LCase Function</link>"
+msgstr ""
+
+#: 03120310.xhp#par_id3149233.4.help.text
+msgid "<emph>Syntax</emph>:"
+msgstr ""
+
+#: 03120310.xhp#par_id3153061.5.help.text
+msgid "UCase (Text As String)"
+msgstr ""
+
+#: 03120310.xhp#par_id3159414.6.help.text
+msgid "<emph>Return value</emph>:"
+msgstr ""
+
+#: 03120310.xhp#par_id3146795.7.help.text
+msgctxt "03120310.xhp#par_id3146795.7.help.text"
+msgid "String"
+msgstr ""
+
+#: 03120310.xhp#hd_id3149457.8.help.text
+msgctxt "03120310.xhp#hd_id3149457.8.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03120310.xhp#hd_id3154125.10.help.text
+msgctxt "03120310.xhp#hd_id3154125.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03120310.xhp#par_id3147229.11.help.text
+msgctxt "03120310.xhp#par_id3147229.11.help.text"
+msgid "Sub ExampleLUCase"
+msgstr ""
+
+#: 03120310.xhp#par_id3151381.12.help.text
+msgctxt "03120310.xhp#par_id3151381.12.help.text"
+msgid "Dim sVar As String"
+msgstr ""
+
+#: 03120310.xhp#par_id3153194.13.help.text
+msgctxt "03120310.xhp#par_id3153194.13.help.text"
+msgid "sVar = \"Las Vegas\""
+msgstr ""
+
+#: 03120310.xhp#par_id3149204.14.help.text
+msgid "Print LCase(sVar) REM returns \"las vegas\""
+msgstr ""
+
+#: 03120310.xhp#par_id3156280.15.help.text
+msgid "Print UCase(sVar) REM returns \"LAS VEGAS\""
+msgstr ""
+
+#: 03120310.xhp#par_id3156422.16.help.text
+msgctxt "03120310.xhp#par_id3156422.16.help.text"
+msgid "end Sub"
+msgstr ""
+
+#: 03103100.xhp#tit.help.text
+msgid "Let Statement [Runtime]"
+msgstr ""
+
+#: 03103100.xhp#bm_id3147242.help.text
+msgid "<bookmark_value>Let statement</bookmark_value>"
+msgstr ""
+
+#: 03103100.xhp#hd_id3147242.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103100.xhp\" name=\"Let Statement [Runtime]\">Let Statement [Runtime]</link>"
+msgstr ""
+
+#: 03103100.xhp#par_id3149233.2.help.text
+msgid "Assigns a value to a variable."
+msgstr ""
+
+#: 03103100.xhp#hd_id3153127.3.help.text
+msgctxt "03103100.xhp#hd_id3153127.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03103100.xhp#par_id3154285.4.help.text
+msgid "[Let] VarName=Expression"
+msgstr ""
+
+#: 03103100.xhp#hd_id3148944.5.help.text
+msgctxt "03103100.xhp#hd_id3148944.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03103100.xhp#par_id3148451.7.help.text
+msgid "As in most BASIC dialects, the keyword <emph>Let</emph> is optional."
+msgstr ""
+
+#: 03103100.xhp#hd_id3145785.8.help.text
+msgctxt "03103100.xhp#hd_id3145785.8.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03103100.xhp#par_id3150441.9.help.text
+msgctxt "03103100.xhp#par_id3150441.9.help.text"
+msgid "Sub ExampleLen"
+msgstr ""
+
+#: 03103100.xhp#par_id3159254.10.help.text
+msgctxt "03103100.xhp#par_id3159254.10.help.text"
+msgid "Dim sText as String"
+msgstr ""
+
+#: 03103100.xhp#par_id3149481.11.help.text
+msgid "Let sText = \"Las Vegas\""
+msgstr ""
+
+#: 03103100.xhp#par_id3152939.12.help.text
+msgid "msgbox Len(sText) REM returns 9"
+msgstr ""
+
+#: 03103100.xhp#par_id3146921.13.help.text
+msgctxt "03103100.xhp#par_id3146921.13.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03020412.xhp#tit.help.text
+msgid "Name Statement [Runtime]"
+msgstr ""
+
+#: 03020412.xhp#bm_id3143268.help.text
+msgid "<bookmark_value>Name statement</bookmark_value>"
+msgstr ""
+
+#: 03020412.xhp#hd_id3143268.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020412.xhp\" name=\"Name Statement [Runtime]\">Name Statement [Runtime]</link>"
+msgstr ""
+
+#: 03020412.xhp#par_id3154346.2.help.text
+msgid "Renames an existing file or directory."
+msgstr ""
+
+#: 03020412.xhp#hd_id3156344.3.help.text
+msgctxt "03020412.xhp#hd_id3156344.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020412.xhp#par_id3153381.4.help.text
+msgid "Name OldName As String As NewName As String"
+msgstr ""
+
+#: 03020412.xhp#hd_id3153362.5.help.text
+msgctxt "03020412.xhp#hd_id3153362.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03020412.xhp#hd_id3125863.8.help.text
+msgctxt "03020412.xhp#hd_id3125863.8.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020412.xhp#par_id3145786.9.help.text
+msgid "Sub ExampleReName"
+msgstr ""
+
+#: 03020412.xhp#par_id3161832.10.help.text
+msgid "On Error Goto Error"
+msgstr ""
+
+#: 03020412.xhp#par_id3147435.11.help.text
+msgid "Filecopy \"c:\\autoexec.bat\", \"c:\\temp\\autoexec.sav\""
+msgstr ""
+
+#: 03020412.xhp#par_id3156444.12.help.text
+msgid "Name \"c:\\temp\\autoexec.sav\" as \"c:\\temp\\autoexec.bat\""
+msgstr ""
+
+#: 03020412.xhp#par_id3155308.13.help.text
+msgctxt "03020412.xhp#par_id3155308.13.help.text"
+msgid "end"
+msgstr ""
+
+#: 03020412.xhp#par_id3153727.14.help.text
+msgid "Error:"
+msgstr ""
+
+#: 03020412.xhp#par_id3153951.15.help.text
+msgid "if err = 58 then"
+msgstr ""
+
+#: 03020412.xhp#par_id3152462.16.help.text
+msgid "msgbox \"File already exists\""
+msgstr ""
+
+#: 03020412.xhp#par_id3149263.17.help.text
+msgctxt "03020412.xhp#par_id3149263.17.help.text"
+msgid "end if"
+msgstr ""
+
+#: 03020412.xhp#par_id3154011.18.help.text
+msgctxt "03020412.xhp#par_id3154011.18.help.text"
+msgid "end"
+msgstr ""
+
+#: 03020412.xhp#par_id3146985.19.help.text
+msgctxt "03020412.xhp#par_id3146985.19.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03030205.xhp#tit.help.text
+msgid "TimeSerial Function [Runtime]"
+msgstr ""
+
+#: 03030205.xhp#bm_id3143271.help.text
+msgid "<bookmark_value>TimeSerial function</bookmark_value>"
+msgstr ""
+
+#: 03030205.xhp#hd_id3143271.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030205.xhp\" name=\"TimeSerial Function [Runtime]\">TimeSerial Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03030205.xhp#hd_id3146794.4.help.text
+msgctxt "03030205.xhp#hd_id3146794.4.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03030205.xhp#par_id3150792.5.help.text
+msgid "TimeSerial (hour, minute, second)"
+msgstr ""
+
+#: 03030205.xhp#hd_id3148797.6.help.text
+msgctxt "03030205.xhp#hd_id3148797.6.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03030205.xhp#par_id3154908.7.help.text
+msgctxt "03030205.xhp#par_id3154908.7.help.text"
+msgid "Date"
+msgstr ""
+
+#: 03030205.xhp#hd_id3154124.8.help.text
+msgctxt "03030205.xhp#hd_id3154124.8.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03030205.xhp#par_id3155854.12.help.text
+msgid "<emph>Examples:</emph>"
+msgstr ""
+
+#: 03030205.xhp#par_id3153952.13.help.text
+msgid "12, -5, 45 corresponds to 11, 55, 45"
+msgstr ""
+
+#: 03030205.xhp#par_id3147349.14.help.text
+msgid "12, 61, 45 corresponds to 13, 2, 45"
+msgstr ""
+
+#: 03030205.xhp#par_id3147426.15.help.text
+msgid "12, 20, -2 corresponds to 12, 19, 58"
+msgstr ""
+
+#: 03030205.xhp#par_id3153365.16.help.text
+msgid "12, 20, 63 corresponds to 12, 21, 4"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03030205.xhp#hd_id3154790.20.help.text
+msgctxt "03030205.xhp#hd_id3154790.20.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03030205.xhp#par_id3145252.21.help.text
+msgid "Sub ExampleTimeSerial"
+msgstr ""
+
+#: 03030205.xhp#par_id3153157.22.help.text
+msgid "Dim dDate As Double, sDate As String"
+msgstr ""
+
+#: 03030205.xhp#par_id3156286.23.help.text
+msgid "dDate = TimeSerial(8,30,15)"
+msgstr ""
+
+#: 03030205.xhp#par_id3148456.24.help.text
+msgid "sDate = TimeSerial(8,30,15)"
+msgstr ""
+
+#: 03030205.xhp#par_id3155600.25.help.text
+msgid "MsgBox dDate,64,\"Time as a number\""
+msgstr ""
+
+#: 03030205.xhp#par_id3153417.26.help.text
+msgid "MsgBox sDate,64,\"Formatted time\""
+msgstr ""
+
+#: 03030205.xhp#par_id3153836.27.help.text
+msgctxt "03030205.xhp#par_id3153836.27.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03020101.xhp#tit.help.text
+msgid "Close Statement [Runtime]"
+msgstr ""
+
+#: 03020101.xhp#bm_id3157896.help.text
+msgid "<bookmark_value>Close statement</bookmark_value>"
+msgstr ""
+
+#: 03020101.xhp#hd_id3157896.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020101.xhp\" name=\"Close Statement [Runtime]\">Close Statement [Runtime]</link>"
+msgstr ""
+
+#: 03020101.xhp#par_id3147573.2.help.text
+msgid "Closes a specified file that was opened with the Open statement."
+msgstr ""
+
+#: 03020101.xhp#hd_id3156344.3.help.text
+msgctxt "03020101.xhp#hd_id3156344.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020101.xhp#par_id3147265.4.help.text
+msgid "Close FileNumber As Integer[, FileNumber2 As Integer[,...]] "
+msgstr ""
+
+#: 03020101.xhp#hd_id3153379.5.help.text
+msgctxt "03020101.xhp#hd_id3153379.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03020101.xhp#hd_id3153192.7.help.text
+msgctxt "03020101.xhp#hd_id3153192.7.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020101.xhp#par_id3154909.8.help.text
+msgctxt "03020101.xhp#par_id3154909.8.help.text"
+msgid "Sub ExampleWorkWithAFile"
+msgstr ""
+
+#: 03020101.xhp#par_id3154124.9.help.text
+msgctxt "03020101.xhp#par_id3154124.9.help.text"
+msgid "Dim iNumber As Integer"
+msgstr ""
+
+#: 03020101.xhp#par_id3155132.10.help.text
+msgctxt "03020101.xhp#par_id3155132.10.help.text"
+msgid "Dim sLine As String"
+msgstr ""
+
+#: 03020101.xhp#par_id3155854.11.help.text
+msgctxt "03020101.xhp#par_id3155854.11.help.text"
+msgid "Dim aFile As String"
+msgstr ""
+
+#: 03020101.xhp#par_id3146985.34.help.text
+msgctxt "03020101.xhp#par_id3146985.34.help.text"
+msgid "Dim sMsg as String"
+msgstr ""
+
+#: 03020101.xhp#par_id3154013.12.help.text
+msgctxt "03020101.xhp#par_id3154013.12.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr ""
+
+#: 03020101.xhp#par_id3152598.13.help.text
+msgctxt "03020101.xhp#par_id3152598.13.help.text"
+msgid "sMsg = \"\""
+msgstr ""
+
+#: 03020101.xhp#par_id3147427.14.help.text
+msgctxt "03020101.xhp#par_id3147427.14.help.text"
+msgid "iNumber = Freefile"
+msgstr ""
+
+#: 03020101.xhp#par_id3151112.15.help.text
+msgctxt "03020101.xhp#par_id3151112.15.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr ""
+
+#: 03020101.xhp#par_id3153727.16.help.text
+msgctxt "03020101.xhp#par_id3153727.16.help.text"
+msgid "Print #iNumber, \"First line of text\""
+msgstr ""
+
+#: 03020101.xhp#par_id3147350.17.help.text
+msgctxt "03020101.xhp#par_id3147350.17.help.text"
+msgid "Print #iNumber, \"Another line of text\""
+msgstr ""
+
+#: 03020101.xhp#par_id3149667.18.help.text
+msgctxt "03020101.xhp#par_id3149667.18.help.text"
+msgid "Close #iNumber"
+msgstr ""
+
+#: 03020101.xhp#par_id3145801.22.help.text
+msgctxt "03020101.xhp#par_id3145801.22.help.text"
+msgid "iNumber = Freefile"
+msgstr ""
+
+#: 03020101.xhp#par_id3147396.23.help.text
+msgctxt "03020101.xhp#par_id3147396.23.help.text"
+msgid "Open aFile For Input As iNumber"
+msgstr ""
+
+#: 03020101.xhp#par_id3147124.24.help.text
+msgctxt "03020101.xhp#par_id3147124.24.help.text"
+msgid "While not eof(iNumber)"
+msgstr ""
+
+#: 03020101.xhp#par_id3154491.25.help.text
+msgctxt "03020101.xhp#par_id3154491.25.help.text"
+msgid "Line Input #iNumber, sLine"
+msgstr ""
+
+#: 03020101.xhp#par_id3149581.26.help.text
+msgctxt "03020101.xhp#par_id3149581.26.help.text"
+msgid "If sLine <>\"\" then"
+msgstr ""
+
+#: 03020101.xhp#par_id3155602.27.help.text
+msgctxt "03020101.xhp#par_id3155602.27.help.text"
+msgid "sMsg = sMsg & sLine & chr(13)"
+msgstr ""
+
+#: 03020101.xhp#par_id3154511.29.help.text
+msgctxt "03020101.xhp#par_id3154511.29.help.text"
+msgid "end if"
+msgstr ""
+
+#: 03020101.xhp#par_id3150749.30.help.text
+msgctxt "03020101.xhp#par_id3150749.30.help.text"
+msgid "wend"
+msgstr ""
+
+#: 03020101.xhp#par_id3156276.31.help.text
+msgctxt "03020101.xhp#par_id3156276.31.help.text"
+msgid "Close #iNumber"
+msgstr ""
+
+#: 03020101.xhp#par_id3155066.35.help.text
+msgctxt "03020101.xhp#par_id3155066.35.help.text"
+msgid "Msgbox sMsg"
+msgstr ""
+
+#: 03020101.xhp#par_id3154754.32.help.text
+msgctxt "03020101.xhp#par_id3154754.32.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03010300.xhp#tit.help.text
+msgid "Color Functions"
+msgstr ""
+
+#: 03010300.xhp#hd_id3157896.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010300.xhp\" name=\"Color Functions\">Color Functions</link>"
+msgstr ""
+
+#: 03010300.xhp#par_id3155555.2.help.text
+msgid "This section describes Runtime functions used to define colors."
+msgstr ""
+
+#: 03104500.xhp#tit.help.text
+msgid "IsUnoStruct Function [Runtime]"
+msgstr ""
+
+#: 03104500.xhp#bm_id3146117.help.text
+msgid "<bookmark_value>IsUnoStruct function</bookmark_value>"
+msgstr ""
+
+#: 03104500.xhp#hd_id3146117.1.help.text
+msgid "<link href=\"text/sbasic/shared/03104500.xhp\" name=\"IsUnoStruct Function [Runtime]\">IsUnoStruct Function [Runtime]</link>"
+msgstr ""
+
+#: 03104500.xhp#par_id3146957.2.help.text
+msgid "Returns True if the given object is a Uno struct."
+msgstr ""
+
+#: 03104500.xhp#hd_id3148538.3.help.text
+msgctxt "03104500.xhp#hd_id3148538.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03104500.xhp#par_id3155341.4.help.text
+msgid "IsUnoStruct( Uno type )"
+msgstr ""
+
+#: 03104500.xhp#hd_id3148473.5.help.text
+msgctxt "03104500.xhp#hd_id3148473.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03104500.xhp#par_id3145315.6.help.text
+msgctxt "03104500.xhp#par_id3145315.6.help.text"
+msgid "Bool"
+msgstr ""
+
+#: 03104500.xhp#hd_id3145609.7.help.text
+msgctxt "03104500.xhp#hd_id3145609.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03104500.xhp#par_id3148947.8.help.text
+msgid "Uno type : A UnoObject"
+msgstr ""
+
+#: 03104500.xhp#hd_id3156343.9.help.text
+msgctxt "03104500.xhp#hd_id3156343.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03104500.xhp#par_idN10632.help.text
+msgctxt "03104500.xhp#par_idN10632.help.text"
+msgid "Sub Main"
+msgstr ""
+
+#: 03104500.xhp#par_idN10635.help.text
+msgid "Dim bIsStruct"
+msgstr ""
+
+#: 03104500.xhp#par_idN10638.help.text
+msgid "' Instantiate a service"
+msgstr ""
+
+#: 03104500.xhp#par_idN1063B.help.text
+msgid "Dim oSimpleFileAccess"
+msgstr ""
+
+#: 03104500.xhp#par_idN1063E.help.text
+msgid "oSimpleFileAccess = CreateUnoService( \"com.sun.star.ucb.SimpleFileAccess\" )"
+msgstr ""
+
+#: 03104500.xhp#par_idN10641.help.text
+msgid "bIsStruct = IsUnoStruct( oSimpleFileAccess )"
+msgstr ""
+
+#: 03104500.xhp#par_idN10644.help.text
+msgid "MsgBox bIsStruct ' Displays False because oSimpleFileAccess is NO struct"
+msgstr ""
+
+#: 03104500.xhp#par_idN10649.help.text
+msgid "' Instantiate a Property struct"
+msgstr ""
+
+#: 03104500.xhp#par_idN1064D.help.text
+msgid "Dim aProperty As New com.sun.star.beans.Property"
+msgstr ""
+
+#: 03104500.xhp#par_idN10650.help.text
+msgid "bIsStruct = IsUnoStruct( aProperty )"
+msgstr ""
+
+#: 03104500.xhp#par_idN10653.help.text
+msgid "MsgBox bIsStruct ' Displays True because aProperty is a struct"
+msgstr ""
+
+#: 03104500.xhp#par_idN10658.help.text
+msgid "bIsStruct = IsUnoStruct( 42 )"
+msgstr ""
+
+#: 03104500.xhp#par_idN1065B.help.text
+msgid "MsgBox bIsStruct ' Displays False because 42 is NO struct"
+msgstr ""
+
+#: 03104500.xhp#par_idN10660.help.text
+msgctxt "03104500.xhp#par_idN10660.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03080100.xhp#tit.help.text
+msgid "Trigonometric Functions"
+msgstr ""
+
+#: 03080100.xhp#hd_id3159201.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"Trigonometric Functions\">Trigonometric Functions</link>"
+msgstr ""
+
+#: 03080100.xhp#par_id3149180.2.help.text
+msgid "The following are the trigonometric functions that are supported in $[officename] Basic."
+msgstr ""
+
+#: 01170100.xhp#tit.help.text
+msgid "Control and Dialog Properties"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01170100.xhp#hd_id3151043.20.help.text
+msgid "Entering Data in the Properties Dialog"
+msgstr ""
+
+#: 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 ""
+
+#: 01170100.xhp#par_id3150010.18.help.text
+msgid "Keys"
+msgstr ""
+
+#: 01170100.xhp#par_id3147317.19.help.text
+msgid "Effects"
+msgstr ""
+
+#: 01170100.xhp#par_id3146121.4.help.text
+msgid "Alt+Down Arrow"
+msgstr ""
+
+#: 01170100.xhp#par_id3149581.5.help.text
+msgid "Opens a combo box"
+msgstr ""
+
+#: 01170100.xhp#par_id3147394.6.help.text
+msgid "Alt+Up Arrow"
+msgstr ""
+
+#: 01170100.xhp#par_id3148455.7.help.text
+msgid "Closes a combo box"
+msgstr ""
+
+#: 01170100.xhp#par_id3154511.8.help.text
+msgid "Shift+Enter"
+msgstr "Shift+Enter"
+
+#: 01170100.xhp#par_id3146971.9.help.text
+msgid "Inserts a line break in multiline fields."
+msgstr ""
+
+#: 01170100.xhp#par_id3146914.10.help.text
+msgid "(UpArrow)"
+msgstr ""
+
+#: 01170100.xhp#par_id3153714.11.help.text
+msgid "Goes to the previous line."
+msgstr ""
+
+#: 01170100.xhp#par_id3159266.12.help.text
+msgid "(DownArrow)"
+msgstr ""
+
+#: 01170100.xhp#par_id3146314.13.help.text
+msgid "Goes to the next line."
+msgstr ""
+
+#: 01170100.xhp#par_id3149255.14.help.text
+msgid "Enter"
+msgstr ""
+
+#: 01170100.xhp#par_id3149566.15.help.text
+msgid "Applies the changes made to a field and places the cursor into the next field."
+msgstr ""
+
+#: 03090406.xhp#tit.help.text
+msgid "Function Statement [Runtime]"
+msgstr ""
+
+#: 03090406.xhp#bm_id3153346.help.text
+msgid "<bookmark_value>Function statement</bookmark_value>"
+msgstr ""
+
+#: 03090406.xhp#hd_id3153346.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090406.xhp\" name=\"Function Statement [Runtime]\">Function Statement [Runtime]</link>"
+msgstr ""
+
+#: 03090406.xhp#par_id3159158.2.help.text
+msgid "Defines a subroutine that can be used as an expression to determine a return type."
+msgstr ""
+
+#: 03090406.xhp#hd_id3145316.3.help.text
+msgctxt "03090406.xhp#hd_id3145316.3.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 03090406.xhp#par_id3148944.4.help.text
+msgid "see Parameter"
+msgstr ""
+
+#: 03090406.xhp#hd_id3154760.5.help.text
+msgctxt "03090406.xhp#hd_id3154760.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03090406.xhp#par_id3156344.6.help.text
+msgctxt "03090406.xhp#par_id3156344.6.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 03090406.xhp#par_id3149457.7.help.text
+msgid "Function Name[(VarName1 [As Type][, VarName2 [As Type][,...]]]) [As Type]"
+msgstr ""
+
+#: 03090406.xhp#par_id3153360.8.help.text
+msgctxt "03090406.xhp#par_id3153360.8.help.text"
+msgid "statement block"
+msgstr ""
+
+#: 03090406.xhp#par_id3148797.9.help.text
+msgid "[Exit Function]"
+msgstr ""
+
+#: 03090406.xhp#par_id3145419.10.help.text
+msgctxt "03090406.xhp#par_id3145419.10.help.text"
+msgid "statement block"
+msgstr ""
+
+#: 03090406.xhp#par_id3150449.11.help.text
+msgctxt "03090406.xhp#par_id3150449.11.help.text"
+msgid "End Function"
+msgstr ""
+
+#: 03090406.xhp#par_id3156281.12.help.text
+msgctxt "03090406.xhp#par_id3156281.12.help.text"
+msgid "Parameter"
+msgstr ""
+
+#: 03090406.xhp#par_id3153193.13.help.text
+msgid "<emph>Name:</emph> Name of the subroutine to contain the value returned by the function."
+msgstr ""
+
+#: 03090406.xhp#par_id3147229.14.help.text
+msgid "<emph>VarName:</emph> Parameter to be passed to the subroutine."
+msgstr ""
+
+#: 03090406.xhp#par_id3147287.15.help.text
+msgid "<emph>Type:</emph> Type-declaration keyword."
+msgstr ""
+
+#: 03090406.xhp#hd_id3163710.16.help.text
+msgctxt "03090406.xhp#hd_id3163710.16.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03090406.xhp#par_id3147214.17.help.text
+msgctxt "03090406.xhp#par_id3147214.17.help.text"
+msgid "Sub ExampleExit"
+msgstr ""
+
+#: 03090406.xhp#par_id3152596.18.help.text
+msgctxt "03090406.xhp#par_id3152596.18.help.text"
+msgid "Dim sReturn As String"
+msgstr ""
+
+#: 03090406.xhp#par_id3153364.19.help.text
+msgctxt "03090406.xhp#par_id3153364.19.help.text"
+msgid "Dim sListArray(10) as String"
+msgstr ""
+
+#: 03090406.xhp#par_id3149481.20.help.text
+msgctxt "03090406.xhp#par_id3149481.20.help.text"
+msgid "Dim siStep as Single"
+msgstr ""
+
+#: 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 ""
+
+#: 03090406.xhp#par_id3147349.22.help.text
+msgid "sListArray(siStep) = chr$(siStep + 65)"
+msgstr ""
+
+#: 03090406.xhp#par_id3147426.23.help.text
+msgctxt "03090406.xhp#par_id3147426.23.help.text"
+msgid "msgbox sListArray(siStep)"
+msgstr ""
+
+#: 03090406.xhp#par_id3152576.24.help.text
+msgctxt "03090406.xhp#par_id3152576.24.help.text"
+msgid "next siStep"
+msgstr ""
+
+#: 03090406.xhp#par_id3146922.25.help.text
+msgctxt "03090406.xhp#par_id3146922.25.help.text"
+msgid "sReturn = LinSearch(sListArray(), \"B\")"
+msgstr ""
+
+#: 03090406.xhp#par_id3153140.26.help.text
+msgctxt "03090406.xhp#par_id3153140.26.help.text"
+msgid "Print sReturn"
+msgstr ""
+
+#: 03090406.xhp#par_id3149581.27.help.text
+msgctxt "03090406.xhp#par_id3149581.27.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 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 ""
+
+#: 03090406.xhp#par_id3150594.31.help.text
+msgctxt "03090406.xhp#par_id3150594.31.help.text"
+msgid "dim iCount as Integer"
+msgstr ""
+
+#: 03090406.xhp#par_id3154943.32.help.text
+msgid "REM Linsearch searches a TextArray:sList() for a TextEntry:"
+msgstr ""
+
+#: 03090406.xhp#par_id3155601.33.help.text
+msgid "REM Return value is the index of the entry or 0 (Null)"
+msgstr ""
+
+#: 03090406.xhp#par_id3154511.34.help.text
+msgctxt "03090406.xhp#par_id3154511.34.help.text"
+msgid "for iCount=1 to Ubound( sList() )"
+msgstr ""
+
+#: 03090406.xhp#par_id3149123.35.help.text
+msgctxt "03090406.xhp#par_id3149123.35.help.text"
+msgid "if sList( iCount ) = sItem then"
+msgstr ""
+
+#: 03090406.xhp#par_id3153707.36.help.text
+msgid "exit for REM sItem found"
+msgstr ""
+
+#: 03090406.xhp#par_id3155066.37.help.text
+msgctxt "03090406.xhp#par_id3155066.37.help.text"
+msgid "end if"
+msgstr ""
+
+#: 03090406.xhp#par_id3156275.38.help.text
+msgctxt "03090406.xhp#par_id3156275.38.help.text"
+msgid "next iCount"
+msgstr ""
+
+#: 03090406.xhp#par_id3156054.39.help.text
+msgctxt "03090406.xhp#par_id3156054.39.help.text"
+msgid "if iCount = Ubound( sList() ) then iCount = 0"
+msgstr ""
+
+#: 03090406.xhp#par_id3153765.40.help.text
+msgctxt "03090406.xhp#par_id3153765.40.help.text"
+msgid "LinSearch = iCount"
+msgstr ""
+
+#: 03090406.xhp#par_id3153713.41.help.text
+msgctxt "03090406.xhp#par_id3153713.41.help.text"
+msgid "end function"
+msgstr ""
+
+#: 03131300.xhp#tit.help.text
+msgid "TwipsPerPixelX Function [Runtime]"
+msgstr ""
+
+#: 03131300.xhp#bm_id3153539.help.text
+msgid "<bookmark_value>TwipsPerPixelX function</bookmark_value>"
+msgstr ""
+
+#: 03131300.xhp#hd_id3153539.1.help.text
+msgid "<link href=\"text/sbasic/shared/03131300.xhp\" name=\"TwipsPerPixelX Function [Runtime]\">TwipsPerPixelX Function [Runtime]</link>"
+msgstr ""
+
+#: 03131300.xhp#par_id3153394.2.help.text
+msgid "Returns the number of twips that represent the width of a pixel."
+msgstr ""
+
+#: 03131300.xhp#hd_id3153527.3.help.text
+msgctxt "03131300.xhp#hd_id3153527.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03131300.xhp#par_id3151110.4.help.text
+msgid "n = TwipsPerPixelX"
+msgstr ""
+
+#: 03131300.xhp#hd_id3150669.5.help.text
+msgctxt "03131300.xhp#hd_id3150669.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03131300.xhp#par_id3150503.6.help.text
+msgctxt "03131300.xhp#par_id3150503.6.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03131300.xhp#hd_id3159176.7.help.text
+msgctxt "03131300.xhp#hd_id3159176.7.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03131300.xhp#par_id3156152.8.help.text
+msgctxt "03131300.xhp#par_id3156152.8.help.text"
+msgid "Sub ExamplePixelTwips"
+msgstr ""
+
+#: 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 ""
+
+#: 03131300.xhp#par_id3149670.10.help.text
+msgctxt "03131300.xhp#par_id3149670.10.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03020104.xhp#tit.help.text
+msgid "Reset Statement [Runtime]"
+msgstr ""
+
+#: 03020104.xhp#bm_id3154141.help.text
+msgid "<bookmark_value>Reset statement</bookmark_value>"
+msgstr ""
+
+#: 03020104.xhp#hd_id3154141.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020104.xhp\">Reset Statement [Runtime]</link>"
+msgstr ""
+
+#: 03020104.xhp#par_id3156423.2.help.text
+msgid "Closes all open files and writes the contents of all file buffers to the harddisk."
+msgstr ""
+
+#: 03020104.xhp#hd_id3154124.3.help.text
+msgctxt "03020104.xhp#hd_id3154124.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020104.xhp#par_id3156281.4.help.text
+msgctxt "03020104.xhp#par_id3156281.4.help.text"
+msgid "Reset"
+msgstr ""
+
+#: 03020104.xhp#hd_id3161831.5.help.text
+msgctxt "03020104.xhp#hd_id3161831.5.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020104.xhp#par_id3151113.37.help.text
+msgctxt "03020104.xhp#par_id3151113.37.help.text"
+msgid "Sub ExampleReset"
+msgstr ""
+
+#: 03020104.xhp#par_id3148575.38.help.text
+msgctxt "03020104.xhp#par_id3148575.38.help.text"
+msgid "On Error Goto ErrorHandler"
+msgstr ""
+
+#: 03020104.xhp#par_id3153093.39.help.text
+msgctxt "03020104.xhp#par_id3153093.39.help.text"
+msgid "Dim iNumber As Integer"
+msgstr ""
+
+#: 03020104.xhp#par_id3150011.40.help.text
+msgctxt "03020104.xhp#par_id3150011.40.help.text"
+msgid "Dim iCount As Integer"
+msgstr ""
+
+#: 03020104.xhp#par_id3153363.41.help.text
+msgctxt "03020104.xhp#par_id3153363.41.help.text"
+msgid "Dim sLine As String"
+msgstr ""
+
+#: 03020104.xhp#par_id3154320.42.help.text
+msgctxt "03020104.xhp#par_id3154320.42.help.text"
+msgid "Dim aFile As String"
+msgstr ""
+
+#: 03020104.xhp#par_id3163712.43.help.text
+msgctxt "03020104.xhp#par_id3163712.43.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr ""
+
+#: 03020104.xhp#par_id3146121.45.help.text
+msgctxt "03020104.xhp#par_id3146121.45.help.text"
+msgid "iNumber = Freefile"
+msgstr ""
+
+#: 03020104.xhp#par_id3154491.46.help.text
+msgctxt "03020104.xhp#par_id3154491.46.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr ""
+
+#: 03020104.xhp#par_id3148455.47.help.text
+msgid "Print #iNumber, \"This is a new line of text\""
+msgstr ""
+
+#: 03020104.xhp#par_id3145646.48.help.text
+msgctxt "03020104.xhp#par_id3145646.48.help.text"
+msgid "Close #iNumber"
+msgstr ""
+
+#: 03020104.xhp#par_id3149410.50.help.text
+msgctxt "03020104.xhp#par_id3149410.50.help.text"
+msgid "iNumber = Freefile"
+msgstr ""
+
+#: 03020104.xhp#par_id3147126.51.help.text
+msgctxt "03020104.xhp#par_id3147126.51.help.text"
+msgid "Open aFile For Input As iNumber"
+msgstr ""
+
+#: 03020104.xhp#par_id3154510.52.help.text
+msgctxt "03020104.xhp#par_id3154510.52.help.text"
+msgid "For iCount = 1 to 5"
+msgstr ""
+
+#: 03020104.xhp#par_id3146971.53.help.text
+msgctxt "03020104.xhp#par_id3146971.53.help.text"
+msgid "Line Input #iNumber, sLine"
+msgstr ""
+
+#: 03020104.xhp#par_id3156277.54.help.text
+msgctxt "03020104.xhp#par_id3156277.54.help.text"
+msgid "If sLine <>\"\" then"
+msgstr ""
+
+#: 03020104.xhp#par_id3153707.55.help.text
+msgctxt "03020104.xhp#par_id3153707.55.help.text"
+msgid "rem"
+msgstr ""
+
+#: 03020104.xhp#par_id3150322.56.help.text
+msgctxt "03020104.xhp#par_id3150322.56.help.text"
+msgid "end if"
+msgstr ""
+
+#: 03020104.xhp#par_id3148405.57.help.text
+msgctxt "03020104.xhp#par_id3148405.57.help.text"
+msgid "Next iCount"
+msgstr ""
+
+#: 03020104.xhp#par_id3153711.58.help.text
+msgctxt "03020104.xhp#par_id3153711.58.help.text"
+msgid "Close #iNumber"
+msgstr ""
+
+#: 03020104.xhp#par_id3156382.59.help.text
+msgctxt "03020104.xhp#par_id3156382.59.help.text"
+msgid "Exit Sub"
+msgstr ""
+
+#: 03020104.xhp#par_id3159264.60.help.text
+msgctxt "03020104.xhp#par_id3159264.60.help.text"
+msgid "ErrorHandler:"
+msgstr ""
+
+#: 03020104.xhp#par_id3145147.61.help.text
+msgctxt "03020104.xhp#par_id3145147.61.help.text"
+msgid "Reset"
+msgstr ""
+
+#: 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 ""
+
+#: 03020104.xhp#par_id3147364.63.help.text
+msgctxt "03020104.xhp#par_id3147364.63.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03120314.xhp#tit.help.text
+msgid "Split Function [Runtime]"
+msgstr ""
+
+#: 03120314.xhp#bm_id3156027.help.text
+msgid "<bookmark_value>Split function</bookmark_value>"
+msgstr ""
+
+#: 03120314.xhp#hd_id3156027.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120314.xhp\" name=\"Split Function [Runtime]\">Split Function [Runtime]</link>"
+msgstr ""
+
+#: 03120314.xhp#par_id3155805.2.help.text
+msgid "Returns an array of substrings from a string expression."
+msgstr ""
+
+#: 03120314.xhp#hd_id3149177.3.help.text
+msgctxt "03120314.xhp#hd_id3149177.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03120314.xhp#par_id3153824.4.help.text
+msgid "Split (Text As String, delimiter, number)"
+msgstr ""
+
+#: 03120314.xhp#hd_id3149763.5.help.text
+msgctxt "03120314.xhp#hd_id3149763.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03120314.xhp#par_id3154285.6.help.text
+msgctxt "03120314.xhp#par_id3154285.6.help.text"
+msgid "String"
+msgstr ""
+
+#: 03120314.xhp#hd_id3145315.7.help.text
+msgctxt "03120314.xhp#hd_id3145315.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03120314.xhp#par_id3156023.8.help.text
+msgctxt "03120314.xhp#par_id3156023.8.help.text"
+msgid "<emph>Text:</emph> Any string expression."
+msgstr ""
+
+#: 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 ""
+
+#: 03120314.xhp#par_id3145069.12.help.text
+msgid "<emph>number (optional):</emph> The number of substrings that you want to return."
+msgstr ""
+
+#: 03120314.xhp#hd_id3150398.10.help.text
+msgctxt "03120314.xhp#hd_id3150398.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03120314.xhp#par_id3151212.11.help.text
+msgid "Dim a(3)"
+msgstr ""
+
+#: 03120314.xhp#par_id3149204.13.help.text
+msgid "Sub main()"
+msgstr ""
+
+#: 03120314.xhp#par_id3156214.14.help.text
+msgid " a(0) = \"ABCDE\""
+msgstr ""
+
+#: 03120314.xhp#par_id3154217.15.help.text
+msgid " a(1) = 42"
+msgstr ""
+
+#: 03120314.xhp#par_id3145173.16.help.text
+msgid " a(2) = \"MN\""
+msgstr ""
+
+#: 03120314.xhp#par_id3153104.17.help.text
+msgid " a(3) = \"X Y Z\""
+msgstr ""
+
+#: 03120314.xhp#par_id3154684.18.help.text
+msgid " JStr = Join1()"
+msgstr ""
+
+#: 03120314.xhp#par_id3153367.19.help.text
+msgctxt "03120314.xhp#par_id3153367.19.help.text"
+msgid " Call Show(JStr, Split1(JStr))"
+msgstr ""
+
+#: 03120314.xhp#par_id3145271.20.help.text
+msgid " JStr = Join2()"
+msgstr ""
+
+#: 03120314.xhp#par_id3155856.21.help.text
+msgctxt "03120314.xhp#par_id3155856.21.help.text"
+msgid " Call Show(JStr, Split1(JStr))"
+msgstr ""
+
+#: 03120314.xhp#par_id3159155.22.help.text
+msgid " JStr = Join3()"
+msgstr ""
+
+#: 03120314.xhp#par_id3155413.23.help.text
+msgctxt "03120314.xhp#par_id3155413.23.help.text"
+msgid " Call Show(JStr, Split1(JStr))"
+msgstr ""
+
+#: 03120314.xhp#par_id3153190.24.help.text
+msgctxt "03120314.xhp#par_id3153190.24.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03120314.xhp#par_id3154320.25.help.text
+msgid "Function Join1()"
+msgstr ""
+
+#: 03120314.xhp#par_id3145748.26.help.text
+msgid " Join1 = Join(a(), \"abc\")"
+msgstr ""
+
+#: 03120314.xhp#par_id3153142.45.help.text
+msgctxt "03120314.xhp#par_id3153142.45.help.text"
+msgid "End Function"
+msgstr ""
+
+#: 03120314.xhp#par_id3152462.27.help.text
+msgid "Function Join2()"
+msgstr ""
+
+#: 03120314.xhp#par_id3146119.28.help.text
+msgid " Join2 = Join(a(), \",\")"
+msgstr ""
+
+#: 03120314.xhp#par_id3154790.29.help.text
+msgctxt "03120314.xhp#par_id3154790.29.help.text"
+msgid "End Function"
+msgstr ""
+
+#: 03120314.xhp#par_id3147125.30.help.text
+msgid "Function Join3()"
+msgstr ""
+
+#: 03120314.xhp#par_id3149377.31.help.text
+msgid " Join3 = Join(a())"
+msgstr ""
+
+#: 03120314.xhp#par_id3150114.32.help.text
+msgctxt "03120314.xhp#par_id3150114.32.help.text"
+msgid "End Function"
+msgstr ""
+
+#: 03120314.xhp#par_id3154729.33.help.text
+msgid "Function Split1(aStr)"
+msgstr ""
+
+#: 03120314.xhp#par_id3145646.34.help.text
+msgid " Split1 = Split(aStr, \"D\")"
+msgstr ""
+
+#: 03120314.xhp#par_id3154512.35.help.text
+msgctxt "03120314.xhp#par_id3154512.35.help.text"
+msgid "End Function"
+msgstr ""
+
+#: 03120314.xhp#par_id3149400.36.help.text
+msgid "Sub Show(JoinStr, TheArray)"
+msgstr ""
+
+#: 03120314.xhp#par_id3153948.37.help.text
+msgid " l = LBound(TheArray)"
+msgstr ""
+
+#: 03120314.xhp#par_id3146969.38.help.text
+msgid " u = UBound(TheArray)"
+msgstr ""
+
+#: 03120314.xhp#par_id3150752.39.help.text
+msgid " total$ = \"=============================\" + Chr$(13) + JoinStr + Chr$(13) + Chr$(13)"
+msgstr ""
+
+#: 03120314.xhp#par_id3148916.40.help.text
+msgid " For i = l To u"
+msgstr ""
+
+#: 03120314.xhp#par_id3154754.41.help.text
+msgid " total$ = total$ + TheArray(i) + Str(Len(TheArray(i))) + Chr$(13)"
+msgstr ""
+
+#: 03120314.xhp#par_id3156054.42.help.text
+msgid " Next i"
+msgstr ""
+
+#: 03120314.xhp#par_id3147338.43.help.text
+msgid " MsgBox total$"
+msgstr ""
+
+#: 03120314.xhp#par_id3155960.44.help.text
+msgctxt "03120314.xhp#par_id3155960.44.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03120104.xhp#tit.help.text
+msgid "Val Function [Runtime]"
+msgstr ""
+
+#: 03120104.xhp#bm_id3149205.help.text
+msgid "<bookmark_value>Val function</bookmark_value>"
+msgstr ""
+
+#: 03120104.xhp#hd_id3149205.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120104.xhp\" name=\"Val Function [Runtime]\">Val Function [Runtime]</link>"
+msgstr ""
+
+#: 03120104.xhp#par_id3153345.2.help.text
+msgid "Converts a string to a numeric expression."
+msgstr ""
+
+#: 03120104.xhp#hd_id3159157.3.help.text
+msgctxt "03120104.xhp#hd_id3159157.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03120104.xhp#par_id3149514.4.help.text
+msgid "Val (Text As String)"
+msgstr ""
+
+#: 03120104.xhp#hd_id3150669.5.help.text
+msgctxt "03120104.xhp#hd_id3150669.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03120104.xhp#par_id3143228.6.help.text
+msgctxt "03120104.xhp#par_id3143228.6.help.text"
+msgid "Double"
+msgstr ""
+
+#: 03120104.xhp#hd_id3156024.7.help.text
+msgctxt "03120104.xhp#hd_id3156024.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03120104.xhp#par_id3154348.8.help.text
+msgid "<emph>Text:</emph> String that represents a number."
+msgstr ""
+
+#: 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 ""
+
+#: 03120104.xhp#hd_id3154365.10.help.text
+msgctxt "03120104.xhp#hd_id3154365.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03120104.xhp#par_id3151177.11.help.text
+msgid "Sub ExampleVal"
+msgstr ""
+
+#: 03120104.xhp#par_id3159150.12.help.text
+msgid "msgbox Val(\"123.123\")"
+msgstr ""
+
+#: 03120104.xhp#par_id3154126.13.help.text
+msgid "msgbox Val(\"A123.123\")"
+msgstr ""
+
+#: 03120104.xhp#par_id3147229.14.help.text
+msgctxt "03120104.xhp#par_id3147229.14.help.text"
+msgid "end Sub"
+msgstr ""
+
+#: 03000000.xhp#tit.help.text
+msgid "Run-Time Functions"
+msgstr ""
+
+#: 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 ""
+
+#: 03000000.xhp#par_id3148983.2.help.text
+msgid "This section describes the Runtime Functions of <item type=\"productname\">%PRODUCTNAME</item> Basic."
+msgstr ""
+
+#: 03030107.xhp#tit.help.text
+msgid "CDateToIso Function [Runtime]"
+msgstr ""
+
+#: 03030107.xhp#bm_id3150620.help.text
+msgid "<bookmark_value>CdateToIso function</bookmark_value>"
+msgstr ""
+
+#: 03030107.xhp#hd_id3150620.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function [Runtime]\">CDateToIso Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03030107.xhp#hd_id3159224.3.help.text
+msgctxt "03030107.xhp#hd_id3159224.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03030107.xhp#par_id3149497.4.help.text
+msgid "CDateToIso(Number)"
+msgstr ""
+
+#: 03030107.xhp#hd_id3152347.5.help.text
+msgctxt "03030107.xhp#hd_id3152347.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03030107.xhp#par_id3154422.6.help.text
+msgctxt "03030107.xhp#par_id3154422.6.help.text"
+msgid "String"
+msgstr ""
+
+#: 03030107.xhp#hd_id3147303.7.help.text
+msgctxt "03030107.xhp#hd_id3147303.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03030107.xhp#par_id3145136.8.help.text
+msgid "<emph>Number:</emph> Integer that contains the serial date number."
+msgstr ""
+
+#: 03030107.xhp#hd_id3147243.9.help.text
+msgctxt "03030107.xhp#hd_id3147243.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03030107.xhp#par_id3156152.10.help.text
+msgid "Sub ExampleCDateToIso"
+msgstr ""
+
+#: 03030107.xhp#par_id3153126.11.help.text
+msgid "MsgBox \"\" & CDateToIso(Now) ,64,\"ISO Date\""
+msgstr ""
+
+#: 03030107.xhp#par_id3143228.12.help.text
+msgctxt "03030107.xhp#par_id3143228.12.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03090302.xhp#tit.help.text
+msgid "GoTo Statement [Runtime]"
+msgstr ""
+
+#: 03090302.xhp#bm_id3159413.help.text
+msgid "<bookmark_value>GoTo statement</bookmark_value>"
+msgstr ""
+
+#: 03090302.xhp#hd_id3159413.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo Statement [Runtime]\">GoTo Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03090302.xhp#hd_id3149656.3.help.text
+msgctxt "03090302.xhp#hd_id3149656.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03090302.xhp#par_id3154367.4.help.text
+msgctxt "03090302.xhp#par_id3154367.4.help.text"
+msgid "see Parameters"
+msgstr ""
+
+#: 03090302.xhp#hd_id3150870.5.help.text
+msgctxt "03090302.xhp#hd_id3150870.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03090302.xhp#par_id3156214.6.help.text
+msgctxt "03090302.xhp#par_id3156214.6.help.text"
+msgid "Sub/Function"
+msgstr ""
+
+#: 03090302.xhp#par_id3156424.7.help.text
+msgctxt "03090302.xhp#par_id3156424.7.help.text"
+msgid "statement block"
+msgstr ""
+
+#: 03090302.xhp#par_id3154685.8.help.text
+msgid " Label1"
+msgstr ""
+
+#: 03090302.xhp#par_id3145786.9.help.text
+msgid "<emph>Label2:</emph>"
+msgstr ""
+
+#: 03090302.xhp#par_id3161832.10.help.text
+msgctxt "03090302.xhp#par_id3161832.10.help.text"
+msgid "statement block"
+msgstr ""
+
+#: 03090302.xhp#par_id3146120.11.help.text
+msgctxt "03090302.xhp#par_id3146120.11.help.text"
+msgid "Exit Sub"
+msgstr ""
+
+#: 03090302.xhp#par_id3150010.12.help.text
+msgid "<emph>Label1:</emph>"
+msgstr ""
+
+#: 03090302.xhp#par_id3152462.13.help.text
+msgctxt "03090302.xhp#par_id3152462.13.help.text"
+msgid "statement block"
+msgstr ""
+
+#: 03090302.xhp#par_id3149664.14.help.text
+msgid "GoTo Label2"
+msgstr ""
+
+#: 03090302.xhp#par_id3152886.15.help.text
+msgctxt "03090302.xhp#par_id3152886.15.help.text"
+msgid "End Sub/Function"
+msgstr ""
+
+#: 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 ""
+
+#: 03090302.xhp#par_id3155416.17.help.text
+msgid "You cannot use the GoTo statement to jump out of a Sub or Function."
+msgstr ""
+
+#: 03090302.xhp#hd_id3154731.19.help.text
+msgctxt "03090302.xhp#hd_id3154731.19.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03090302.xhp#par_id6967035.help.text
+msgctxt "03090302.xhp#par_id6967035.help.text"
+msgid "see Parameters"
+msgstr ""
+
+#: 01050200.xhp#tit.help.text
+msgid "Call Stack Window (Calls)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03010103.xhp#tit.help.text
+msgid "Print Statement [Runtime]"
+msgstr ""
+
+#: 03010103.xhp#bm_id3147230.help.text
+msgid "<bookmark_value>Print statement</bookmark_value>"
+msgstr ""
+
+#: 03010103.xhp#hd_id3147230.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010103.xhp\" name=\"Print Statement [Runtime]\">Print Statement [Runtime]</link>"
+msgstr ""
+
+#: 03010103.xhp#par_id3156281.2.help.text
+msgid "Outputs the specified strings or numeric expressions to a dialog or to a file."
+msgstr ""
+
+#: 03010103.xhp#hd_id3145785.3.help.text
+msgctxt "03010103.xhp#hd_id3145785.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03010103.xhp#par_id3153188.4.help.text
+msgid "Print [#FileName,] Expression1[{;|,} [Spc(Number As Integer);] [Tab(pos As Integer);] [Expression2[...]] "
+msgstr ""
+
+#: 03010103.xhp#hd_id3147348.5.help.text
+msgctxt "03010103.xhp#hd_id3147348.5.help.text"
+msgid "Parameter:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03010103.xhp#par_id3153092.7.help.text
+msgid "<emph>Number</emph>: Number of spaces to be inserted by the <emph>Spc</emph> function."
+msgstr ""
+
+#: 03010103.xhp#par_id3145364.8.help.text
+msgid "<emph>Pos</emph>: Spaces are inserted until the specified position."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03010103.xhp#hd_id3146912.13.help.text
+msgctxt "03010103.xhp#hd_id3146912.13.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03010103.xhp#par_id3153711.14.help.text
+msgid "Sub ExamplePrint"
+msgstr ""
+
+#: 03010103.xhp#par_id3153764.15.help.text
+msgid "Print \"ABC\""
+msgstr ""
+
+#: 03010103.xhp#par_id3155764.16.help.text
+msgid "Print \"ABC\",\"123\""
+msgstr ""
+
+#: 03010103.xhp#par_id5484176.help.text
+msgid "i = FreeFile()"
+msgstr ""
+
+#: 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 ""
+
+#: 03010103.xhp#par_id36317.help.text
+msgid "Print #i, \"ABC\""
+msgstr ""
+
+#: 03010103.xhp#par_id7381817.help.text
+msgid "Close #i"
+msgstr ""
+
+#: 03010103.xhp#par_id3147339.17.help.text
+msgctxt "03010103.xhp#par_id3147339.17.help.text"
+msgid "end Sub"
+msgstr ""
+
+#: 03130700.xhp#tit.help.text
+msgid "GetSystemTicks Function [Runtime]"
+msgstr ""
+
+#: 03130700.xhp#bm_id3147143.help.text
+msgid "<bookmark_value>GetSystemTicks function</bookmark_value>"
+msgstr ""
+
+#: 03130700.xhp#hd_id3147143.1.help.text
+msgid "<link href=\"text/sbasic/shared/03130700.xhp\" name=\"GetSystemTicks Function [Runtime]\">GetSystemTicks Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03130700.xhp#hd_id3153311.3.help.text
+msgctxt "03130700.xhp#hd_id3153311.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03130700.xhp#par_id3147242.4.help.text
+msgid "GetSystemTicks()"
+msgstr ""
+
+#: 03130700.xhp#hd_id3149233.5.help.text
+msgctxt "03130700.xhp#hd_id3149233.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03130700.xhp#par_id3149762.6.help.text
+msgctxt "03130700.xhp#par_id3149762.6.help.text"
+msgid "Long"
+msgstr ""
+
+#: 03130700.xhp#hd_id3156152.7.help.text
+msgctxt "03130700.xhp#hd_id3156152.7.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03130700.xhp#par_id3148943.8.help.text
+msgctxt "03130700.xhp#par_id3148943.8.help.text"
+msgid "Sub ExampleWait"
+msgstr ""
+
+#: 03130700.xhp#par_id3146795.9.help.text
+msgctxt "03130700.xhp#par_id3146795.9.help.text"
+msgid "Dim lTick As Long"
+msgstr ""
+
+#: 03130700.xhp#par_id3145069.10.help.text
+msgctxt "03130700.xhp#par_id3145069.10.help.text"
+msgid "lTick = GetSystemTicks()"
+msgstr ""
+
+#: 03130700.xhp#par_id3147560.11.help.text
+msgctxt "03130700.xhp#par_id3147560.11.help.text"
+msgid "wait 2000"
+msgstr ""
+
+#: 03130700.xhp#par_id3149655.12.help.text
+msgctxt "03130700.xhp#par_id3149655.12.help.text"
+msgid "lTick = (GetSystemTicks() - lTick)"
+msgstr ""
+
+#: 03130700.xhp#par_id3154938.13.help.text
+msgctxt "03130700.xhp#par_id3154938.13.help.text"
+msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
+msgstr ""
+
+#: 03130700.xhp#par_id3150542.14.help.text
+msgctxt "03130700.xhp#par_id3150542.14.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03120309.xhp#tit.help.text
+msgid "RTrim Function [Runtime]"
+msgstr ""
+
+#: 03120309.xhp#bm_id3154286.help.text
+msgid "<bookmark_value>RTrim function</bookmark_value>"
+msgstr ""
+
+#: 03120309.xhp#hd_id3154286.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120309.xhp\" name=\"RTrim Function [Runtime]\">RTrim Function [Runtime]</link>"
+msgstr ""
+
+#: 03120309.xhp#par_id3153127.2.help.text
+msgid "Deletes the spaces at the end of a string expression."
+msgstr ""
+
+#: 03120309.xhp#par_id3153062.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">LTrim Function</link>"
+msgstr ""
+
+#: 03120309.xhp#hd_id3154924.4.help.text
+msgctxt "03120309.xhp#hd_id3154924.4.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03120309.xhp#par_id3154347.5.help.text
+msgid "RTrim (Text As String)"
+msgstr ""
+
+#: 03120309.xhp#hd_id3149457.6.help.text
+msgctxt "03120309.xhp#hd_id3149457.6.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03120309.xhp#par_id3153381.7.help.text
+msgctxt "03120309.xhp#par_id3153381.7.help.text"
+msgid "String"
+msgstr ""
+
+#: 03120309.xhp#hd_id3148798.8.help.text
+msgctxt "03120309.xhp#hd_id3148798.8.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03120309.xhp#par_id3151380.9.help.text
+msgid "<emph>Text: </emph>Any string expression."
+msgstr ""
+
+#: 03120309.xhp#hd_id3151041.10.help.text
+msgctxt "03120309.xhp#hd_id3151041.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03120309.xhp#par_id3148673.11.help.text
+msgctxt "03120309.xhp#par_id3148673.11.help.text"
+msgid "Sub ExampleSpaces"
+msgstr ""
+
+#: 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 ""
+
+#: 03120309.xhp#par_id3154125.13.help.text
+msgctxt "03120309.xhp#par_id3154125.13.help.text"
+msgid "sText2 = \" <*Las Vegas*> \""
+msgstr ""
+
+#: 03120309.xhp#par_id3155131.15.help.text
+msgctxt "03120309.xhp#par_id3155131.15.help.text"
+msgid "sOut = \"'\"+sText2 +\"'\"+ Chr(13)"
+msgstr ""
+
+#: 03120309.xhp#par_id3161833.16.help.text
+msgctxt "03120309.xhp#par_id3161833.16.help.text"
+msgid "sText = Ltrim(sText2) REM sText = \"<*Las Vegas*> \""
+msgstr ""
+
+#: 03120309.xhp#par_id3147317.17.help.text
+msgctxt "03120309.xhp#par_id3147317.17.help.text"
+msgid "sOut = sOut + \"'\"+sText +\"'\" + Chr(13)"
+msgstr ""
+
+#: 03120309.xhp#par_id3151112.18.help.text
+msgctxt "03120309.xhp#par_id3151112.18.help.text"
+msgid "sText = Rtrim(sText2) REM sText = \" <*Las Vegas*>\""
+msgstr ""
+
+#: 03120309.xhp#par_id3149664.19.help.text
+msgctxt "03120309.xhp#par_id3149664.19.help.text"
+msgid "sOut = sOut +\"'\"+ sText +\"'\" + Chr(13)"
+msgstr ""
+
+#: 03120309.xhp#par_id3152576.20.help.text
+msgctxt "03120309.xhp#par_id3152576.20.help.text"
+msgid "sText = Trim(sText2) REM sText = \"<*Las Vegas*>\""
+msgstr ""
+
+#: 03120309.xhp#par_id3153729.21.help.text
+msgctxt "03120309.xhp#par_id3153729.21.help.text"
+msgid "sOut = sOut +\"'\"+ sText +\"'\""
+msgstr ""
+
+#: 03120309.xhp#par_id3145749.22.help.text
+msgctxt "03120309.xhp#par_id3145749.22.help.text"
+msgid "MsgBox sOut"
+msgstr ""
+
+#: 03120309.xhp#par_id3146922.23.help.text
+msgctxt "03120309.xhp#par_id3146922.23.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03120401.xhp#tit.help.text
+msgid "InStr Function [Runtime]"
+msgstr ""
+
+#: 03120401.xhp#bm_id3155934.help.text
+msgid "<bookmark_value>InStr function</bookmark_value>"
+msgstr ""
+
+#: 03120401.xhp#hd_id3155934.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120401.xhp\" name=\"InStr Function [Runtime]\">InStr Function [Runtime]</link>"
+msgstr ""
+
+#: 03120401.xhp#par_id3153990.2.help.text
+msgid "Returns the position of a string within another string."
+msgstr ""
+
+#: 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 ""
+
+#: 03120401.xhp#hd_id3145090.4.help.text
+msgctxt "03120401.xhp#hd_id3145090.4.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03120401.xhp#par_id3146957.5.help.text
+msgid "InStr ([Start As Long,] Text1 As String, Text2 As String[, Compare])"
+msgstr ""
+
+#: 03120401.xhp#hd_id3148538.6.help.text
+msgctxt "03120401.xhp#hd_id3148538.6.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03120401.xhp#par_id3149763.7.help.text
+msgctxt "03120401.xhp#par_id3149763.7.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03120401.xhp#hd_id3148473.8.help.text
+msgctxt "03120401.xhp#hd_id3148473.8.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03120401.xhp#par_id3145609.10.help.text
+msgid "<emph>Text1:</emph> The string expression that you want to search."
+msgstr ""
+
+#: 03120401.xhp#par_id3147559.11.help.text
+msgid "<emph>Text2:</emph> The string expression that you want to search for."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03120401.xhp#hd_id3154366.14.help.text
+msgctxt "03120401.xhp#hd_id3154366.14.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03120401.xhp#par_id3154217.15.help.text
+msgid "Sub ExamplePosition"
+msgstr ""
+
+#: 03120401.xhp#par_id3154685.16.help.text
+msgctxt "03120401.xhp#par_id3154685.16.help.text"
+msgid "Dim sInput As String"
+msgstr ""
+
+#: 03120401.xhp#par_id3151042.17.help.text
+msgid "Dim iPos as Integer"
+msgstr ""
+
+#: 03120401.xhp#par_id3144760.19.help.text
+msgid "sInput = \"Office\""
+msgstr ""
+
+#: 03120401.xhp#par_id3154125.20.help.text
+msgid "iPos = Instr(sInput,\"c\")"
+msgstr ""
+
+#: 03120401.xhp#par_id3145173.21.help.text
+msgid "print iPos"
+msgstr ""
+
+#: 03120401.xhp#par_id3145786.22.help.text
+msgctxt "03120401.xhp#par_id3145786.22.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03090100.xhp#tit.help.text
+msgid "Condition Statements"
+msgstr ""
+
+#: 03090100.xhp#hd_id3154422.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090100.xhp\" name=\"Condition Statements\">Condition Statements</link>"
+msgstr ""
+
+#: 03090100.xhp#par_id3153750.2.help.text
+msgid "The following statements are based on conditions."
+msgstr ""
+
+#: 03020413.xhp#tit.help.text
+msgid "RmDir Statement [Runtime]"
+msgstr ""
+
+#: 03020413.xhp#bm_id3148947.help.text
+msgid "<bookmark_value>RmDir statement</bookmark_value>"
+msgstr ""
+
+#: 03020413.xhp#hd_id3148947.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020413.xhp\" name=\"RmDir Statement [Runtime]\">RmDir Statement [Runtime]</link>"
+msgstr ""
+
+#: 03020413.xhp#par_id3149457.2.help.text
+msgid "Deletes an existing directory from a data medium."
+msgstr ""
+
+#: 03020413.xhp#hd_id3153361.3.help.text
+msgctxt "03020413.xhp#hd_id3153361.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020413.xhp#par_id3154367.4.help.text
+msgid "RmDir Text As String"
+msgstr ""
+
+#: 03020413.xhp#hd_id3156281.5.help.text
+msgctxt "03020413.xhp#hd_id3156281.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020413.xhp#hd_id3145271.8.help.text
+msgctxt "03020413.xhp#hd_id3145271.8.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020413.xhp#par_id3156442.9.help.text
+msgid "Sub ExampleRmDir"
+msgstr ""
+
+#: 03020413.xhp#par_id3154319.10.help.text
+msgid "MkDir \"C:\\Test2\""
+msgstr ""
+
+#: 03020413.xhp#par_id3159154.11.help.text
+msgid "ChDir \"C:\\test2\""
+msgstr ""
+
+#: 03020413.xhp#par_id3151112.12.help.text
+msgid "msgbox Curdir"
+msgstr ""
+
+#: 03020413.xhp#par_id3147427.13.help.text
+msgid "ChDir \"\\\""
+msgstr ""
+
+#: 03020413.xhp#par_id3153188.14.help.text
+msgid "RmDir \"C:\\test2\""
+msgstr ""
+
+#: 03020413.xhp#par_id3146120.15.help.text
+msgctxt "03020413.xhp#par_id3146120.15.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03104400.xhp#tit.help.text
+msgid "HasUnoInterfaces Function [Runtime]"
+msgstr ""
+
+#: 03104400.xhp#bm_id3149987.help.text
+msgid "<bookmark_value>HasUnoInterfaces function</bookmark_value>"
+msgstr ""
+
+#: 03104400.xhp#hd_id3149987.1.help.text
+msgid "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"HasUnoInterfaces Function [Runtime]\">HasUnoInterfaces Function [Runtime]</link>"
+msgstr ""
+
+#: 03104400.xhp#par_id3151262.2.help.text
+msgid "Tests if a Basic Uno object supports certain Uno interfaces."
+msgstr ""
+
+#: 03104400.xhp#par_id3154232.3.help.text
+msgid "Returns True, if <emph>all</emph> stated Uno interfaces are supported, otherwise False is returned."
+msgstr ""
+
+#: 03104400.xhp#hd_id3150040.4.help.text
+msgctxt "03104400.xhp#hd_id3150040.4.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03104400.xhp#par_id3155555.5.help.text
+msgid "HasUnoInterfaces( oTest, Uno-Interface-Name 1 [, Uno-Interface-Name 2, ...])"
+msgstr ""
+
+#: 03104400.xhp#hd_id3153345.6.help.text
+msgctxt "03104400.xhp#hd_id3153345.6.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03104400.xhp#par_id3148538.7.help.text
+msgctxt "03104400.xhp#par_id3148538.7.help.text"
+msgid "Bool"
+msgstr ""
+
+#: 03104400.xhp#hd_id3159157.8.help.text
+msgctxt "03104400.xhp#hd_id3159157.8.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03104400.xhp#par_id3155419.9.help.text
+msgid "<emph>oTest:</emph> the Basic Uno object that you want to test."
+msgstr ""
+
+#: 03104400.xhp#par_id3149236.10.help.text
+msgid "<emph>Uno-Interface-Name:</emph> list of Uno interface names."
+msgstr ""
+
+#: 03104400.xhp#hd_id3147574.11.help.text
+msgctxt "03104400.xhp#hd_id3147574.11.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03104400.xhp#par_id3149580.12.help.text
+msgid "bHas = HasUnoInterfaces( oTest, \"com.sun.star.beans.XIntrospection\" )"
+msgstr ""
+
+#: 03120307.xhp#tit.help.text
+msgid "Right Function [Runtime]"
+msgstr ""
+
+#: 03120307.xhp#bm_id3153311.help.text
+msgid "<bookmark_value>Right function</bookmark_value>"
+msgstr ""
+
+#: 03120307.xhp#hd_id3153311.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120307.xhp\" name=\"Right Function [Runtime]\">Right Function [Runtime]</link>"
+msgstr ""
+
+#: 03120307.xhp#par_id3150984.2.help.text
+msgid "Returns the rightmost \"n\" characters of a string expression."
+msgstr ""
+
+#: 03120307.xhp#par_id3149763.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">Left Function</link>."
+msgstr ""
+
+#: 03120307.xhp#hd_id3145315.4.help.text
+msgctxt "03120307.xhp#hd_id3145315.4.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03120307.xhp#par_id3153061.5.help.text
+msgid "Right (Text As String, n As Long)"
+msgstr ""
+
+#: 03120307.xhp#hd_id3145068.6.help.text
+msgctxt "03120307.xhp#hd_id3145068.6.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03120307.xhp#par_id3156344.7.help.text
+msgctxt "03120307.xhp#par_id3156344.7.help.text"
+msgid "String"
+msgstr ""
+
+#: 03120307.xhp#hd_id3146795.8.help.text
+msgctxt "03120307.xhp#hd_id3146795.8.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03120307.xhp#par_id3153526.9.help.text
+msgid "<emph>Text:</emph> Any string expression that you want to return the rightmost characters of."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03120307.xhp#hd_id3156212.12.help.text
+msgctxt "03120307.xhp#hd_id3156212.12.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03120307.xhp#par_id3150869.13.help.text
+msgctxt "03120307.xhp#par_id3150869.13.help.text"
+msgid "Sub ExampleUSDate"
+msgstr ""
+
+#: 03120307.xhp#par_id3153105.14.help.text
+msgctxt "03120307.xhp#par_id3153105.14.help.text"
+msgid "Dim sInput As String"
+msgstr ""
+
+#: 03120307.xhp#par_id3154124.15.help.text
+msgctxt "03120307.xhp#par_id3154124.15.help.text"
+msgid "Dim sUS_date As String"
+msgstr ""
+
+#: 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 ""
+
+#: 03120307.xhp#par_id3149561.17.help.text
+msgctxt "03120307.xhp#par_id3149561.17.help.text"
+msgid "sUS_date = Mid(sInput, 6, 2)"
+msgstr ""
+
+#: 03120307.xhp#par_id3146984.18.help.text
+msgctxt "03120307.xhp#par_id3146984.18.help.text"
+msgid "sUS_date = sUS_date & \"/\""
+msgstr ""
+
+#: 03120307.xhp#par_id3155308.19.help.text
+msgctxt "03120307.xhp#par_id3155308.19.help.text"
+msgid "sUS_date = sUS_date & Right(sInput, 2)"
+msgstr ""
+
+#: 03120307.xhp#par_id3153727.20.help.text
+msgctxt "03120307.xhp#par_id3153727.20.help.text"
+msgid "sUS_date = sUS_date & \"/\""
+msgstr ""
+
+#: 03120307.xhp#par_id3145365.21.help.text
+msgctxt "03120307.xhp#par_id3145365.21.help.text"
+msgid "sUS_date = sUS_date & Left(sInput, 4)"
+msgstr ""
+
+#: 03120307.xhp#par_id3152940.22.help.text
+msgctxt "03120307.xhp#par_id3152940.22.help.text"
+msgid "MsgBox sUS_date"
+msgstr ""
+
+#: 03120307.xhp#par_id3146120.23.help.text
+msgctxt "03120307.xhp#par_id3146120.23.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03080302.xhp#tit.help.text
+msgid "Rnd Function [Runtime]"
+msgstr ""
+
+#: 03080302.xhp#bm_id3148685.help.text
+msgid "<bookmark_value>Rnd function</bookmark_value>"
+msgstr ""
+
+#: 03080302.xhp#hd_id3148685.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080302.xhp\" name=\"Rnd Function [Runtime]\">Rnd Function [Runtime]</link>"
+msgstr ""
+
+#: 03080302.xhp#par_id3149669.2.help.text
+msgid "Returns a random number between 0 and 1."
+msgstr ""
+
+#: 03080302.xhp#hd_id3153897.3.help.text
+msgctxt "03080302.xhp#hd_id3153897.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03080302.xhp#par_id3150543.4.help.text
+msgid "Rnd [(Expression)]"
+msgstr ""
+
+#: 03080302.xhp#hd_id3149655.5.help.text
+msgctxt "03080302.xhp#hd_id3149655.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03080302.xhp#par_id3154365.6.help.text
+msgctxt "03080302.xhp#par_id3154365.6.help.text"
+msgid "Double"
+msgstr ""
+
+#: 03080302.xhp#hd_id3154909.7.help.text
+msgctxt "03080302.xhp#hd_id3154909.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03080302.xhp#par_id3125864.8.help.text
+msgid "<emph>Expression:</emph> Any numeric expression."
+msgstr ""
+
+#: 03080302.xhp#par_id3155306.12.help.text
+msgid "<emph>Omitted:</emph> Returns the next random number in the sequence."
+msgstr ""
+
+#: 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 ""
+
+#: 03080302.xhp#hd_id3151118.15.help.text
+msgctxt "03080302.xhp#hd_id3151118.15.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03080302.xhp#par_id3145365.16.help.text
+msgctxt "03080302.xhp#par_id3145365.16.help.text"
+msgid "Sub ExampleRandomSelect"
+msgstr ""
+
+#: 03080302.xhp#par_id3147426.17.help.text
+msgctxt "03080302.xhp#par_id3147426.17.help.text"
+msgid "Dim iVar As Integer"
+msgstr ""
+
+#: 03080302.xhp#par_id3150011.18.help.text
+msgctxt "03080302.xhp#par_id3150011.18.help.text"
+msgid "iVar = Int((15 * Rnd) -2)"
+msgstr ""
+
+#: 03080302.xhp#par_id3148575.19.help.text
+msgctxt "03080302.xhp#par_id3148575.19.help.text"
+msgid "Select Case iVar"
+msgstr ""
+
+#: 03080302.xhp#par_id3154097.20.help.text
+msgctxt "03080302.xhp#par_id3154097.20.help.text"
+msgid "Case 1 To 5"
+msgstr ""
+
+#: 03080302.xhp#par_id3147124.21.help.text
+msgctxt "03080302.xhp#par_id3147124.21.help.text"
+msgid "Print \"Number from 1 to 5\""
+msgstr ""
+
+#: 03080302.xhp#par_id3155418.22.help.text
+msgctxt "03080302.xhp#par_id3155418.22.help.text"
+msgid "Case 6, 7, 8"
+msgstr ""
+
+#: 03080302.xhp#par_id3154943.23.help.text
+msgctxt "03080302.xhp#par_id3154943.23.help.text"
+msgid "Print \"Number from 6 to 8\""
+msgstr ""
+
+#: 03080302.xhp#par_id3145800.24.help.text
+msgctxt "03080302.xhp#par_id3145800.24.help.text"
+msgid "Case Is > 8 And iVar < 11"
+msgstr ""
+
+#: 03080302.xhp#par_id3151074.25.help.text
+msgctxt "03080302.xhp#par_id3151074.25.help.text"
+msgid "Print \"Greater than 8\""
+msgstr ""
+
+#: 03080302.xhp#par_id3154016.26.help.text
+msgctxt "03080302.xhp#par_id3154016.26.help.text"
+msgid "Case Else"
+msgstr ""
+
+#: 03080302.xhp#par_id3155602.27.help.text
+msgctxt "03080302.xhp#par_id3155602.27.help.text"
+msgid "Print \"Outside range 1 to 10\""
+msgstr ""
+
+#: 03080302.xhp#par_id3150328.28.help.text
+msgctxt "03080302.xhp#par_id3150328.28.help.text"
+msgid "End Select"
+msgstr ""
+
+#: 03080302.xhp#par_id3154479.29.help.text
+msgctxt "03080302.xhp#par_id3154479.29.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 01170101.xhp#tit.help.text
+msgid "General"
+msgstr ""
+
+#: 01170101.xhp#hd_id3147436.1.help.text
+msgid "<link href=\"text/sbasic/shared/01170101.xhp\" name=\"General\">General</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3148647.11.help.text
+msgid "Alignment"
+msgstr ""
+
+#: 01170101.xhp#par_id3147318.12.help.text
+msgid "<ahelp hid=\"HID_PROP_IMAGE_ALIGN\">Specify the alignment option for the selected control.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3153189.76.help.text
+msgid "AutoFill"
+msgstr ""
+
+#: 01170101.xhp#par_id3152460.77.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to enable the AutoFill function for the selected control. </ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3155307.3.help.text
+msgid "Background color"
+msgstr ""
+
+#: 01170101.xhp#par_id3145251.4.help.text
+msgid "<ahelp hid=\".\">Specify the background color for the current control.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3151076.263.help.text
+msgid "Large change"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3153876.139.help.text
+msgid "Border"
+msgstr ""
+
+#: 01170101.xhp#par_id3154017.140.help.text
+msgid "<ahelp hid=\".\">Specify the border type for the current control.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3150749.23.help.text
+msgid "Button type"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3149019.5.help.text
+msgid "Character set"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3147341.149.help.text
+msgid "Currency symbol"
+msgstr ""
+
+#: 01170101.xhp#par_id3146315.150.help.text
+msgid "<ahelp hid=\".\">Enter the currency symbol to be used for currency controls.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id7936643.help.text
+msgctxt "01170101.xhp#hd_id7936643.help.text"
+msgid "Date"
+msgstr ""
+
+#: 01170101.xhp#par_id2293771.help.text
+msgid "<ahelp hid=\".\">Specify the default date to be shown in the Date control.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3153965.82.help.text
+msgid "Date format"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3154663.121.help.text
+msgid "Date max."
+msgstr ""
+
+#: 01170101.xhp#par_id3148485.122.help.text
+msgid "<ahelp hid=\".\">Specify the upper limit for a date control.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3152778.131.help.text
+msgid "Date min."
+msgstr ""
+
+#: 01170101.xhp#par_id3154120.132.help.text
+msgid "<ahelp hid=\".\">Specify the lower limit for a date control.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3154573.137.help.text
+msgid "Decimal accuracy"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3159091.144.help.text
+msgid "Default button"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#par_idN108BA.help.text
+msgid "Delay"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3151278.19.help.text
+msgid "Dropdown"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3151216.13.help.text
+msgid "Enabled"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3155379.91.help.text
+msgid "Edit mask"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01170101.xhp#par_id3155809.93.help.text
+msgid " Character "
+msgstr ""
+
+#: 01170101.xhp#par_id3148702.94.help.text
+msgid "Meaning"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#par_id3156016.97.help.text
+msgid "a"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#par_id3148607.99.help.text
+msgid "A"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#par_id3149126.101.help.text
+msgid "c"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#par_id3152870.103.help.text
+msgid "C"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#par_id3159230.105.help.text
+msgid "N"
+msgstr ""
+
+#: 01170101.xhp#par_id3154650.106.help.text
+msgid "Only the characters 0-9 can be entered."
+msgstr ""
+
+#: 01170101.xhp#par_id3149383.107.help.text
+msgctxt "01170101.xhp#par_id3149383.107.help.text"
+msgid "x"
+msgstr ""
+
+#: 01170101.xhp#par_id3153489.108.help.text
+msgid "All printable characters can be entered."
+msgstr ""
+
+#: 01170101.xhp#par_id3146967.109.help.text
+msgid "X"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id2128971.help.text
+msgid "Editable"
+msgstr ""
+
+#: 01170101.xhp#par_id6519974.help.text
+msgid "<ahelp hid=\".\">Specifies whether the nodes of the tree control are editable.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#par_id4591814.help.text
+msgctxt "01170101.xhp#par_id4591814.help.text"
+msgid "The default value is FALSE."
+msgstr ""
+
+#: 01170101.xhp#hd_id3149317.114.help.text
+msgctxt "01170101.xhp#hd_id3149317.114.help.text"
+msgid "Graphics"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3154627.258.help.text
+msgid "Height"
+msgstr ""
+
+#: 01170101.xhp#par_id3155754.257.help.text
+msgid "<ahelp hid=\".\">Specify the height of the current control or the dialog.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3153072.208.help.text
+msgid "Help text"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3154400.212.help.text
+msgid "Help URL"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3159260.85.help.text
+msgid "Incr./decrement value"
+msgstr ""
+
+#: 01170101.xhp#par_id3145233.86.help.text
+msgid "<ahelp hid=\".\">Specify the increment and decrement interval for spin button controls.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id539262.help.text
+msgid "Invokes stop mode editing"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01170101.xhp#par_id9298074.help.text
+msgctxt "01170101.xhp#par_id9298074.help.text"
+msgid "The default value is FALSE."
+msgstr ""
+
+#: 01170101.xhp#hd_id3150536.7.help.text
+msgid "Label"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3150457.74.help.text
+msgid "Line Count"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id7468489.help.text
+msgctxt "01170101.xhp#hd_id7468489.help.text"
+msgid "Scrollbar"
+msgstr ""
+
+#: 01170101.xhp#par_id7706228.help.text
+msgid "Adds the scrollbar type that you specify to a text box."
+msgstr ""
+
+#: 01170101.xhp#hd_id3153121.256.help.text
+msgid "Small change"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3145221.73.help.text
+msgid "List entries"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3149723.159.help.text
+msgid "Literal mask"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3149015.116.help.text
+msgid "Manual line break"
+msgstr ""
+
+#: 01170101.xhp#par_id3149893.117.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to allow manual line breaks inside multiline controls.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3150463.123.help.text
+msgid "Max. text length"
+msgstr ""
+
+#: 01170101.xhp#par_id3150745.124.help.text
+msgid "<ahelp hid=\".\">Specify the maximum number of characters that the user can enter.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3154675.21.help.text
+msgid "Multiline Input"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3154848.129.help.text
+msgid "Multiselection"
+msgstr ""
+
+#: 01170101.xhp#par_id3151235.130.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to allow the selection of multiple entries in list controls.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3148887.9.help.text
+msgid "Name"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3148739.44.help.text
+msgid "Order"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3149511.247.help.text
+msgid "Orientation"
+msgstr ""
+
+#: 01170101.xhp#par_id3153780.246.help.text
+msgid "<ahelp hid=\".\">Specify the orientation for a scrollbar control.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3154374.239.help.text
+msgid "Page (step)"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#par_id3148580.236.help.text
+msgid "Select <emph>Page (Step)</emph> = 0 to make a control visible on every dialog page."
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3154558.156.help.text
+msgid "Password characters"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3148750.245.help.text
+msgid "PositionX"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3152767.243.help.text
+msgid "PositionY"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3159213.221.help.text
+msgid "Prefix symbol"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3149728.89.help.text
+msgid "Print"
+msgstr ""
+
+#: 01170101.xhp#par_id3150001.90.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to include the current control in a document's printout.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3154671.261.help.text
+msgid "Progress value"
+msgstr ""
+
+#: 01170101.xhp#par_id3146849.260.help.text
+msgid "<ahelp hid=\".\">Specify a progress value for a progress bar control.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3153112.254.help.text
+msgid "Progress value max."
+msgstr ""
+
+#: 01170101.xhp#par_id3145167.253.help.text
+msgid "<ahelp hid=\".\">Specify the maximum value of a progress bar control.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3153569.249.help.text
+msgid "Progress value min."
+msgstr ""
+
+#: 01170101.xhp#par_id3154506.248.help.text
+msgid "<ahelp hid=\".\">Specify the minimum value of a progress bar control.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3150134.42.help.text
+msgid "Read-only"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#par_idN11112.help.text
+msgid "Repeat"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id9579149.help.text
+msgid "Root displayed"
+msgstr ""
+
+#: 01170101.xhp#par_id7126987.help.text
+msgid "<ahelp hid=\".\">Specifies if the root node of the tree control is displayed.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#par_id594195.help.text
+msgctxt "01170101.xhp#par_id594195.help.text"
+msgid "The default value is TRUE."
+msgstr ""
+
+#: 01170101.xhp#hd_id7534409.help.text
+msgid "Row height"
+msgstr ""
+
+#: 01170101.xhp#par_id6471755.help.text
+msgid "<ahelp hid=\".\">Specifies the height of each row of a tree control, in pixels.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#par_id4601580.help.text
+msgid "The default value is 0."
+msgstr ""
+
+#: 01170101.xhp#hd_id3148761.264.help.text
+msgid "Scale"
+msgstr ""
+
+#: 01170101.xhp#par_id3159134.265.help.text
+msgid "<ahelp hid=\".\">Scales the image to fit the control size.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id7597277.help.text
+msgctxt "01170101.xhp#hd_id7597277.help.text"
+msgid "Scrollbar"
+msgstr ""
+
+#: 01170101.xhp#par_id986968.help.text
+msgid "<ahelp hid=\".\">Adds the scrollbar type that you specify to a text box.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3147370.241.help.text
+msgid "Scroll value"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3155440.252.help.text
+msgid "Scroll value max."
+msgstr ""
+
+#: 01170101.xhp#par_id3148877.251.help.text
+msgid "<ahelp hid=\".\">Specify the maximum value of a scrollbar control.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#par_idN111E4.help.text
+msgid "Scroll value min."
+msgstr ""
+
+#: 01170101.xhp#par_idN111E8.help.text
+msgid "<ahelp hid=\".\">Specify the minimum value of a scrollbar control.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id543534.help.text
+msgid "Show handles"
+msgstr ""
+
+#: 01170101.xhp#par_id5060884.help.text
+msgid "<ahelp hid=\".\">Specifies whether the handles of the nodes should be displayed.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#par_id4974822.help.text
+msgid "The handles are dotted lines that visualize the hierarchy of the tree control."
+msgstr ""
+
+#: 01170101.xhp#par_id7687307.help.text
+msgctxt "01170101.xhp#par_id7687307.help.text"
+msgid "The default value is TRUE."
+msgstr ""
+
+#: 01170101.xhp#hd_id4062013.help.text
+msgid "Show root handles"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#par_id2396313.help.text
+msgctxt "01170101.xhp#par_id2396313.help.text"
+msgid "The default value is TRUE."
+msgstr ""
+
+#: 01170101.xhp#par_idN10EC2.help.text
+msgid "Selection"
+msgstr "Виділення"
+
+#: 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 ""
+
+#: 01170101.xhp#par_idN10EEB.help.text
+msgid "Click the <emph>...</emph> button to open the <emph>Selection</emph> dialog."
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id5026093.help.text
+msgid "Selection type"
+msgstr ""
+
+#: 01170101.xhp#par_id1134067.help.text
+msgid "<ahelp hid=\".\">Specifies the selection mode that is enabled for this tree control.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3154193.87.help.text
+msgid "Spin Button"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3156267.232.help.text
+msgid "State"
+msgstr "Область"
+
+#: 01170101.xhp#par_id3150928.231.help.text
+msgid "<ahelp hid=\".\">Select the selection state of the current control.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3148396.112.help.text
+msgid "Strict format"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3149538.48.help.text
+msgid "Tabstop"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#par_id3148776.178.help.text
+msgid "Default"
+msgstr "Типово"
+
+#: 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 ""
+
+#: 01170101.xhp#par_id3154632.52.help.text
+msgid "No"
+msgstr ""
+
+#: 01170101.xhp#par_id3150475.53.help.text
+msgid "When using the tab key focusing skips the control."
+msgstr ""
+
+#: 01170101.xhp#par_id3150690.50.help.text
+msgid "Yes"
+msgstr ""
+
+#: 01170101.xhp#par_id3159106.51.help.text
+msgid "The control can be selected with the Tab key."
+msgstr ""
+
+#: 01170101.xhp#hd_id3145152.147.help.text
+msgid "Thousands Separator"
+msgstr ""
+
+#: 01170101.xhp#par_id3155085.148.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to display thousands separator characters in numerical and currency controls.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3152816.168.help.text
+msgid "Time Format"
+msgstr ""
+
+#: 01170101.xhp#par_id3145263.169.help.text
+msgid "<ahelp hid=\".\">Select the format to be used for time controls.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3153920.127.help.text
+msgid "Time max."
+msgstr ""
+
+#: 01170101.xhp#par_id3155401.128.help.text
+msgid "<ahelp hid=\".\">Specify the maximum time value for a time control.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3163818.135.help.text
+msgid "Time min."
+msgstr ""
+
+#: 01170101.xhp#par_id3156262.136.help.text
+msgid "<ahelp hid=\".\">Specify the minimum time value for a time control.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3148638.266.help.text
+#, fuzzy
+msgid "Title"
+msgstr ""
+"#-#-#-#-# guide.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Звання\n"
+"#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Заголовок"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3152594.173.help.text
+msgid "Tristate"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#hd_id3150614.268.help.text
+msgctxt "01170101.xhp#hd_id3150614.268.help.text"
+msgid "Value"
+msgstr ""
+
+#: 01170101.xhp#par_id3154315.269.help.text
+msgid "<ahelp hid=\".\">Specify the value for the current control.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3152480.125.help.text
+msgid "Value max."
+msgstr ""
+
+#: 01170101.xhp#par_id3163823.126.help.text
+msgid "<ahelp hid=\".\">Specify the maximum value for the current control.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3149276.133.help.text
+msgid "Value min."
+msgstr ""
+
+#: 01170101.xhp#par_id3145088.134.help.text
+msgid "<ahelp hid=\".\">Specify the minimum value for the current control.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3149712.234.help.text
+msgid "Visible size"
+msgstr ""
+
+#: 01170101.xhp#par_id3149445.233.help.text
+msgid "<ahelp hid=\".\">Specify the length of the slider of a scrollbar control.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3152472.142.help.text
+msgid "Width"
+msgstr ""
+
+#: 01170101.xhp#par_id3157963.143.help.text
+msgid "<ahelp hid=\".\">Specify the width of the current control or dialog.</ahelp>"
+msgstr ""
+
+#: 03120202.xhp#tit.help.text
+msgid "String Function [Runtime]"
+msgstr ""
+
+#: 03120202.xhp#bm_id3147291.help.text
+msgid "<bookmark_value>String function</bookmark_value>"
+msgstr ""
+
+#: 03120202.xhp#hd_id3147291.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120202.xhp\" name=\"String Function [Runtime]\">String Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03120202.xhp#hd_id3149516.3.help.text
+msgctxt "03120202.xhp#hd_id3149516.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03120202.xhp#par_id3149233.4.help.text
+msgid "String (n As Long, {expression As Integer | character As String})"
+msgstr ""
+
+#: 03120202.xhp#hd_id3143270.5.help.text
+msgctxt "03120202.xhp#hd_id3143270.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03120202.xhp#par_id3147530.6.help.text
+msgctxt "03120202.xhp#par_id3147530.6.help.text"
+msgid "String"
+msgstr ""
+
+#: 03120202.xhp#hd_id3154923.7.help.text
+msgctxt "03120202.xhp#hd_id3154923.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03120202.xhp#par_id3148664.9.help.text
+msgid "<emph>Expression:</emph> Numeric expression that defines the ASCII code for the character."
+msgstr ""
+
+#: 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 ""
+
+#: 03120202.xhp#hd_id3152920.11.help.text
+msgctxt "03120202.xhp#hd_id3152920.11.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03120202.xhp#par_id3149203.12.help.text
+msgid "Sub ExampleString"
+msgstr ""
+
+#: 03120202.xhp#par_id3154124.13.help.text
+msgctxt "03120202.xhp#par_id3154124.13.help.text"
+msgid "Dim sText as String"
+msgstr ""
+
+#: 03120202.xhp#par_id3147230.15.help.text
+msgid "sText = String(10,\"A\")"
+msgstr ""
+
+#: 03120202.xhp#par_id3153970.16.help.text
+msgctxt "03120202.xhp#par_id3153970.16.help.text"
+msgid "Msgbox sText"
+msgstr ""
+
+#: 03120202.xhp#par_id3145785.18.help.text
+msgid "sText = String(10,65)"
+msgstr ""
+
+#: 03120202.xhp#par_id3147288.19.help.text
+msgctxt "03120202.xhp#par_id3147288.19.help.text"
+msgid "Msgbox sText"
+msgstr ""
+
+#: 03120202.xhp#par_id3153138.24.help.text
+msgctxt "03120202.xhp#par_id3153138.24.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03020203.xhp#tit.help.text
+msgid "Line Input # Statement [Runtime]"
+msgstr ""
+
+#: 03020203.xhp#bm_id3153361.help.text
+msgid "<bookmark_value>Line Input statement</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 03020203.xhp#par_id3156280.2.help.text
+msgid "Reads strings from a sequential file into a variable."
+msgstr ""
+
+#: 03020203.xhp#hd_id3150447.3.help.text
+msgctxt "03020203.xhp#hd_id3150447.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020203.xhp#par_id3147229.4.help.text
+msgid "Line Input #FileNumber As Integer, Var As String "
+msgstr ""
+
+#: 03020203.xhp#hd_id3145173.5.help.text
+msgctxt "03020203.xhp#hd_id3145173.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03020203.xhp#par_id3151119.7.help.text
+msgid "<emph>var:</emph> The name of the variable that stores the result."
+msgstr ""
+
+#: 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 ""
+
+#: 03020203.xhp#hd_id3163711.9.help.text
+msgctxt "03020203.xhp#hd_id3163711.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020203.xhp#par_id3145271.10.help.text
+msgctxt "03020203.xhp#par_id3145271.10.help.text"
+msgid "Sub ExampleWorkWithAFile"
+msgstr ""
+
+#: 03020203.xhp#par_id3156444.11.help.text
+msgctxt "03020203.xhp#par_id3156444.11.help.text"
+msgid "Dim iNumber As Integer"
+msgstr ""
+
+#: 03020203.xhp#par_id3147349.12.help.text
+msgctxt "03020203.xhp#par_id3147349.12.help.text"
+msgid "Dim sLine As String"
+msgstr ""
+
+#: 03020203.xhp#par_id3149664.13.help.text
+msgctxt "03020203.xhp#par_id3149664.13.help.text"
+msgid "Dim aFile As String"
+msgstr ""
+
+#: 03020203.xhp#par_id3147436.36.help.text
+msgctxt "03020203.xhp#par_id3147436.36.help.text"
+msgid "Dim sMsg as String"
+msgstr ""
+
+#: 03020203.xhp#par_id3154730.14.help.text
+msgctxt "03020203.xhp#par_id3154730.14.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr ""
+
+#: 03020203.xhp#par_id3145647.16.help.text
+msgctxt "03020203.xhp#par_id3145647.16.help.text"
+msgid "iNumber = Freefile"
+msgstr ""
+
+#: 03020203.xhp#par_id3149959.17.help.text
+msgctxt "03020203.xhp#par_id3149959.17.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020203.xhp#par_id3146969.20.help.text
+msgctxt "03020203.xhp#par_id3146969.20.help.text"
+msgid "Close #iNumber"
+msgstr ""
+
+#: 03020203.xhp#par_id3154482.24.help.text
+msgctxt "03020203.xhp#par_id3154482.24.help.text"
+msgid "iNumber = Freefile"
+msgstr ""
+
+#: 03020203.xhp#par_id3150321.25.help.text
+msgctxt "03020203.xhp#par_id3150321.25.help.text"
+msgid "Open aFile For Input As iNumber"
+msgstr ""
+
+#: 03020203.xhp#par_id3155443.26.help.text
+msgctxt "03020203.xhp#par_id3155443.26.help.text"
+msgid "While not eof(iNumber)"
+msgstr ""
+
+#: 03020203.xhp#par_id3155764.27.help.text
+msgctxt "03020203.xhp#par_id3155764.27.help.text"
+msgid "Line Input #iNumber, sLine"
+msgstr ""
+
+#: 03020203.xhp#par_id3156382.28.help.text
+msgctxt "03020203.xhp#par_id3156382.28.help.text"
+msgid "If sLine <>\"\" then"
+msgstr ""
+
+#: 03020203.xhp#par_id3147338.29.help.text
+msgctxt "03020203.xhp#par_id3147338.29.help.text"
+msgid "sMsg = sMsg & sLine & chr(13)"
+msgstr ""
+
+#: 03020203.xhp#par_id3147362.31.help.text
+msgctxt "03020203.xhp#par_id3147362.31.help.text"
+msgid "end if"
+msgstr ""
+
+#: 03020203.xhp#par_id3155333.32.help.text
+msgctxt "03020203.xhp#par_id3155333.32.help.text"
+msgid "wend"
+msgstr ""
+
+#: 03020203.xhp#par_id3153965.33.help.text
+msgctxt "03020203.xhp#par_id3153965.33.help.text"
+msgid "Close #iNumber"
+msgstr ""
+
+#: 03020203.xhp#par_id3147345.37.help.text
+msgctxt "03020203.xhp#par_id3147345.37.help.text"
+msgid "Msgbox sMsg"
+msgstr ""
+
+#: 03020203.xhp#par_id3149257.34.help.text
+msgctxt "03020203.xhp#par_id3149257.34.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03080501.xhp#tit.help.text
+msgid "Fix Function [Runtime]"
+msgstr ""
+
+#: 03080501.xhp#bm_id3159201.help.text
+msgid "<bookmark_value>Fix function</bookmark_value>"
+msgstr ""
+
+#: 03080501.xhp#hd_id3159201.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Fix Function [Runtime]\">Fix Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03080501.xhp#hd_id3155419.3.help.text
+msgctxt "03080501.xhp#hd_id3155419.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03080501.xhp#par_id3156152.4.help.text
+msgid "Fix (Expression)"
+msgstr ""
+
+#: 03080501.xhp#hd_id3154923.5.help.text
+msgctxt "03080501.xhp#hd_id3154923.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03080501.xhp#par_id3148947.6.help.text
+msgctxt "03080501.xhp#par_id3148947.6.help.text"
+msgid "Double"
+msgstr ""
+
+#: 03080501.xhp#hd_id3154760.7.help.text
+msgctxt "03080501.xhp#hd_id3154760.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03080501.xhp#par_id3149457.8.help.text
+msgid "<emph>Expression:</emph> Numeric expression that you want to return the integer value for."
+msgstr ""
+
+#: 03080501.xhp#hd_id3150447.9.help.text
+msgctxt "03080501.xhp#hd_id3150447.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03080501.xhp#par_id3153193.10.help.text
+msgid "sub ExampleFix"
+msgstr ""
+
+#: 03080501.xhp#par_id3156214.11.help.text
+msgid "Print Fix(3.14159) REM returns 3."
+msgstr ""
+
+#: 03080501.xhp#par_id3154217.12.help.text
+msgid "Print Fix(0) REM returns 0."
+msgstr ""
+
+#: 03080501.xhp#par_id3145786.13.help.text
+msgid "Print Fix(-3.14159) REM returns -3."
+msgstr ""
+
+#: 03080501.xhp#par_id3153188.14.help.text
+msgctxt "03080501.xhp#par_id3153188.14.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 01030300.xhp#tit.help.text
+msgid "Debugging a Basic Program"
+msgstr ""
+
+#: 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 ""
+
+#: 01030300.xhp#hd_id3153344.1.help.text
+msgid "<link href=\"text/sbasic/shared/01030300.xhp\">Debugging a Basic Program</link>"
+msgstr ""
+
+#: 01030300.xhp#hd_id3159224.4.help.text
+msgid "Breakpoints and Single Step Execution"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01030300.xhp#hd_id3153825.9.help.text
+msgid "Properties of a Breakpoint"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01030300.xhp#par_id3153968.13.help.text
+msgid "Click <emph>Delete</emph> to remove the breakpoint from the program."
+msgstr ""
+
+#: 01030300.xhp#hd_id3150439.14.help.text
+msgid "Observing the Value of Variables"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01030300.xhp#hd_id3148618.20.help.text
+msgid "The Call Stack Window"
+msgstr ""
+
+#: 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 ""
+
+#: 01030300.xhp#hd_id3150594.24.help.text
+msgid "List of Run-Time Errors"
+msgstr ""
+
+#: 03120305.xhp#tit.help.text
+msgid "LTrim Function [Runtime]"
+msgstr ""
+
+#: 03120305.xhp#bm_id3147574.help.text
+msgid "<bookmark_value>LTrim function</bookmark_value>"
+msgstr ""
+
+#: 03120305.xhp#hd_id3147574.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function [Runtime]\">LTrim Function [Runtime]</link>"
+msgstr ""
+
+#: 03120305.xhp#par_id3145316.2.help.text
+msgid "Removes all leading spaces at the start of a string expression."
+msgstr ""
+
+#: 03120305.xhp#hd_id3154924.3.help.text
+msgctxt "03120305.xhp#hd_id3154924.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03120305.xhp#par_id3148552.4.help.text
+msgid "LTrim (Text As String)"
+msgstr ""
+
+#: 03120305.xhp#hd_id3156344.5.help.text
+msgctxt "03120305.xhp#hd_id3156344.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03120305.xhp#par_id3151056.6.help.text
+msgctxt "03120305.xhp#par_id3151056.6.help.text"
+msgid "String"
+msgstr ""
+
+#: 03120305.xhp#hd_id3150543.7.help.text
+msgctxt "03120305.xhp#hd_id3150543.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03120305.xhp#par_id3150792.8.help.text
+msgctxt "03120305.xhp#par_id3150792.8.help.text"
+msgid "<emph>Text:</emph> Any string expression."
+msgstr ""
+
+#: 03120305.xhp#par_id3125863.9.help.text
+msgid "Use this function to remove spaces at the beginning of a string expression."
+msgstr ""
+
+#: 03120305.xhp#hd_id3145419.10.help.text
+msgctxt "03120305.xhp#hd_id3145419.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03120305.xhp#par_id3154909.11.help.text
+msgctxt "03120305.xhp#par_id3154909.11.help.text"
+msgid "Sub ExampleSpaces"
+msgstr ""
+
+#: 03120305.xhp#par_id3150768.12.help.text
+msgid "Dim sText2 As String,sText As String,sOut As String"
+msgstr ""
+
+#: 03120305.xhp#par_id3149204.13.help.text
+msgctxt "03120305.xhp#par_id3149204.13.help.text"
+msgid "sText2 = \" <*Las Vegas*> \""
+msgstr ""
+
+#: 03120305.xhp#par_id3159252.15.help.text
+msgctxt "03120305.xhp#par_id3159252.15.help.text"
+msgid "sOut = \"'\"+sText2 +\"'\"+ Chr(13)"
+msgstr ""
+
+#: 03120305.xhp#par_id3147350.16.help.text
+msgctxt "03120305.xhp#par_id3147350.16.help.text"
+msgid "sText = Ltrim(sText2) REM sText = \"<*Las Vegas*> \""
+msgstr ""
+
+#: 03120305.xhp#par_id3153951.17.help.text
+msgctxt "03120305.xhp#par_id3153951.17.help.text"
+msgid "sOut = sOut + \"'\"+sText +\"'\" + Chr(13)"
+msgstr ""
+
+#: 03120305.xhp#par_id3153363.18.help.text
+msgctxt "03120305.xhp#par_id3153363.18.help.text"
+msgid "sText = Rtrim(sText2) REM sText = \" <*Las Vegas*>\""
+msgstr ""
+
+#: 03120305.xhp#par_id3159154.19.help.text
+msgctxt "03120305.xhp#par_id3159154.19.help.text"
+msgid "sOut = sOut +\"'\"+ sText +\"'\" + Chr(13)"
+msgstr ""
+
+#: 03120305.xhp#par_id3154322.20.help.text
+msgctxt "03120305.xhp#par_id3154322.20.help.text"
+msgid "sText = Trim(sText2) REM sText = \"<*Las Vegas*>\""
+msgstr ""
+
+#: 03120305.xhp#par_id3146924.21.help.text
+msgctxt "03120305.xhp#par_id3146924.21.help.text"
+msgid "sOut = sOut +\"'\"+ sText +\"'\""
+msgstr ""
+
+#: 03120305.xhp#par_id3156444.22.help.text
+msgctxt "03120305.xhp#par_id3156444.22.help.text"
+msgid "MsgBox sOut"
+msgstr ""
+
+#: 03120305.xhp#par_id3147318.23.help.text
+msgctxt "03120305.xhp#par_id3147318.23.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 01050100.xhp#tit.help.text
+msgid "Watch Window"
+msgstr ""
+
+#: 01050100.xhp#hd_id3149457.1.help.text
+msgid "<link href=\"text/sbasic/shared/01050100.xhp\">Watch Window</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 01050100.xhp#hd_id3145173.4.help.text
+msgid "Watch"
+msgstr ""
+
+#: 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 ""
+
+#: 01050100.xhp#hd_id3148645.6.help.text
+msgctxt "01050100.xhp#hd_id3148645.6.help.text"
+msgid "Remove Watch"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01050100.xhp#par_id3154012.8.help.text
+msgctxt "01050100.xhp#par_id3154012.8.help.text"
+msgid "Remove Watch"
+msgstr ""
+
+#: 01050100.xhp#hd_id3154491.10.help.text
+msgid "Editing the Value of a Watched Variable"
+msgstr ""
+
+#: 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 ""
+
+#: 03050200.xhp#tit.help.text
+msgid "Err Function [Runtime]"
+msgstr ""
+
+#: 03050200.xhp#bm_id3156343.help.text
+msgid "<bookmark_value>Err function</bookmark_value>"
+msgstr ""
+
+#: 03050200.xhp#hd_id3156343.1.help.text
+msgid "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err Function [Runtime]\">Err Function [Runtime]</link>"
+msgstr ""
+
+#: 03050200.xhp#par_id3150541.2.help.text
+msgid "Returns an error code that identifies the error that occurred during program execution."
+msgstr ""
+
+#: 03050200.xhp#hd_id3149656.3.help.text
+msgctxt "03050200.xhp#hd_id3149656.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03050200.xhp#par_id3154123.4.help.text
+msgid "Err"
+msgstr ""
+
+#: 03050200.xhp#hd_id3147229.5.help.text
+msgctxt "03050200.xhp#hd_id3147229.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03050200.xhp#par_id3150869.6.help.text
+msgctxt "03050200.xhp#par_id3150869.6.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03050200.xhp#hd_id3153193.7.help.text
+msgctxt "03050200.xhp#hd_id3153193.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03050200.xhp#hd_id3147317.9.help.text
+msgctxt "03050200.xhp#hd_id3147317.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03050200.xhp#par_id3153727.10.help.text
+msgctxt "03050200.xhp#par_id3153727.10.help.text"
+msgid "sub ExampleError"
+msgstr ""
+
+#: 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 ""
+
+#: 03050200.xhp#par_id3163710.12.help.text
+msgctxt "03050200.xhp#par_id3163710.12.help.text"
+msgid "Dim iVar as Integer"
+msgstr ""
+
+#: 03050200.xhp#par_id3153093.13.help.text
+msgctxt "03050200.xhp#par_id3153093.13.help.text"
+msgid "Dim sVar As String"
+msgstr ""
+
+#: 03050200.xhp#par_id3149481.14.help.text
+msgid "REM Error occurs due to non-existent file"
+msgstr ""
+
+#: 03050200.xhp#par_id3153190.15.help.text
+msgctxt "03050200.xhp#par_id3153190.15.help.text"
+msgid "iVar = Freefile"
+msgstr ""
+
+#: 03050200.xhp#par_id3146120.16.help.text
+msgctxt "03050200.xhp#par_id3146120.16.help.text"
+msgid "Open \"\\file9879.txt\" for Input as #iVar"
+msgstr ""
+
+#: 03050200.xhp#par_id3155308.17.help.text
+msgctxt "03050200.xhp#par_id3155308.17.help.text"
+msgid "Line Input #iVar, sVar"
+msgstr ""
+
+#: 03050200.xhp#par_id3153142.18.help.text
+msgctxt "03050200.xhp#par_id3153142.18.help.text"
+msgid "Close #iVar"
+msgstr ""
+
+#: 03050200.xhp#par_id3149665.19.help.text
+msgctxt "03050200.xhp#par_id3149665.19.help.text"
+msgid "exit sub"
+msgstr ""
+
+#: 03050200.xhp#par_id3154942.20.help.text
+msgctxt "03050200.xhp#par_id3154942.20.help.text"
+msgid "ErrorHandler:"
+msgstr ""
+
+#: 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 ""
+
+#: 03050200.xhp#par_id3155418.22.help.text
+msgctxt "03050200.xhp#par_id3155418.22.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03120000.xhp#tit.help.text
+msgid "Strings"
+msgstr ""
+
+#: 03120000.xhp#hd_id3156153.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Strings\">Strings</link>"
+msgstr ""
+
+#: 03120000.xhp#par_id3159176.2.help.text
+msgid "The following functions and statements validate and return strings."
+msgstr ""
+
+#: 03120000.xhp#par_id3154285.3.help.text
+msgid "You can use strings to edit text within $[officename] Basic programs."
+msgstr ""
+
+#: 03102800.xhp#tit.help.text
+msgid "IsObject Function [Runtime]"
+msgstr ""
+
+#: 03102800.xhp#bm_id3149346.help.text
+msgid "<bookmark_value>IsObject function</bookmark_value>"
+msgstr ""
+
+#: 03102800.xhp#hd_id3149346.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function [Runtime]\">IsObject Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03102800.xhp#hd_id3149234.3.help.text
+msgctxt "03102800.xhp#hd_id3149234.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03102800.xhp#par_id3154285.4.help.text
+msgid "IsObject (ObjectVar)"
+msgstr ""
+
+#: 03102800.xhp#hd_id3148685.5.help.text
+msgctxt "03102800.xhp#hd_id3148685.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03102800.xhp#par_id3156024.6.help.text
+msgctxt "03102800.xhp#par_id3156024.6.help.text"
+msgid "Bool"
+msgstr ""
+
+#: 03102800.xhp#hd_id3148947.7.help.text
+msgctxt "03102800.xhp#hd_id3148947.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03120200.xhp#tit.help.text
+msgid "Repeating Contents"
+msgstr ""
+
+#: 03120200.xhp#hd_id3152363.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120200.xhp\" name=\"Repeating Contents\">Repeating Contents</link>"
+msgstr ""
+
+#: 03120200.xhp#par_id3150178.2.help.text
+msgid "The following functions repeat the contents of strings."
+msgstr ""
+
+#: 03030101.xhp#tit.help.text
+msgid "DateSerial Function [Runtime]"
+msgstr ""
+
+#: 03030101.xhp#bm_id3157896.help.text
+msgid "<bookmark_value>DateSerial function</bookmark_value>"
+msgstr ""
+
+#: 03030101.xhp#hd_id3157896.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"DateSerial Function [Runtime]\">DateSerial Function [Runtime]</link>"
+msgstr ""
+
+#: 03030101.xhp#par_id3143267.2.help.text
+msgid "Returns a <emph>Date</emph> value for a specified year, month, or day."
+msgstr ""
+
+#: 03030101.xhp#hd_id3147264.3.help.text
+msgctxt "03030101.xhp#hd_id3147264.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03030101.xhp#par_id3149670.4.help.text
+msgid "DateSerial (year, month, day)"
+msgstr ""
+
+#: 03030101.xhp#hd_id3150792.5.help.text
+msgctxt "03030101.xhp#hd_id3150792.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03030101.xhp#par_id3150398.6.help.text
+msgctxt "03030101.xhp#par_id3150398.6.help.text"
+msgid "Date"
+msgstr ""
+
+#: 03030101.xhp#hd_id3154141.7.help.text
+msgctxt "03030101.xhp#hd_id3154141.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03030101.xhp#hd_id3155411.15.help.text
+msgctxt "03030101.xhp#hd_id3155411.15.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03030101.xhp#par_id3148646.16.help.text
+msgid "Sub ExampleDateSerial"
+msgstr ""
+
+#: 03030101.xhp#par_id3156441.17.help.text
+msgid "Dim lDate as Long"
+msgstr ""
+
+#: 03030101.xhp#par_id3154791.18.help.text
+msgctxt "03030101.xhp#par_id3154791.18.help.text"
+msgid "Dim sDate as String"
+msgstr ""
+
+#: 03030101.xhp#par_id3155415.19.help.text
+msgid "lDate = DateSerial(1964, 4, 9)"
+msgstr ""
+
+#: 03030101.xhp#par_id3147125.20.help.text
+msgid "sDate = DateSerial(1964, 4, 9)"
+msgstr ""
+
+#: 03030101.xhp#par_id3154942.21.help.text
+msgid "msgbox lDate REM returns 23476"
+msgstr ""
+
+#: 03030101.xhp#par_id3151074.22.help.text
+msgid "msgbox sDate REM returns 04/09/1964"
+msgstr ""
+
+#: 03030101.xhp#par_id3153878.23.help.text
+msgctxt "03030101.xhp#par_id3153878.23.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03010000.xhp#tit.help.text
+msgid "Screen I/O Functions"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03030000.xhp#tit.help.text
+msgid "Date and Time Functions"
+msgstr ""
+
+#: 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 ""
+
+#: 03030000.xhp#par_id3153255.2.help.text
+msgid "Use the statements and functions described here to perform date and time calculations."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01020100.xhp#tit.help.text
+msgid "Using Variables"
+msgstr ""
+
+#: 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 ""
+
+#: 01020100.xhp#hd_id3149346.1.help.text
+msgid "<link href=\"text/sbasic/shared/01020100.xhp\" name=\"Using Variables\">Using Variables</link>"
+msgstr ""
+
+#: 01020100.xhp#par_id3154346.3.help.text
+msgid "The following describes the basic use of variables in $[officename] Basic."
+msgstr ""
+
+#: 01020100.xhp#hd_id3153361.4.help.text
+msgid "Naming Conventions for Variable Identifiers"
+msgstr ""
+
+#: 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 ""
+
+#: 01020100.xhp#par_id3156422.6.help.text
+msgid "Examples for variable identifiers:"
+msgstr ""
+
+#: 01020100.xhp#par_id3163798.7.help.text
+msgid "MyNumber=5"
+msgstr ""
+
+#: 01020100.xhp#par_id3156441.126.help.text
+msgctxt "01020100.xhp#par_id3156441.126.help.text"
+msgid "Correct"
+msgstr ""
+
+#: 01020100.xhp#par_id3147317.8.help.text
+msgid "MyNumber5=15"
+msgstr ""
+
+#: 01020100.xhp#par_id3149664.127.help.text
+msgctxt "01020100.xhp#par_id3149664.127.help.text"
+msgid "Correct"
+msgstr ""
+
+#: 01020100.xhp#par_id3145364.9.help.text
+msgid "MyNumber_5=20"
+msgstr ""
+
+#: 01020100.xhp#par_id3146119.128.help.text
+msgctxt "01020100.xhp#par_id3146119.128.help.text"
+msgid "Correct"
+msgstr ""
+
+#: 01020100.xhp#par_id3154729.10.help.text
+msgid "My Number=20"
+msgstr ""
+
+#: 01020100.xhp#par_id3153876.11.help.text
+msgid "Not valid, variable with space must be enclosed in square brackets"
+msgstr ""
+
+#: 01020100.xhp#par_id3147126.14.help.text
+msgid "[My Number]=12"
+msgstr ""
+
+#: 01020100.xhp#par_id3154510.15.help.text
+msgctxt "01020100.xhp#par_id3154510.15.help.text"
+msgid "Correct"
+msgstr ""
+
+#: 01020100.xhp#par_id3153708.12.help.text
+msgid "DéjàVu=25"
+msgstr ""
+
+#: 01020100.xhp#par_id3150330.129.help.text
+msgid "Not valid, special characters are not allowed"
+msgstr ""
+
+#: 01020100.xhp#par_id3155443.13.help.text
+msgid "5MyNumber=12"
+msgstr ""
+
+#: 01020100.xhp#par_id3154254.130.help.text
+msgid "Not valid, variable may not begin with a number"
+msgstr ""
+
+#: 01020100.xhp#par_id3147345.16.help.text
+msgid "Number,Mine=12"
+msgstr ""
+
+#: 01020100.xhp#par_id3149256.131.help.text
+msgid "Not valid, punctuation marks are not allowed"
+msgstr ""
+
+#: 01020100.xhp#hd_id3146317.17.help.text
+msgid "Declaring Variables"
+msgstr ""
+
+#: 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 ""
+
+#: 01020100.xhp#par_id3154118.140.help.text
+msgid "Examples for variable declarations:"
+msgstr ""
+
+#: 01020100.xhp#par_id3150090.19.help.text
+msgctxt "01020100.xhp#par_id3150090.19.help.text"
+msgid "DIM a$"
+msgstr ""
+
+#: 01020100.xhp#par_id3150982.132.help.text
+msgctxt "01020100.xhp#par_id3150982.132.help.text"
+msgid "Declares the variable \"a\" as a String"
+msgstr ""
+
+#: 01020100.xhp#par_id3149531.20.help.text
+msgid "DIM a As String"
+msgstr ""
+
+#: 01020100.xhp#par_id3150343.133.help.text
+msgctxt "01020100.xhp#par_id3150343.133.help.text"
+msgid "Declares the variable \"a\" as a String"
+msgstr ""
+
+#: 01020100.xhp#par_id3149036.21.help.text
+msgid "DIM a$, b As Integer"
+msgstr ""
+
+#: 01020100.xhp#par_id3155507.22.help.text
+msgid "Declares one variable as a String and one as an Integer"
+msgstr ""
+
+#: 01020100.xhp#par_idN10854.help.text
+msgid "DIM c As Boolean"
+msgstr ""
+
+#: 01020100.xhp#par_idN10859.help.text
+msgid "Declares c as a Boolean variable that can be TRUE or FALSE"
+msgstr ""
+
+#: 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 ""
+
+#: 01020100.xhp#par_id3152985.24.help.text
+msgctxt "01020100.xhp#par_id3152985.24.help.text"
+msgid "DIM a$"
+msgstr ""
+
+#: 01020100.xhp#par_id3154527.134.help.text
+msgid "Declares \"a\" as a String"
+msgstr ""
+
+#: 01020100.xhp#par_id3148599.25.help.text
+msgid "a=\"TestString\""
+msgstr ""
+
+#: 01020100.xhp#par_id3153064.135.help.text
+msgid "Type-declaration missing: \"a$=\""
+msgstr ""
+
+#: 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 ""
+
+#: 01020100.xhp#hd_id3149331.27.help.text
+msgid "Forcing Variable Declarations"
+msgstr ""
+
+#: 01020100.xhp#par_id3149443.28.help.text
+msgid "To force declaration of variables, use the following command:"
+msgstr ""
+
+#: 01020100.xhp#par_id3152869.29.help.text
+msgid "OPTION EXPLICIT"
+msgstr ""
+
+#: 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 ""
+
+#: 01020100.xhp#hd_id3154614.34.help.text
+msgid "Variable Types"
+msgstr ""
+
+#: 01020100.xhp#par_id3155383.35.help.text
+msgid "$[officename] Basic supports four variable classes:"
+msgstr ""
+
+#: 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 ""
+
+#: 01020100.xhp#par_id3159226.37.help.text
+msgid "<emph>String</emph> variables contain character strings."
+msgstr ""
+
+#: 01020100.xhp#par_id3145217.38.help.text
+msgid "<emph>Boolean</emph> variables contain either the TRUE or the FALSE value."
+msgstr ""
+
+#: 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 ""
+
+#: 01020100.xhp#hd_id3153805.40.help.text
+msgid "Integer Variables"
+msgstr ""
+
+#: 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 ""
+
+#: 01020100.xhp#par_id3153810.43.help.text
+msgid "Dim Variable%"
+msgstr ""
+
+#: 01020100.xhp#par_id3153556.44.help.text
+msgid "Dim Variable As Integer"
+msgstr ""
+
+#: 01020100.xhp#hd_id3147546.45.help.text
+msgid "Long Integer Variables"
+msgstr ""
+
+#: 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 ""
+
+#: 01020100.xhp#par_id3154708.48.help.text
+msgid "Dim Variable&"
+msgstr ""
+
+#: 01020100.xhp#par_id3156365.49.help.text
+msgid "Dim Variable as Long"
+msgstr ""
+
+#: 01020100.xhp#hd_id7596972.help.text
+msgid "Decimal Variables"
+msgstr ""
+
+#: 01020100.xhp#par_id2649311.help.text
+msgid "Decimal variables can take positive or negative numbers or zero. Accuracy is up to 29 digits."
+msgstr ""
+
+#: 01020100.xhp#par_id7617114.help.text
+msgid "You can use plus (+) or minus (-) signs as prefixes for decimal numbers (with or without spaces)."
+msgstr ""
+
+#: 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 ""
+
+#: 01020100.xhp#hd_id3147500.50.help.text
+msgid "Single Variables"
+msgstr ""
+
+#: 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 ""
+
+#: 01020100.xhp#par_id3149875.52.help.text
+msgid "Dim Variable!"
+msgstr ""
+
+#: 01020100.xhp#par_id3153302.53.help.text
+msgid "Dim Variable as Single"
+msgstr ""
+
+#: 01020100.xhp#hd_id3155753.54.help.text
+msgid "Double Variables"
+msgstr ""
+
+#: 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 ""
+
+#: 01020100.xhp#par_id3150431.56.help.text
+msgid "Dim Variable#"
+msgstr ""
+
+#: 01020100.xhp#par_id3154406.57.help.text
+msgid "Dim Variable As Double"
+msgstr ""
+
+#: 01020100.xhp#hd_id3155747.95.help.text
+msgid "Currency Variables"
+msgstr ""
+
+#: 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 ""
+
+#: 01020100.xhp#par_id3147296.97.help.text
+msgid "Dim Variable@"
+msgstr ""
+
+#: 01020100.xhp#par_id3150391.98.help.text
+msgid "Dim Variable As Currency"
+msgstr ""
+
+#: 01020100.xhp#hd_id3148742.58.help.text
+msgid "String Variables"
+msgstr ""
+
+#: 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 ""
+
+#: 01020100.xhp#par_id3166467.60.help.text
+msgid "Dim Variable$"
+msgstr ""
+
+#: 01020100.xhp#par_id3153027.61.help.text
+msgid "Dim Variable As String"
+msgstr ""
+
+#: 01020100.xhp#hd_id3150534.62.help.text
+msgid "Boolean Variables"
+msgstr ""
+
+#: 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 ""
+
+#: 01020100.xhp#par_id3147615.64.help.text
+msgid "Dim Variable As Boolean"
+msgstr ""
+
+#: 01020100.xhp#hd_id3149722.65.help.text
+msgid "Date Variables"
+msgstr ""
+
+#: 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 ""
+
+#: 01020100.xhp#par_id3150462.67.help.text
+msgid "Dim Variable As Date"
+msgstr ""
+
+#: 01020100.xhp#hd_id3148732.68.help.text
+msgid "Initial Variable Values"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01020100.xhp#par_id3154807.72.help.text
+msgid "<emph>String variables</emph> are assigned an empty-string (\"\") when they are declared."
+msgstr ""
+
+#: 01020100.xhp#hd_id3153936.83.help.text
+msgid "Arrays"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01020100.xhp#par_id3150143.86.help.text
+msgid "DIM text$(20)"
+msgstr ""
+
+#: 01020100.xhp#par_id3154567.136.help.text
+msgid "21 elements numbered from 0 to 20"
+msgstr ""
+
+#: 01020100.xhp#par_id3145596.125.help.text
+msgid "DIM text$(5,4)"
+msgstr ""
+
+#: 01020100.xhp#par_id3154397.137.help.text
+msgid "30 elements (a matrix of 6 x 5 elements)"
+msgstr ""
+
+#: 01020100.xhp#par_id3149185.87.help.text
+msgid "DIM text$(5 to 25)"
+msgstr ""
+
+#: 01020100.xhp#par_id3149690.138.help.text
+msgid "21 elements numbered from 5 to 25"
+msgstr ""
+
+#: 01020100.xhp#par_id3155950.88.help.text
+msgid "DIM text$(-15 to 5)"
+msgstr ""
+
+#: 01020100.xhp#par_id3153113.89.help.text
+msgid "21 elements (including 0), numbered from -15 to 5"
+msgstr ""
+
+#: 01020100.xhp#par_id3153005.90.help.text
+msgid "The index range can include positive as well as negative numbers. "
+msgstr ""
+
+#: 01020100.xhp#hd_id3154507.91.help.text
+msgid "Constants"
+msgstr ""
+
+#: 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 ""
+
+#: 01020100.xhp#par_id3153203.93.help.text
+msgctxt "01020100.xhp#par_id3153203.93.help.text"
+msgid "CONST ConstName=Expression"
+msgstr ""
+
+#: 03080700.xhp#tit.help.text
+msgid "Expression Signs"
+msgstr ""
+
+#: 03080700.xhp#hd_id3150702.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080700.xhp\" name=\"Expression Signs\">Expression Signs</link>"
+msgstr ""
+
+#: 03080700.xhp#par_id3148668.2.help.text
+msgid "This function returns the algebraic sign of a numeric expression."
+msgstr ""
+
+#: 03020102.xhp#tit.help.text
+msgid "FreeFile Function[Runtime]"
+msgstr ""
+
+#: 03020102.xhp#bm_id3150400.help.text
+msgid "<bookmark_value>FreeFile function</bookmark_value>"
+msgstr ""
+
+#: 03020102.xhp#hd_id3150400.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function[Runtime]\">FreeFile Function[Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03020102.xhp#hd_id3150769.3.help.text
+msgctxt "03020102.xhp#hd_id3150769.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020102.xhp#par_id3150869.4.help.text
+msgid "FreeFile"
+msgstr ""
+
+#: 03020102.xhp#hd_id3151042.5.help.text
+msgctxt "03020102.xhp#hd_id3151042.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03020102.xhp#par_id3150440.6.help.text
+msgctxt "03020102.xhp#par_id3150440.6.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03020102.xhp#hd_id3148576.7.help.text
+msgctxt "03020102.xhp#hd_id3148576.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03020102.xhp#hd_id3159153.9.help.text
+msgctxt "03020102.xhp#hd_id3159153.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020102.xhp#par_id3146120.10.help.text
+msgctxt "03020102.xhp#par_id3146120.10.help.text"
+msgid "Sub ExampleWorkWithAFile"
+msgstr ""
+
+#: 03020102.xhp#par_id3154319.11.help.text
+msgctxt "03020102.xhp#par_id3154319.11.help.text"
+msgid "Dim iNumber As Integer"
+msgstr ""
+
+#: 03020102.xhp#par_id3151117.12.help.text
+msgctxt "03020102.xhp#par_id3151117.12.help.text"
+msgid "Dim sLine As String"
+msgstr ""
+
+#: 03020102.xhp#par_id3147426.13.help.text
+msgctxt "03020102.xhp#par_id3147426.13.help.text"
+msgid "Dim aFile As String"
+msgstr ""
+
+#: 03020102.xhp#par_id3149667.36.help.text
+msgctxt "03020102.xhp#par_id3149667.36.help.text"
+msgid "Dim sMsg as String"
+msgstr ""
+
+#: 03020102.xhp#par_id3145800.14.help.text
+msgctxt "03020102.xhp#par_id3145800.14.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr ""
+
+#: 03020102.xhp#par_id3147396.15.help.text
+msgctxt "03020102.xhp#par_id3147396.15.help.text"
+msgid "sMsg = \"\""
+msgstr ""
+
+#: 03020102.xhp#par_id3154490.16.help.text
+msgctxt "03020102.xhp#par_id3154490.16.help.text"
+msgid "iNumber = Freefile"
+msgstr ""
+
+#: 03020102.xhp#par_id3151074.17.help.text
+msgctxt "03020102.xhp#par_id3151074.17.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr ""
+
+#: 03020102.xhp#par_id3155416.18.help.text
+msgctxt "03020102.xhp#par_id3155416.18.help.text"
+msgid "Print #iNumber, \"First line of text\""
+msgstr ""
+
+#: 03020102.xhp#par_id3153416.19.help.text
+msgctxt "03020102.xhp#par_id3153416.19.help.text"
+msgid "Print #iNumber, \"Another line of text\""
+msgstr ""
+
+#: 03020102.xhp#par_id3149401.20.help.text
+msgctxt "03020102.xhp#par_id3149401.20.help.text"
+msgid "Close #iNumber"
+msgstr ""
+
+#: 03020102.xhp#par_id3150330.24.help.text
+msgctxt "03020102.xhp#par_id3150330.24.help.text"
+msgid "iNumber = Freefile"
+msgstr ""
+
+#: 03020102.xhp#par_id3155067.25.help.text
+msgid "Open aFile For Input As #iNumber"
+msgstr ""
+
+#: 03020102.xhp#par_id3155443.26.help.text
+msgid "While not eof(#iNumber)"
+msgstr ""
+
+#: 03020102.xhp#par_id3153714.27.help.text
+msgctxt "03020102.xhp#par_id3153714.27.help.text"
+msgid "Line Input #iNumber, sLine"
+msgstr ""
+
+#: 03020102.xhp#par_id3148408.28.help.text
+msgctxt "03020102.xhp#par_id3148408.28.help.text"
+msgid "If sLine <>\"\" then"
+msgstr ""
+
+#: 03020102.xhp#par_id3156385.29.help.text
+msgctxt "03020102.xhp#par_id3156385.29.help.text"
+msgid "sMsg = sMsg & sLine & chr(13)"
+msgstr ""
+
+#: 03020102.xhp#par_id3145147.31.help.text
+msgctxt "03020102.xhp#par_id3145147.31.help.text"
+msgid "end if"
+msgstr ""
+
+#: 03020102.xhp#par_id3153966.32.help.text
+msgctxt "03020102.xhp#par_id3153966.32.help.text"
+msgid "wend"
+msgstr ""
+
+#: 03020102.xhp#par_id3155961.33.help.text
+msgctxt "03020102.xhp#par_id3155961.33.help.text"
+msgid "Close #iNumber"
+msgstr ""
+
+#: 03020102.xhp#par_id3149567.37.help.text
+msgctxt "03020102.xhp#par_id3149567.37.help.text"
+msgid "Msgbox sMsg"
+msgstr ""
+
+#: 03020102.xhp#par_id3146917.34.help.text
+msgctxt "03020102.xhp#par_id3146917.34.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03020400.xhp#tit.help.text
+msgid "Managing Files"
+msgstr ""
+
+#: 03020400.xhp#hd_id3145136.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020400.xhp\" name=\"Managing Files\">Managing Files</link>"
+msgstr ""
+
+#: 03020400.xhp#par_id3147264.2.help.text
+msgid "The functions and statements for managing files are described here."
+msgstr ""
+
+#: 03080500.xhp#tit.help.text
+msgid "Integers"
+msgstr ""
+
+#: 03080500.xhp#hd_id3153345.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Integers\">Integers</link>"
+msgstr ""
+
+#: 03080500.xhp#par_id3156152.2.help.text
+msgid "The following functions round values to integers."
+msgstr ""
+
+#: 03130100.xhp#tit.help.text
+msgid "Beep Statement [Runtime]"
+msgstr ""
+
+#: 03130100.xhp#bm_id3143284.help.text
+msgid "<bookmark_value>Beep statement</bookmark_value>"
+msgstr ""
+
+#: 03130100.xhp#hd_id3143284.1.help.text
+msgid "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Beep Statement [Runtime]\">Beep Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03130100.xhp#hd_id3153990.3.help.text
+msgctxt "03130100.xhp#hd_id3153990.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03130100.xhp#par_id3147291.4.help.text
+msgid "Beep"
+msgstr ""
+
+#: 03130100.xhp#hd_id3148538.5.help.text
+msgctxt "03130100.xhp#hd_id3148538.5.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03130100.xhp#par_id3149762.6.help.text
+msgid "Sub ExampleBeep"
+msgstr ""
+
+#: 03130100.xhp#par_id3154285.7.help.text
+msgctxt "03130100.xhp#par_id3154285.7.help.text"
+msgid "beep"
+msgstr ""
+
+#: 03130100.xhp#par_id3143270.8.help.text
+msgctxt "03130100.xhp#par_id3143270.8.help.text"
+msgid "beep"
+msgstr ""
+
+#: 03130100.xhp#par_id3154142.9.help.text
+msgctxt "03130100.xhp#par_id3154142.9.help.text"
+msgid "beep"
+msgstr ""
+
+#: 03130100.xhp#par_id3148943.10.help.text
+msgctxt "03130100.xhp#par_id3148943.10.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03090412.xhp#tit.help.text
+msgid "Exit Statement [Runtime]"
+msgstr ""
+
+#: 03090412.xhp#bm_id3152924.help.text
+msgid "<bookmark_value>Exit statement</bookmark_value>"
+msgstr ""
+
+#: 03090412.xhp#hd_id3152924.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit Statement [Runtime]\">Exit Statement [Runtime]</link>"
+msgstr ""
+
+#: 03090412.xhp#par_id3153394.2.help.text
+msgid "Exits a <emph>Do...Loop</emph>, <emph>For...Next</emph>, a function, or a subroutine."
+msgstr ""
+
+#: 03090412.xhp#hd_id3149763.3.help.text
+msgctxt "03090412.xhp#hd_id3149763.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03090412.xhp#par_id3159157.4.help.text
+msgctxt "03090412.xhp#par_id3159157.4.help.text"
+msgid "see Parameters"
+msgstr ""
+
+#: 03090412.xhp#hd_id3148943.5.help.text
+msgctxt "03090412.xhp#hd_id3148943.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03090412.xhp#par_id3154760.6.help.text
+msgid "<emph>Exit Do</emph>"
+msgstr ""
+
+#: 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 ""
+
+#: 03090412.xhp#par_id3150398.8.help.text
+msgid "<emph>Exit For</emph>"
+msgstr ""
+
+#: 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 ""
+
+#: 03090412.xhp#par_id3147229.10.help.text
+msgid "<emph>Exit Function</emph>"
+msgstr ""
+
+#: 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 ""
+
+#: 03090412.xhp#par_id3155132.12.help.text
+msgid "<emph>Exit Sub</emph>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03090412.xhp#hd_id3147348.15.help.text
+msgctxt "03090412.xhp#hd_id3147348.15.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03090412.xhp#par_id3151113.16.help.text
+msgctxt "03090412.xhp#par_id3151113.16.help.text"
+msgid "Sub ExampleExit"
+msgstr ""
+
+#: 03090412.xhp#par_id3156283.17.help.text
+msgctxt "03090412.xhp#par_id3156283.17.help.text"
+msgid "Dim sReturn As String"
+msgstr ""
+
+#: 03090412.xhp#par_id3147125.18.help.text
+msgctxt "03090412.xhp#par_id3147125.18.help.text"
+msgid "Dim sListArray(10) as String"
+msgstr ""
+
+#: 03090412.xhp#par_id3151073.19.help.text
+msgctxt "03090412.xhp#par_id3151073.19.help.text"
+msgid "Dim siStep as Single"
+msgstr ""
+
+#: 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 ""
+
+#: 03090412.xhp#par_id3148457.21.help.text
+msgid "sListArray(siStep) = chr(siStep + 65)"
+msgstr ""
+
+#: 03090412.xhp#par_id3154492.22.help.text
+msgctxt "03090412.xhp#par_id3154492.22.help.text"
+msgid "msgbox sListArray(siStep)"
+msgstr ""
+
+#: 03090412.xhp#par_id3154791.23.help.text
+msgctxt "03090412.xhp#par_id3154791.23.help.text"
+msgid "next siStep"
+msgstr ""
+
+#: 03090412.xhp#par_id3153510.24.help.text
+msgctxt "03090412.xhp#par_id3153510.24.help.text"
+msgid "sReturn = LinSearch(sListArray(), \"B\")"
+msgstr ""
+
+#: 03090412.xhp#par_id3154513.25.help.text
+msgctxt "03090412.xhp#par_id3154513.25.help.text"
+msgid "Print sReturn"
+msgstr ""
+
+#: 03090412.xhp#par_id3149121.26.help.text
+msgctxt "03090412.xhp#par_id3149121.26.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 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 ""
+
+#: 03090412.xhp#par_id3154755.30.help.text
+msgctxt "03090412.xhp#par_id3154755.30.help.text"
+msgid "dim iCount as Integer"
+msgstr ""
+
+#: 03090412.xhp#par_id3153764.31.help.text
+msgid "REM LinSearch searches a TextArray:sList() for a TextEntry:"
+msgstr ""
+
+#: 03090412.xhp#par_id3148995.32.help.text
+msgid "REM Returns the index of the entry or 0 ( Null)"
+msgstr ""
+
+#: 03090412.xhp#par_id3156057.33.help.text
+msgctxt "03090412.xhp#par_id3156057.33.help.text"
+msgid "for iCount=1 to Ubound( sList() )"
+msgstr ""
+
+#: 03090412.xhp#par_id3159266.34.help.text
+msgctxt "03090412.xhp#par_id3159266.34.help.text"
+msgid "if sList( iCount ) = sItem then"
+msgstr ""
+
+#: 03090412.xhp#par_id3149567.35.help.text
+msgid "Exit for REM sItem found"
+msgstr ""
+
+#: 03090412.xhp#par_id3147343.36.help.text
+msgctxt "03090412.xhp#par_id3147343.36.help.text"
+msgid "end if"
+msgstr ""
+
+#: 03090412.xhp#par_id3155174.37.help.text
+msgctxt "03090412.xhp#par_id3155174.37.help.text"
+msgid "next iCount"
+msgstr ""
+
+#: 03090412.xhp#par_id3146313.38.help.text
+msgctxt "03090412.xhp#par_id3146313.38.help.text"
+msgid "if iCount = Ubound( sList() ) then iCount = 0"
+msgstr ""
+
+#: 03090412.xhp#par_id3166448.39.help.text
+msgctxt "03090412.xhp#par_id3166448.39.help.text"
+msgid "LinSearch = iCount"
+msgstr ""
+
+#: 03090412.xhp#par_id3146916.40.help.text
+msgctxt "03090412.xhp#par_id3146916.40.help.text"
+msgid "end function"
+msgstr ""
+
+#: 03101120.xhp#tit.help.text
+msgid "DefErr Statement [Runtime]"
+msgstr ""
+
+#: 03101120.xhp#bm_id8177739.help.text
+msgid "<bookmark_value>DefErr statement</bookmark_value>"
+msgstr ""
+
+#: 03101120.xhp#par_idN1057D.help.text
+msgid "<link href=\"text/sbasic/shared/03101120.xhp\">DefErr Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03101120.xhp#par_idN10590.help.text
+msgctxt "03101120.xhp#par_idN10590.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03101120.xhp#par_idN10594.help.text
+msgctxt "03101120.xhp#par_idN10594.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr ""
+
+#: 03101120.xhp#par_idN10597.help.text
+msgctxt "03101120.xhp#par_idN10597.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03101120.xhp#par_idN105A9.help.text
+msgctxt "03101120.xhp#par_idN105A9.help.text"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr ""
+
+#: 03101120.xhp#par_idN105B0.help.text
+msgid "<emph>DefErr:</emph> Error"
+msgstr ""
+
+#: 03101120.xhp#par_idN105B7.help.text
+msgctxt "03101120.xhp#par_idN105B7.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03101120.xhp#par_idN105BB.help.text
+msgctxt "03101120.xhp#par_idN105BB.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr ""
+
+#: 03101120.xhp#par_idN105BE.help.text
+msgctxt "03101120.xhp#par_idN105BE.help.text"
+msgid "DefBool b"
+msgstr ""
+
+#: 03101120.xhp#par_idN105C1.help.text
+msgctxt "03101120.xhp#par_idN105C1.help.text"
+msgid "DefDate t"
+msgstr ""
+
+#: 03101120.xhp#par_idN105C4.help.text
+msgctxt "03101120.xhp#par_idN105C4.help.text"
+msgid "DefDbL d"
+msgstr ""
+
+#: 03101120.xhp#par_idN105C7.help.text
+msgctxt "03101120.xhp#par_idN105C7.help.text"
+msgid "DefInt i"
+msgstr ""
+
+#: 03101120.xhp#par_idN105CA.help.text
+msgctxt "03101120.xhp#par_idN105CA.help.text"
+msgid "DefLng l"
+msgstr ""
+
+#: 03101120.xhp#par_idN105CD.help.text
+msgctxt "03101120.xhp#par_idN105CD.help.text"
+msgid "DefObj o"
+msgstr ""
+
+#: 03101120.xhp#par_idN105D0.help.text
+msgctxt "03101120.xhp#par_idN105D0.help.text"
+msgid "DefVar v"
+msgstr ""
+
+#: 03101120.xhp#par_idN105D3.help.text
+msgid "DefErr e"
+msgstr ""
+
+#: 03101120.xhp#par_idN105D6.help.text
+msgid "Sub ExampleDefErr"
+msgstr ""
+
+#: 03101120.xhp#par_idN105D9.help.text
+msgid "eErr=Error REM eErr is an implicit error variable"
+msgstr ""
+
+#: 03101120.xhp#par_idN105DC.help.text
+msgctxt "03101120.xhp#par_idN105DC.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03101600.xhp#tit.help.text
+msgid "DefLng Statement [Runtime]"
+msgstr ""
+
+#: 03101600.xhp#bm_id3148538.help.text
+msgid "<bookmark_value>DefLng statement</bookmark_value>"
+msgstr ""
+
+#: 03101600.xhp#hd_id3148538.1.help.text
+msgid "<link href=\"text/sbasic/shared/03101600.xhp\" name=\"DefLng Statement [Runtime]\">DefLng Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03101600.xhp#hd_id3150504.3.help.text
+msgctxt "03101600.xhp#hd_id3150504.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03101600.xhp#par_id3145609.4.help.text
+msgctxt "03101600.xhp#par_id3145609.4.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr ""
+
+#: 03101600.xhp#hd_id3154760.5.help.text
+msgctxt "03101600.xhp#hd_id3154760.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03101600.xhp#par_id3148798.8.help.text
+msgctxt "03101600.xhp#par_id3148798.8.help.text"
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr ""
+
+#: 03101600.xhp#par_id3154686.9.help.text
+msgid "<emph>DefLng:</emph> Long"
+msgstr ""
+
+#: 03101600.xhp#hd_id3153192.10.help.text
+msgctxt "03101600.xhp#hd_id3153192.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03101600.xhp#par_id3154124.12.help.text
+msgctxt "03101600.xhp#par_id3154124.12.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr ""
+
+#: 03101600.xhp#par_id3156424.13.help.text
+msgctxt "03101600.xhp#par_id3156424.13.help.text"
+msgid "DefBool b"
+msgstr ""
+
+#: 03101600.xhp#par_id3147288.14.help.text
+msgctxt "03101600.xhp#par_id3147288.14.help.text"
+msgid "DefDate t"
+msgstr ""
+
+#: 03101600.xhp#par_id3149561.15.help.text
+msgctxt "03101600.xhp#par_id3149561.15.help.text"
+msgid "DefDbL d"
+msgstr ""
+
+#: 03101600.xhp#par_id3153092.16.help.text
+msgctxt "03101600.xhp#par_id3153092.16.help.text"
+msgid "DefInt i"
+msgstr ""
+
+#: 03101600.xhp#par_id3148616.17.help.text
+msgctxt "03101600.xhp#par_id3148616.17.help.text"
+msgid "DefLng l"
+msgstr ""
+
+#: 03101600.xhp#par_id3153189.18.help.text
+msgctxt "03101600.xhp#par_id3153189.18.help.text"
+msgid "DefObj o"
+msgstr ""
+
+#: 03101600.xhp#par_id3152576.19.help.text
+msgctxt "03101600.xhp#par_id3152576.19.help.text"
+msgid "DefVar v"
+msgstr ""
+
+#: 03101600.xhp#par_id3146121.21.help.text
+msgid "Sub ExampleDefLng"
+msgstr ""
+
+#: 03101600.xhp#par_id3145273.22.help.text
+msgid "lCount=123456789 REM lCount is an implicit long integer variable"
+msgstr ""
+
+#: 03101600.xhp#par_id3152596.23.help.text
+msgctxt "03101600.xhp#par_id3152596.23.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03020402.xhp#tit.help.text
+msgid "ChDrive Statement [Runtime]"
+msgstr ""
+
+#: 03020402.xhp#bm_id3145068.help.text
+msgid "<bookmark_value>ChDrive statement</bookmark_value>"
+msgstr ""
+
+#: 03020402.xhp#hd_id3145068.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"ChDrive Statement [Runtime]\">ChDrive Statement [Runtime]</link>"
+msgstr ""
+
+#: 03020402.xhp#par_id3149656.2.help.text
+msgid "Changes the current drive."
+msgstr ""
+
+#: 03020402.xhp#hd_id3154138.3.help.text
+msgctxt "03020402.xhp#hd_id3154138.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020402.xhp#par_id3154685.4.help.text
+msgid "ChDrive Text As String"
+msgstr ""
+
+#: 03020402.xhp#hd_id3156423.5.help.text
+msgctxt "03020402.xhp#hd_id3156423.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020402.xhp#hd_id3153188.8.help.text
+msgctxt "03020402.xhp#hd_id3153188.8.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020402.xhp#par_id3151113.9.help.text
+msgid "Sub ExampleCHDrive"
+msgstr ""
+
+#: 03020402.xhp#par_id3152576.10.help.text
+msgid "ChDrive \"D\" REM Only possible if a drive 'D' exists."
+msgstr ""
+
+#: 03020402.xhp#par_id3156441.11.help.text
+msgctxt "03020402.xhp#par_id3156441.11.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03030100.xhp#tit.help.text
+msgid "Converting Date Values"
+msgstr ""
+
+#: 03030100.xhp#hd_id3147573.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030100.xhp\" name=\"Converting Date Values\">Converting Date Values</link>"
+msgstr ""
+
+#: 03030100.xhp#par_id3154760.2.help.text
+msgid "The following functions convert date values to calculable numbers and back."
+msgstr ""
+
+#: 03103400.xhp#tit.help.text
+msgid "Public Statement [Runtime]"
+msgstr ""
+
+#: 03103400.xhp#bm_id3153311.help.text
+msgid "<bookmark_value>Public statement</bookmark_value>"
+msgstr ""
+
+#: 03103400.xhp#hd_id3153311.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103400.xhp\" name=\"Public Statement [Runtime]\">Public Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03103400.xhp#hd_id3150772.3.help.text
+msgctxt "03103400.xhp#hd_id3150772.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03103400.xhp#par_id3155341.4.help.text
+msgid "Public VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
+msgstr ""
+
+#: 03103400.xhp#hd_id3145315.5.help.text
+msgctxt "03103400.xhp#hd_id3145315.5.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03103400.xhp#par_id3156024.6.help.text
+msgid "Public iPublicVar As Integer"
+msgstr ""
+
+#: 03103400.xhp#par_id3153896.8.help.text
+msgid "Sub ExamplePublic"
+msgstr ""
+
+#: 03103400.xhp#par_id3149656.9.help.text
+msgid "iPublicVar = iPublicVar + 1"
+msgstr ""
+
+#: 03103400.xhp#par_id3150359.10.help.text
+msgid "MsgBox iPublicVar"
+msgstr ""
+
+#: 03103400.xhp#par_id3154365.11.help.text
+msgctxt "03103400.xhp#par_id3154365.11.help.text"
+msgid "End sub"
+msgstr ""
+
+#: 03070600.xhp#tit.help.text
+msgid "Mod-Operator [Runtime]"
+msgstr ""
+
+#: 03070600.xhp#bm_id3150669.help.text
+msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
+msgstr ""
+
+#: 03070600.xhp#hd_id3150669.1.help.text
+msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod-Operator [Runtime]\">Mod Operator [Runtime]</link>"
+msgstr ""
+
+#: 03070600.xhp#par_id3148686.2.help.text
+msgid "Returns the integer remainder of a division."
+msgstr ""
+
+#: 03070600.xhp#hd_id3146795.3.help.text
+msgctxt "03070600.xhp#hd_id3146795.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03070600.xhp#par_id3147560.4.help.text
+msgid "Result = Expression1 MOD Expression2"
+msgstr ""
+
+#: 03070600.xhp#hd_id3149657.5.help.text
+msgctxt "03070600.xhp#hd_id3149657.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03070600.xhp#par_id3153380.6.help.text
+msgctxt "03070600.xhp#par_id3153380.6.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03070600.xhp#hd_id3154365.7.help.text
+msgctxt "03070600.xhp#hd_id3154365.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03070600.xhp#par_id3145172.8.help.text
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
+msgstr ""
+
+#: 03070600.xhp#par_id3151042.9.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
+msgstr ""
+
+#: 03070600.xhp#hd_id3147287.10.help.text
+msgctxt "03070600.xhp#hd_id3147287.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03070600.xhp#par_id3153770.11.help.text
+msgid "sub ExampleMod"
+msgstr ""
+
+#: 03070600.xhp#par_id3161832.12.help.text
+msgid "print 10 mod 2.5 REM returns 0"
+msgstr ""
+
+#: 03070600.xhp#par_id3146922.13.help.text
+msgid "print 10 / 2.5 REM returns 4"
+msgstr ""
+
+#: 03070600.xhp#par_id3145273.14.help.text
+msgid "print 10 mod 5 REM returns 0"
+msgstr ""
+
+#: 03070600.xhp#par_id3150011.15.help.text
+msgid "print 10 / 5 REM returns 2"
+msgstr ""
+
+#: 03070600.xhp#par_id3149483.16.help.text
+msgid "print 5 mod 10 REM returns 5"
+msgstr ""
+
+#: 03070600.xhp#par_id3151114.17.help.text
+msgid "print 5 / 10 REM returns 0.5"
+msgstr ""
+
+#: 03070600.xhp#par_id3154013.18.help.text
+msgctxt "03070600.xhp#par_id3154013.18.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 01170103.xhp#tit.help.text
+msgid "Events"
+msgstr ""
+
+#: 01170103.xhp#hd_id3155506.1.help.text
+msgid "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Events\">Events</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 01170103.xhp#hd_id3145387.16.help.text
+msgid "When receiving focus"
+msgstr ""
+
+#: 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 ""
+
+#: 01170103.xhp#hd_id3152892.18.help.text
+msgid "When losing focus"
+msgstr ""
+
+#: 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 ""
+
+#: 01170103.xhp#hd_id3152896.20.help.text
+msgid "Key pressed"
+msgstr ""
+
+#: 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 ""
+
+#: 01170103.xhp#hd_id3146869.43.help.text
+msgid "Key released"
+msgstr ""
+
+#: 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 ""
+
+#: 01170103.xhp#hd_id3159096.41.help.text
+msgid "Modified"
+msgstr "Змінено"
+
+#: 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 ""
+
+#: 01170103.xhp#hd_id3144508.10.help.text
+msgid "Text modified"
+msgstr ""
+
+#: 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 ""
+
+#: 01170103.xhp#hd_id3159207.8.help.text
+msgid "Item status changed"
+msgstr ""
+
+#: 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 ""
+
+#: 01170103.xhp#hd_id3151304.26.help.text
+msgid "Mouse inside"
+msgstr ""
+
+#: 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 ""
+
+#: 01170103.xhp#hd_id3146778.30.help.text
+msgid "Mouse moved while key pressed"
+msgstr ""
+
+#: 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 ""
+
+#: 01170103.xhp#hd_id3150210.32.help.text
+msgid "Mouse moved"
+msgstr ""
+
+#: 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 ""
+
+#: 01170103.xhp#hd_id3145216.22.help.text
+msgid "Mouse button pressed"
+msgstr ""
+
+#: 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 ""
+
+#: 01170103.xhp#hd_id3148899.24.help.text
+msgid "Mouse button released"
+msgstr ""
+
+#: 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 ""
+
+#: 01170103.xhp#hd_id3153556.28.help.text
+msgid "Mouse outside"
+msgstr ""
+
+#: 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 ""
+
+#: 01170103.xhp#hd_id3155759.45.help.text
+msgid "While adjusting"
+msgstr ""
+
+#: 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 ""
+
+#: 03110100.xhp#tit.help.text
+msgid "Comparison Operators [Runtime]"
+msgstr ""
+
+#: 03110100.xhp#bm_id3150682.help.text
+msgid "<bookmark_value>comparison operators;%PRODUCTNAME Basic</bookmark_value><bookmark_value>operators;comparisons</bookmark_value>"
+msgstr ""
+
+#: 03110100.xhp#hd_id3150682.1.help.text
+msgid "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Comparison Operators [Runtime]\">Comparison Operators [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03110100.xhp#hd_id3147291.3.help.text
+msgctxt "03110100.xhp#hd_id3147291.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03110100.xhp#par_id3149177.4.help.text
+msgid "Result = Expression1 { = | < | > | <= | >= } Expression2"
+msgstr ""
+
+#: 03110100.xhp#hd_id3145316.5.help.text
+msgctxt "03110100.xhp#hd_id3145316.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03110100.xhp#par_id3147573.6.help.text
+msgid "<emph>Result:</emph> Boolean expression that specifies the result of the comparison (True, or False)"
+msgstr ""
+
+#: 03110100.xhp#par_id3148686.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any numeric values or strings that you want to compare."
+msgstr ""
+
+#: 03110100.xhp#hd_id3147531.8.help.text
+msgid "Comparison operators"
+msgstr ""
+
+#: 03110100.xhp#par_id3147265.9.help.text
+msgid "= : Equal to"
+msgstr ""
+
+#: 03110100.xhp#par_id3154924.10.help.text
+msgid "< : Less than"
+msgstr ""
+
+#: 03110100.xhp#par_id3146795.11.help.text
+msgid "> : Greater than"
+msgstr ""
+
+#: 03110100.xhp#par_id3150541.12.help.text
+msgid "<= : Less than or equal to"
+msgstr ""
+
+#: 03110100.xhp#par_id3150400.13.help.text
+msgid ">= : Greater than or equal to"
+msgstr ""
+
+#: 03110100.xhp#par_id3148797.14.help.text
+msgid "<> : Not equal to"
+msgstr ""
+
+#: 03110100.xhp#hd_id3154686.15.help.text
+msgctxt "03110100.xhp#hd_id3154686.15.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03110100.xhp#par_id3153969.16.help.text
+msgid "Sub ExampleUnequal"
+msgstr ""
+
+#: 03110100.xhp#par_id3159151.17.help.text
+msgid "DIM sFile As String"
+msgstr ""
+
+#: 03110100.xhp#par_id3154909.18.help.text
+msgid "DIM sRoot As String REM ' Root directory for file in and output"
+msgstr ""
+
+#: 03110100.xhp#par_id3150767.19.help.text
+msgid "sRoot = \"c:\\\""
+msgstr ""
+
+#: 03110100.xhp#par_id3154125.20.help.text
+msgid "sFile = Dir$( sRoot ,22)"
+msgstr ""
+
+#: 03110100.xhp#par_id3150440.21.help.text
+msgctxt "03110100.xhp#par_id3150440.21.help.text"
+msgid "If sFile <> \"\" Then"
+msgstr ""
+
+#: 03110100.xhp#par_id3147288.22.help.text
+msgctxt "03110100.xhp#par_id3147288.22.help.text"
+msgid "Do"
+msgstr ""
+
+#: 03110100.xhp#par_id3150010.23.help.text
+msgid "Msgbox sFile"
+msgstr ""
+
+#: 03110100.xhp#par_id3153727.24.help.text
+msgctxt "03110100.xhp#par_id3153727.24.help.text"
+msgid "sFile = Dir$"
+msgstr ""
+
+#: 03110100.xhp#par_id3149664.25.help.text
+msgctxt "03110100.xhp#par_id3149664.25.help.text"
+msgid "Loop Until sFile = \"\""
+msgstr ""
+
+#: 03110100.xhp#par_id3146986.26.help.text
+msgctxt "03110100.xhp#par_id3146986.26.help.text"
+msgid "End If"
+msgstr ""
+
+#: 03110100.xhp#par_id3153952.27.help.text
+msgctxt "03110100.xhp#par_id3153952.27.help.text"
+msgid "End sub"
+msgstr ""
+
+#: 03080104.xhp#tit.help.text
+msgid "Tan Function [Runtime]"
+msgstr ""
+
+#: 03080104.xhp#bm_id3148550.help.text
+msgid "<bookmark_value>Tan function</bookmark_value>"
+msgstr ""
+
+#: 03080104.xhp#hd_id3148550.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080104.xhp\" name=\"Tan Function [Runtime]\">Tan Function [Runtime]</link>"
+msgstr ""
+
+#: 03080104.xhp#par_id3148663.2.help.text
+msgid "Determines the tangent of an angle. The angle is specified in radians."
+msgstr ""
+
+#: 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 ""
+
+#: 03080104.xhp#par_id3154366.4.help.text
+msgid "Tan(Alpha) = side opposite the angle/side adjacent to angle"
+msgstr ""
+
+#: 03080104.xhp#hd_id3145174.5.help.text
+msgctxt "03080104.xhp#hd_id3145174.5.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03080104.xhp#par_id3151042.6.help.text
+msgid "Tan (Number)"
+msgstr ""
+
+#: 03080104.xhp#hd_id3156214.7.help.text
+msgctxt "03080104.xhp#hd_id3156214.7.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03080104.xhp#par_id3156281.8.help.text
+msgctxt "03080104.xhp#par_id3156281.8.help.text"
+msgid "Double"
+msgstr ""
+
+#: 03080104.xhp#hd_id3155132.9.help.text
+msgctxt "03080104.xhp#hd_id3155132.9.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03080104.xhp#par_id3155414.12.help.text
+msgid "degrees=(radiant*180)/Pi"
+msgstr ""
+
+#: 03080104.xhp#par_id3146975.13.help.text
+msgid "radiant=(degrees*Pi)/180"
+msgstr ""
+
+#: 03080104.xhp#par_id3147434.14.help.text
+msgctxt "03080104.xhp#par_id3147434.14.help.text"
+msgid "Pi is approximately 3.141593."
+msgstr ""
+
+#: 03080104.xhp#hd_id3149483.15.help.text
+msgctxt "03080104.xhp#hd_id3149483.15.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03080104.xhp#par_id3151115.18.help.text
+msgid "Sub ExampleTangens"
+msgstr ""
+
+#: 03080104.xhp#par_id3153158.19.help.text
+msgid "REM Pi = 3.1415926 is a pre-defined variable"
+msgstr ""
+
+#: 03080104.xhp#par_id3145800.20.help.text
+msgctxt "03080104.xhp#par_id3145800.20.help.text"
+msgid "Dim d1 as Double"
+msgstr ""
+
+#: 03080104.xhp#par_id3150417.21.help.text
+msgctxt "03080104.xhp#par_id3150417.21.help.text"
+msgid "Dim dAlpha as Double"
+msgstr ""
+
+#: 03080104.xhp#par_id3145252.22.help.text
+msgid "d1 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"opposite\")"
+msgstr ""
+
+#: 03080104.xhp#par_id3149582.23.help.text
+msgid "dAlpha = InputBox$ (\"Enter the Alpha angle (in degrees): \",\"Alpha\")"
+msgstr ""
+
+#: 03080104.xhp#par_id3154016.24.help.text
+msgid "Print \"the length of the side adjacent the angle is\"; (d1 / tan (dAlpha * Pi / 180))"
+msgstr ""
+
+#: 03080104.xhp#par_id3154731.25.help.text
+msgctxt "03080104.xhp#par_id3154731.25.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03030104.xhp#tit.help.text
+msgid "Month Function [Runtime]"
+msgstr ""
+
+#: 03030104.xhp#bm_id3153127.help.text
+msgid "<bookmark_value>Month function</bookmark_value>"
+msgstr ""
+
+#: 03030104.xhp#hd_id3153127.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month Function [Runtime]\">Month Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03030104.xhp#hd_id3145068.3.help.text
+msgctxt "03030104.xhp#hd_id3145068.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03030104.xhp#par_id3150398.4.help.text
+msgid "Month (Number)"
+msgstr ""
+
+#: 03030104.xhp#hd_id3154366.5.help.text
+msgctxt "03030104.xhp#hd_id3154366.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03030104.xhp#par_id3154125.6.help.text
+msgctxt "03030104.xhp#par_id3154125.6.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03030104.xhp#hd_id3150768.7.help.text
+msgctxt "03030104.xhp#hd_id3150768.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03030104.xhp#par_id3147426.10.help.text
+msgid "Print Month(DateSerial(1994, 12, 20))"
+msgstr ""
+
+#: 03030104.xhp#par_id3145366.11.help.text
+msgctxt "03030104.xhp#par_id3145366.11.help.text"
+msgid "returns the value 12."
+msgstr ""
+
+#: 03030104.xhp#hd_id3146923.12.help.text
+msgctxt "03030104.xhp#hd_id3146923.12.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03030104.xhp#par_id3156442.13.help.text
+msgid "Sub ExampleMonth"
+msgstr ""
+
+#: 03030104.xhp#par_id3149664.14.help.text
+msgid "MsgBox \"\" & Month(Now) ,64,\"The current month\""
+msgstr ""
+
+#: 03030104.xhp#par_id3150012.15.help.text
+msgctxt "03030104.xhp#par_id3150012.15.help.text"
+msgid "End sub"
+msgstr ""
+
+#: 03030102.xhp#tit.help.text
+msgid "DateValue Function [Runtime]"
+msgstr ""
+
+#: 03030102.xhp#bm_id3156344.help.text
+msgid "<bookmark_value>DateValue function</bookmark_value>"
+msgstr ""
+
+#: 03030102.xhp#hd_id3156344.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue Function [Runtime]\">DateValue Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03030102.xhp#hd_id3148799.3.help.text
+msgctxt "03030102.xhp#hd_id3148799.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03030102.xhp#par_id3154910.4.help.text
+msgid "DateValue [(date)]"
+msgstr ""
+
+#: 03030102.xhp#hd_id3150870.5.help.text
+msgctxt "03030102.xhp#hd_id3150870.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03030102.xhp#par_id3153194.6.help.text
+msgctxt "03030102.xhp#par_id3153194.6.help.text"
+msgid "Date"
+msgstr ""
+
+#: 03030102.xhp#hd_id3153969.7.help.text
+msgctxt "03030102.xhp#hd_id3153969.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03030102.xhp#hd_id3153142.24.help.text
+msgctxt "03030102.xhp#hd_id3153142.24.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03030102.xhp#par_id3155412.25.help.text
+msgid "Sub ExampleDateValue"
+msgstr ""
+
+#: 03030102.xhp#par_id3153363.26.help.text
+msgid "msgbox DateValue(\"12/02/1997\")"
+msgstr ""
+
+#: 03030102.xhp#par_id3149262.27.help.text
+msgctxt "03030102.xhp#par_id3149262.27.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03101300.xhp#tit.help.text
+msgid "DefDate Statement [Runtime]"
+msgstr ""
+
+#: 03101300.xhp#bm_id3150504.help.text
+msgid "<bookmark_value>DefDate statement</bookmark_value>"
+msgstr ""
+
+#: 03101300.xhp#hd_id3150504.1.help.text
+msgid "<link href=\"text/sbasic/shared/03101300.xhp\" name=\"DefDate Statement [Runtime]\">DefDate Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03101300.xhp#hd_id3154758.3.help.text
+msgctxt "03101300.xhp#hd_id3154758.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03101300.xhp#par_id3148664.4.help.text
+msgctxt "03101300.xhp#par_id3148664.4.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr ""
+
+#: 03101300.xhp#hd_id3150541.5.help.text
+msgctxt "03101300.xhp#hd_id3150541.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03101300.xhp#par_id3156709.6.help.text
+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 ""
+
+#: 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 ""
+
+#: 03101300.xhp#par_id3145171.8.help.text
+msgctxt "03101300.xhp#par_id3145171.8.help.text"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr ""
+
+#: 03101300.xhp#par_id3150767.9.help.text
+msgid "<emph>DefDate:</emph> Date"
+msgstr ""
+
+#: 03101300.xhp#hd_id3153768.10.help.text
+msgctxt "03101300.xhp#hd_id3153768.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03101300.xhp#par_id3145785.12.help.text
+msgctxt "03101300.xhp#par_id3145785.12.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr ""
+
+#: 03101300.xhp#par_id3146923.13.help.text
+msgctxt "03101300.xhp#par_id3146923.13.help.text"
+msgid "DefBool b"
+msgstr ""
+
+#: 03101300.xhp#par_id3155412.14.help.text
+msgctxt "03101300.xhp#par_id3155412.14.help.text"
+msgid "DefDate t"
+msgstr ""
+
+#: 03101300.xhp#par_id3153726.15.help.text
+msgctxt "03101300.xhp#par_id3153726.15.help.text"
+msgid "DefDbL d"
+msgstr ""
+
+#: 03101300.xhp#par_id3147435.16.help.text
+msgctxt "03101300.xhp#par_id3147435.16.help.text"
+msgid "DefInt i"
+msgstr ""
+
+#: 03101300.xhp#par_id3153188.17.help.text
+msgctxt "03101300.xhp#par_id3153188.17.help.text"
+msgid "DefLng l"
+msgstr ""
+
+#: 03101300.xhp#par_id3153143.18.help.text
+msgctxt "03101300.xhp#par_id3153143.18.help.text"
+msgid "DefObj o"
+msgstr ""
+
+#: 03101300.xhp#par_id3150010.19.help.text
+msgctxt "03101300.xhp#par_id3150010.19.help.text"
+msgid "DefVar v"
+msgstr ""
+
+#: 03101300.xhp#par_id3149263.21.help.text
+msgid "Sub ExampleDefDate"
+msgstr ""
+
+#: 03101300.xhp#par_id3152462.22.help.text
+msgid "tDate=Date REM tDate is an implicit date variable"
+msgstr ""
+
+#: 03101300.xhp#par_id3149664.23.help.text
+msgctxt "03101300.xhp#par_id3149664.23.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03010302.xhp#tit.help.text
+msgid "Green Function [Runtime]"
+msgstr ""
+
+#: 03010302.xhp#bm_id3148947.help.text
+msgid "<bookmark_value>Green function</bookmark_value>"
+msgstr ""
+
+#: 03010302.xhp#hd_id3148947.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010302.xhp\" name=\"Green Function [Runtime]\">Green Function [Runtime]</link>"
+msgstr ""
+
+#: 03010302.xhp#par_id3153361.2.help.text
+msgid "Returns the Green component of the given color code."
+msgstr ""
+
+#: 03010302.xhp#hd_id3154140.3.help.text
+msgctxt "03010302.xhp#hd_id3154140.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03010302.xhp#par_id3153969.4.help.text
+msgid "Green (Color As Long)"
+msgstr ""
+
+#: 03010302.xhp#hd_id3154124.5.help.text
+msgctxt "03010302.xhp#hd_id3154124.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03010302.xhp#par_id3153194.6.help.text
+msgctxt "03010302.xhp#par_id3153194.6.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03010302.xhp#hd_id3154909.7.help.text
+msgctxt "03010302.xhp#hd_id3154909.7.help.text"
+msgid "Parameter:"
+msgstr ""
+
+#: 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 ""
+
+#: 03010302.xhp#hd_id3149664.9.help.text
+msgctxt "03010302.xhp#hd_id3149664.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03010302.xhp#par_id3156442.10.help.text
+msgctxt "03010302.xhp#par_id3156442.10.help.text"
+msgid "Sub ExampleColor"
+msgstr ""
+
+#: 03010302.xhp#par_id3146974.11.help.text
+msgctxt "03010302.xhp#par_id3146974.11.help.text"
+msgid "Dim lVar As Long"
+msgstr ""
+
+#: 03010302.xhp#par_id3145750.12.help.text
+msgctxt "03010302.xhp#par_id3145750.12.help.text"
+msgid "lVar = rgb(128,0,200)"
+msgstr ""
+
+#: 03010302.xhp#par_id3151117.13.help.text
+msgid "msgbox \"The color \" & lVar & \" contains the components:\" & Chr(13) &_"
+msgstr ""
+
+#: 03010302.xhp#par_id3153951.14.help.text
+msgid "\"red = \" & red(lVar) & Chr(13)&_"
+msgstr ""
+
+#: 03010302.xhp#par_id3152462.15.help.text
+msgid "\"green = \" & green(lVar) & Chr(13)&_"
+msgstr ""
+
+#: 03010302.xhp#par_id3154730.16.help.text
+msgid "\"blue = \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr ""
+
+#: 03010302.xhp#par_id3144764.17.help.text
+msgctxt "03010302.xhp#par_id3144764.17.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03131000.xhp#tit.help.text
+msgid "GetSolarVersion Function [Runtime]"
+msgstr ""
+
+#: 03131000.xhp#bm_id3157898.help.text
+msgid "<bookmark_value>GetSolarVersion function</bookmark_value>"
+msgstr ""
+
+#: 03131000.xhp#hd_id3157898.1.help.text
+msgid "<link href=\"text/sbasic/shared/03131000.xhp\" name=\"GetSolarVersion Function [Runtime]\">GetSolarVersion Function [Runtime]</link>"
+msgstr ""
+
+#: 03131000.xhp#par_id3152801.2.help.text
+msgid "Returns the internal number of the current $[officename] version."
+msgstr ""
+
+#: 03131000.xhp#hd_id3153311.3.help.text
+msgctxt "03131000.xhp#hd_id3153311.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03131000.xhp#par_id3155388.4.help.text
+msgid "s = GetSolarVersion"
+msgstr ""
+
+#: 03131000.xhp#hd_id3149514.5.help.text
+msgctxt "03131000.xhp#hd_id3149514.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03131000.xhp#par_id3148685.6.help.text
+msgctxt "03131000.xhp#par_id3148685.6.help.text"
+msgid "String"
+msgstr ""
+
+#: 03131000.xhp#hd_id3143270.7.help.text
+msgctxt "03131000.xhp#hd_id3143270.7.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03131000.xhp#par_id3148473.8.help.text
+msgid "Sub ExampleGetSolarVersion"
+msgstr ""
+
+#: 03131000.xhp#par_id3156024.9.help.text
+msgid "Dim sSep As String"
+msgstr ""
+
+#: 03131000.xhp#par_id3159414.10.help.text
+msgid "sSep = GetSolarVersion"
+msgstr ""
+
+#: 03131000.xhp#par_id3148947.11.help.text
+msgid "MsgBox sSep,64,\"Version number of the solar technology\""
+msgstr ""
+
+#: 03131000.xhp#par_id3156344.12.help.text
+msgctxt "03131000.xhp#par_id3156344.12.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03080801.xhp#tit.help.text
+msgid "Hex Function [Runtime]"
+msgstr ""
+
+#: 03080801.xhp#bm_id3150616.help.text
+msgid "<bookmark_value>Hex function</bookmark_value>"
+msgstr ""
+
+#: 03080801.xhp#hd_id3150616.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080801.xhp\" name=\"Hex Function [Runtime]\">Hex Function [Runtime]</link>"
+msgstr ""
+
+#: 03080801.xhp#par_id3145136.2.help.text
+msgid "Returns a string that represents the hexadecimal value of a number."
+msgstr ""
+
+#: 03080801.xhp#hd_id3147573.3.help.text
+msgctxt "03080801.xhp#hd_id3147573.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03080801.xhp#par_id3150771.4.help.text
+msgid "Hex (Number)"
+msgstr ""
+
+#: 03080801.xhp#hd_id3147530.5.help.text
+msgctxt "03080801.xhp#hd_id3147530.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03080801.xhp#par_id3159414.6.help.text
+msgctxt "03080801.xhp#par_id3159414.6.help.text"
+msgid "String"
+msgstr ""
+
+#: 03080801.xhp#hd_id3156344.7.help.text
+msgctxt "03080801.xhp#hd_id3156344.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03080801.xhp#par_id3148947.8.help.text
+msgid "<emph>Number:</emph> Any numeric expression that you want to convert to a hexadecimal number."
+msgstr ""
+
+#: 03080801.xhp#hd_id3154365.9.help.text
+msgctxt "03080801.xhp#hd_id3154365.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03080801.xhp#par_id3145420.29.help.text
+msgid "Sub ExampleHex"
+msgstr ""
+
+#: 03080801.xhp#par_id3156214.30.help.text
+msgid "REM uses BasicFormulas in $[officename] Calc"
+msgstr ""
+
+#: 03080801.xhp#par_id3153970.31.help.text
+msgid "Dim a2, b2, c2 as String"
+msgstr ""
+
+#: 03080801.xhp#par_id3154909.32.help.text
+msgid "a2 = \"&H3E8\""
+msgstr ""
+
+#: 03080801.xhp#par_id3148674.33.help.text
+msgid "b2 = Hex2Int(a2)"
+msgstr ""
+
+#: 03080801.xhp#par_id3155132.34.help.text
+msgid "MsgBox b2"
+msgstr ""
+
+#: 03080801.xhp#par_id3150440.35.help.text
+msgid "c2 = Int2Hex(b2)"
+msgstr ""
+
+#: 03080801.xhp#par_id3147427.36.help.text
+msgid "MsgBox c2"
+msgstr ""
+
+#: 03080801.xhp#par_id3147435.37.help.text
+msgctxt "03080801.xhp#par_id3147435.37.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03080801.xhp#par_id3148645.19.help.text
+msgid "Function Hex2Int( sHex As String ) As Long"
+msgstr ""
+
+#: 03080801.xhp#par_id3149262.20.help.text
+msgid "REM Returns a Long-Integer from a hexadecimal value."
+msgstr ""
+
+#: 03080801.xhp#par_id3148616.21.help.text
+msgid "Hex2Int = clng( sHex )"
+msgstr ""
+
+#: 03080801.xhp#par_id3153952.22.help.text
+msgctxt "03080801.xhp#par_id3153952.22.help.text"
+msgid "End Function"
+msgstr ""
+
+#: 03080801.xhp#par_id3146984.24.help.text
+msgid "Function Int2Hex( iLong As Long) As String"
+msgstr ""
+
+#: 03080801.xhp#par_id3147215.25.help.text
+msgid "REM Calculates a hexadecimal value in Integer."
+msgstr ""
+
+#: 03080801.xhp#par_id3148575.26.help.text
+msgid "Int2Hex = \"&H\" & Hex( iLong )"
+msgstr ""
+
+#: 03080801.xhp#par_id3151073.27.help.text
+msgctxt "03080801.xhp#par_id3151073.27.help.text"
+msgid "End Function"
+msgstr ""
+
+#: 03020406.xhp#tit.help.text
+msgid "FileCopy Statement [Runtime]"
+msgstr ""
+
+#: 03020406.xhp#bm_id3154840.help.text
+msgid "<bookmark_value>FileCopy statement</bookmark_value>"
+msgstr ""
+
+#: 03020406.xhp#hd_id3154840.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"FileCopy Statement [Runtime]\">FileCopy Statement [Runtime]</link>"
+msgstr ""
+
+#: 03020406.xhp#par_id3149497.2.help.text
+msgid "Copies a file."
+msgstr ""
+
+#: 03020406.xhp#hd_id3147443.3.help.text
+msgctxt "03020406.xhp#hd_id3147443.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020406.xhp#par_id3146957.4.help.text
+msgid "FileCopy TextFrom As String, TextTo As String"
+msgstr ""
+
+#: 03020406.xhp#hd_id3153825.5.help.text
+msgctxt "03020406.xhp#hd_id3153825.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020406.xhp#par_id3150791.8.help.text
+msgid "You can only use the FileCopy statement to copy files that are not opened."
+msgstr ""
+
+#: 03020406.xhp#hd_id3125863.9.help.text
+msgctxt "03020406.xhp#hd_id3125863.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020406.xhp#par_id3150869.10.help.text
+msgid "Sub ExampleFilecopy"
+msgstr ""
+
+#: 03020406.xhp#par_id3154685.11.help.text
+msgid "Filecopy \"c:\\autoexec.bat\", \"c:\\Temp\\Autoexec.sav\""
+msgstr ""
+
+#: 03020406.xhp#par_id3154123.12.help.text
+msgctxt "03020406.xhp#par_id3154123.12.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03080400.xhp#tit.help.text
+msgid "Square Root Calculation"
+msgstr ""
+
+#: 03080400.xhp#hd_id3148946.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080400.xhp\" name=\"Square Root Calculation\">Square Root Calculation</link>"
+msgstr ""
+
+#: 03080400.xhp#par_id3159414.2.help.text
+msgid "Use this function to calculate square roots."
+msgstr ""
+
+#: 03080201.xhp#tit.help.text
+msgid "Exp Function [Runtime]"
+msgstr ""
+
+#: 03080201.xhp#bm_id3150616.help.text
+msgid "<bookmark_value>Exp function</bookmark_value>"
+msgstr ""
+
+#: 03080201.xhp#hd_id3150616.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080201.xhp\" name=\"Exp Function [Runtime]\">Exp Function [Runtime]</link>"
+msgstr ""
+
+#: 03080201.xhp#par_id3155555.2.help.text
+msgid "Returns the base of the natural logarithm (e = 2.718282) raised to a power."
+msgstr ""
+
+#: 03080201.xhp#hd_id3150984.3.help.text
+msgctxt "03080201.xhp#hd_id3150984.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03080201.xhp#par_id3145315.4.help.text
+msgid "Exp (Number)"
+msgstr ""
+
+#: 03080201.xhp#hd_id3154347.5.help.text
+msgctxt "03080201.xhp#hd_id3154347.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03080201.xhp#par_id3149670.6.help.text
+msgctxt "03080201.xhp#par_id3149670.6.help.text"
+msgid "Double"
+msgstr ""
+
+#: 03080201.xhp#hd_id3154760.7.help.text
+msgctxt "03080201.xhp#hd_id3154760.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03080201.xhp#hd_id3156280.9.help.text
+msgctxt "03080201.xhp#hd_id3156280.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03080201.xhp#par_id3153193.10.help.text
+msgctxt "03080201.xhp#par_id3153193.10.help.text"
+msgid "Sub ExampleLogExp"
+msgstr ""
+
+#: 03080201.xhp#par_id3125864.11.help.text
+msgid "Dim dValue as Double"
+msgstr ""
+
+#: 03080201.xhp#par_id3145172.12.help.text
+msgid "const b1=12.345e12"
+msgstr ""
+
+#: 03080201.xhp#par_id3159254.13.help.text
+msgid "const b2=1.345e34"
+msgstr ""
+
+#: 03080201.xhp#par_id3147287.14.help.text
+msgid "dValue=Exp( Log(b1)+Log(b2) )"
+msgstr ""
+
+#: 03080201.xhp#par_id3161832.15.help.text
+msgid "MsgBox \"\" & dValue & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm\""
+msgstr ""
+
+#: 03080201.xhp#par_id3151112.16.help.text
+msgctxt "03080201.xhp#par_id3151112.16.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03104100.xhp#tit.help.text
+msgid "Optional (in Function Statement) [Runtime]"
+msgstr ""
+
+#: 03104100.xhp#bm_id3149205.help.text
+msgid "<bookmark_value>Optional function</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 03104100.xhp#par_id3143267.2.help.text
+msgid "Allows you to define parameters that are passed to a function as optional."
+msgstr ""
+
+#: 03104100.xhp#par_id3155419.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link>"
+msgstr ""
+
+#: 03104100.xhp#hd_id3153824.4.help.text
+msgctxt "03104100.xhp#hd_id3153824.4.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03104100.xhp#par_id3159157.5.help.text
+msgid "Function MyFunction(Text1 As String, Optional Arg2, Optional Arg3)"
+msgstr ""
+
+#: 03104100.xhp#hd_id3145610.7.help.text
+msgctxt "03104100.xhp#hd_id3145610.7.help.text"
+msgid "Examples:"
+msgstr ""
+
+#: 03104100.xhp#par_id3154347.8.help.text
+msgid "Result = MyFunction(\"Here\", 1, \"There\") ' all arguments are passed."
+msgstr ""
+
+#: 03104100.xhp#par_id3146795.9.help.text
+msgid "Result = MyFunction(\"Test\", ,1) ' second argument is missing."
+msgstr ""
+
+#: 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 ""
+
+#: 03020202.xhp#tit.help.text
+msgid "Input# Statement [Runtime]"
+msgstr ""
+
+#: 03020202.xhp#bm_id3154908.help.text
+msgid "<bookmark_value>Input statement</bookmark_value>"
+msgstr ""
+
+#: 03020202.xhp#hd_id3154908.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement [Runtime]\">Input# Statement [Runtime]</link>"
+msgstr ""
+
+#: 03020202.xhp#par_id3156424.2.help.text
+msgid "Reads data from an open sequential file."
+msgstr ""
+
+#: 03020202.xhp#hd_id3125863.3.help.text
+msgctxt "03020202.xhp#hd_id3125863.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020202.xhp#par_id3150440.4.help.text
+msgid "Input #FileNumber As Integer; var1[, var2[, var3[,...]]]"
+msgstr ""
+
+#: 03020202.xhp#hd_id3146121.5.help.text
+msgctxt "03020202.xhp#hd_id3146121.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020202.xhp#hd_id3152578.12.help.text
+msgctxt "03020202.xhp#hd_id3152578.12.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020202.xhp#par_id3144765.13.help.text
+msgctxt "03020202.xhp#par_id3144765.13.help.text"
+msgid "Sub ExampleWorkWithAFile"
+msgstr ""
+
+#: 03020202.xhp#par_id3145799.14.help.text
+msgctxt "03020202.xhp#par_id3145799.14.help.text"
+msgid "Dim iNumber As Integer"
+msgstr ""
+
+#: 03020202.xhp#par_id3145252.15.help.text
+msgctxt "03020202.xhp#par_id3145252.15.help.text"
+msgid "Dim sLine As String"
+msgstr ""
+
+#: 03020202.xhp#par_id3149410.16.help.text
+msgctxt "03020202.xhp#par_id3149410.16.help.text"
+msgid "Dim aFile As String"
+msgstr ""
+
+#: 03020202.xhp#par_id3149959.39.help.text
+msgctxt "03020202.xhp#par_id3149959.39.help.text"
+msgid "Dim sMsg as String"
+msgstr ""
+
+#: 03020202.xhp#par_id3153417.17.help.text
+msgctxt "03020202.xhp#par_id3153417.17.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr ""
+
+#: 03020202.xhp#par_id3150752.19.help.text
+msgctxt "03020202.xhp#par_id3150752.19.help.text"
+msgid "iNumber = Freefile"
+msgstr ""
+
+#: 03020202.xhp#par_id3153707.20.help.text
+msgctxt "03020202.xhp#par_id3153707.20.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020202.xhp#par_id3148408.23.help.text
+msgctxt "03020202.xhp#par_id3148408.23.help.text"
+msgid "Close #iNumber"
+msgstr ""
+
+#: 03020202.xhp#par_id3155937.27.help.text
+msgctxt "03020202.xhp#par_id3155937.27.help.text"
+msgid "iNumber = Freefile"
+msgstr ""
+
+#: 03020202.xhp#par_id3154702.28.help.text
+msgctxt "03020202.xhp#par_id3154702.28.help.text"
+msgid "Open aFile For Input As iNumber"
+msgstr ""
+
+#: 03020202.xhp#par_id3155959.29.help.text
+msgctxt "03020202.xhp#par_id3155959.29.help.text"
+msgid "While not eof(iNumber)"
+msgstr ""
+
+#: 03020202.xhp#par_id3145232.30.help.text
+msgctxt "03020202.xhp#par_id3145232.30.help.text"
+msgid "Line Input #iNumber, sLine"
+msgstr ""
+
+#: 03020202.xhp#par_id3147345.31.help.text
+msgctxt "03020202.xhp#par_id3147345.31.help.text"
+msgid "If sLine <>\"\" then"
+msgstr ""
+
+#: 03020202.xhp#par_id3150298.32.help.text
+msgctxt "03020202.xhp#par_id3150298.32.help.text"
+msgid "sMsg = sMsg & sLine & chr(13)"
+msgstr ""
+
+#: 03020202.xhp#par_id3154021.34.help.text
+msgctxt "03020202.xhp#par_id3154021.34.help.text"
+msgid "end if"
+msgstr ""
+
+#: 03020202.xhp#par_id3154665.35.help.text
+msgctxt "03020202.xhp#par_id3154665.35.help.text"
+msgid "wend"
+msgstr ""
+
+#: 03020202.xhp#par_id3155607.36.help.text
+msgctxt "03020202.xhp#par_id3155607.36.help.text"
+msgid "Close #iNumber"
+msgstr ""
+
+#: 03020202.xhp#par_id3153268.40.help.text
+msgctxt "03020202.xhp#par_id3153268.40.help.text"
+msgid "Msgbox sMsg"
+msgstr ""
+
+#: 03020202.xhp#par_id3152584.37.help.text
+msgctxt "03020202.xhp#par_id3152584.37.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03050100.xhp#tit.help.text
+msgid "Erl Function [Runtime]"
+msgstr ""
+
+#: 03050100.xhp#bm_id3157896.help.text
+msgid "<bookmark_value>Erl function</bookmark_value>"
+msgstr ""
+
+#: 03050100.xhp#hd_id3157896.1.help.text
+msgid "<link href=\"text/sbasic/shared/03050100.xhp\" name=\"Erl Function [Runtime]\">Erl Function [Runtime]</link>"
+msgstr ""
+
+#: 03050100.xhp#par_id3153394.2.help.text
+msgid "Returns the line number where an error occurred during program execution."
+msgstr ""
+
+#: 03050100.xhp#hd_id3147574.3.help.text
+msgctxt "03050100.xhp#hd_id3147574.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03050100.xhp#par_id3146795.4.help.text
+msgid "Erl"
+msgstr ""
+
+#: 03050100.xhp#hd_id3147265.5.help.text
+msgctxt "03050100.xhp#hd_id3147265.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03050100.xhp#par_id3154924.6.help.text
+msgctxt "03050100.xhp#par_id3154924.6.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03050100.xhp#hd_id3150792.7.help.text
+msgctxt "03050100.xhp#hd_id3150792.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03050100.xhp#par_id3153771.8.help.text
+msgid "The Erl function only returns a line number, and not a line label."
+msgstr ""
+
+#: 03050100.xhp#hd_id3146921.9.help.text
+msgctxt "03050100.xhp#hd_id3146921.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03050100.xhp#par_id3146975.10.help.text
+msgctxt "03050100.xhp#par_id3146975.10.help.text"
+msgid "sub ExampleError"
+msgstr ""
+
+#: 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 ""
+
+#: 03050100.xhp#par_id3155308.12.help.text
+msgctxt "03050100.xhp#par_id3155308.12.help.text"
+msgid "Dim iVar as Integer"
+msgstr ""
+
+#: 03050100.xhp#par_id3149482.13.help.text
+msgctxt "03050100.xhp#par_id3149482.13.help.text"
+msgid "Dim sVar As String"
+msgstr ""
+
+#: 03050100.xhp#par_id3153188.14.help.text
+msgid "REM Error caused by non-existent file"
+msgstr ""
+
+#: 03050100.xhp#par_id3159155.15.help.text
+msgctxt "03050100.xhp#par_id3159155.15.help.text"
+msgid "iVar = Freefile"
+msgstr ""
+
+#: 03050100.xhp#par_id3146120.16.help.text
+msgctxt "03050100.xhp#par_id3146120.16.help.text"
+msgid "Open \"\\file9879.txt\" for Input as #iVar"
+msgstr ""
+
+#: 03050100.xhp#par_id3147349.17.help.text
+msgctxt "03050100.xhp#par_id3147349.17.help.text"
+msgid "Line Input #iVar, sVar"
+msgstr ""
+
+#: 03050100.xhp#par_id3151073.18.help.text
+msgctxt "03050100.xhp#par_id3151073.18.help.text"
+msgid "Close #iVar"
+msgstr ""
+
+#: 03050100.xhp#par_id3148456.19.help.text
+msgctxt "03050100.xhp#par_id3148456.19.help.text"
+msgid "exit sub"
+msgstr ""
+
+#: 03050100.xhp#par_id3147394.20.help.text
+msgctxt "03050100.xhp#par_id3147394.20.help.text"
+msgid "ErrorHandler:"
+msgstr ""
+
+#: 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 ""
+
+#: 03050100.xhp#par_id3153878.22.help.text
+msgctxt "03050100.xhp#par_id3153878.22.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03120303.xhp#tit.help.text
+msgid "Left Function [Runtime]"
+msgstr ""
+
+#: 03120303.xhp#bm_id3149346.help.text
+msgid "<bookmark_value>Left function</bookmark_value>"
+msgstr ""
+
+#: 03120303.xhp#hd_id3149346.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function [Runtime]\">Left Function [Runtime]</link>"
+msgstr ""
+
+#: 03120303.xhp#par_id3147242.2.help.text
+msgid "Returns the number of leftmost characters that you specify of a string expression."
+msgstr ""
+
+#: 03120303.xhp#hd_id3156153.3.help.text
+msgctxt "03120303.xhp#hd_id3156153.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03120303.xhp#par_id3150771.4.help.text
+msgid "Left (Text As String, n As Long)"
+msgstr ""
+
+#: 03120303.xhp#hd_id3153824.5.help.text
+msgctxt "03120303.xhp#hd_id3153824.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03120303.xhp#par_id3147530.6.help.text
+msgctxt "03120303.xhp#par_id3147530.6.help.text"
+msgid "String"
+msgstr ""
+
+#: 03120303.xhp#hd_id3148946.7.help.text
+msgctxt "03120303.xhp#hd_id3148946.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03120303.xhp#par_id3148552.8.help.text
+msgid "<emph>Text:</emph> Any string expression that you want to return the leftmost characters from."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03120303.xhp#hd_id3125863.11.help.text
+msgctxt "03120303.xhp#hd_id3125863.11.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03120303.xhp#par_id3144761.12.help.text
+msgctxt "03120303.xhp#par_id3144761.12.help.text"
+msgid "Sub ExampleUSDate"
+msgstr ""
+
+#: 03120303.xhp#par_id3153194.13.help.text
+msgctxt "03120303.xhp#par_id3153194.13.help.text"
+msgid "Dim sInput As String"
+msgstr ""
+
+#: 03120303.xhp#par_id3154217.14.help.text
+msgctxt "03120303.xhp#par_id3154217.14.help.text"
+msgid "Dim sUS_date As String"
+msgstr ""
+
+#: 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 ""
+
+#: 03120303.xhp#par_id3149203.16.help.text
+msgctxt "03120303.xhp#par_id3149203.16.help.text"
+msgid "sUS_date = Mid(sInput, 6, 2)"
+msgstr ""
+
+#: 03120303.xhp#par_id3150439.17.help.text
+msgctxt "03120303.xhp#par_id3150439.17.help.text"
+msgid "sUS_date = sUS_date & \"/\""
+msgstr ""
+
+#: 03120303.xhp#par_id3153770.18.help.text
+msgctxt "03120303.xhp#par_id3153770.18.help.text"
+msgid "sUS_date = sUS_date & Right(sInput, 2)"
+msgstr ""
+
+#: 03120303.xhp#par_id3161833.19.help.text
+msgctxt "03120303.xhp#par_id3161833.19.help.text"
+msgid "sUS_date = sUS_date & \"/\""
+msgstr ""
+
+#: 03120303.xhp#par_id3147215.20.help.text
+msgctxt "03120303.xhp#par_id3147215.20.help.text"
+msgid "sUS_date = sUS_date & Left(sInput, 4)"
+msgstr ""
+
+#: 03120303.xhp#par_id3149666.21.help.text
+msgctxt "03120303.xhp#par_id3149666.21.help.text"
+msgid "MsgBox sUS_date"
+msgstr ""
+
+#: 03120303.xhp#par_id3153138.22.help.text
+msgctxt "03120303.xhp#par_id3153138.22.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03090407.xhp#tit.help.text
+msgid "Rem Statement [Runtime]"
+msgstr ""
+
+#: 03090407.xhp#bm_id3154347.help.text
+msgid "<bookmark_value>Rem statement</bookmark_value><bookmark_value>comments;Rem statement</bookmark_value>"
+msgstr ""
+
+#: 03090407.xhp#hd_id3154347.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090407.xhp\" name=\"Rem Statement [Runtime]\">Rem Statement [Runtime]</link>"
+msgstr ""
+
+#: 03090407.xhp#par_id3153525.2.help.text
+msgid "Specifies that a program line is a comment."
+msgstr ""
+
+#: 03090407.xhp#hd_id3153360.3.help.text
+msgctxt "03090407.xhp#hd_id3153360.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03090407.xhp#par_id3154141.4.help.text
+msgid "Rem Text"
+msgstr ""
+
+#: 03090407.xhp#hd_id3151042.5.help.text
+msgctxt "03090407.xhp#hd_id3151042.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03090407.xhp#par_id3150869.6.help.text
+msgid "<emph>Text:</emph> Any text that serves as a comment."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03090407.xhp#hd_id3150012.8.help.text
+msgctxt "03090407.xhp#hd_id3150012.8.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03090407.xhp#par_id3152939.9.help.text
+msgid "Sub ExampleMid"
+msgstr ""
+
+#: 03090407.xhp#par_id3153142.10.help.text
+msgid "DIM sVar As String"
+msgstr ""
+
+#: 03090407.xhp#par_id3145365.11.help.text
+msgctxt "03090407.xhp#par_id3145365.11.help.text"
+msgid "sVar = \"Las Vegas\""
+msgstr ""
+
+#: 03090407.xhp#par_id3146984.12.help.text
+msgid "Print Mid(sVar,3,5) REM Returns \"s Veg\""
+msgstr ""
+
+#: 03090407.xhp#par_id3153140.13.help.text
+msgid "REM Nothing occurs here"
+msgstr ""
+
+#: 03090407.xhp#par_id3152596.14.help.text
+msgctxt "03090407.xhp#par_id3152596.14.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03120315.xhp#tit.help.text
+msgid "Join Function [Runtime]"
+msgstr ""
+
+#: 03120315.xhp#bm_id3149416.help.text
+msgid "<bookmark_value>Join function</bookmark_value>"
+msgstr ""
+
+#: 03120315.xhp#hd_id3149416.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Join Function [Runtime]\">Join Function [Runtime]</link>"
+msgstr ""
+
+#: 03120315.xhp#par_id3149670.2.help.text
+msgid "Returns a string from a number of substrings in a string array."
+msgstr ""
+
+#: 03120315.xhp#hd_id3159414.3.help.text
+msgctxt "03120315.xhp#hd_id3159414.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03120315.xhp#par_id3156344.4.help.text
+msgid "Join (Text As String Array, delimiter)"
+msgstr ""
+
+#: 03120315.xhp#hd_id3150400.5.help.text
+msgctxt "03120315.xhp#hd_id3150400.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03120315.xhp#par_id3150359.6.help.text
+msgctxt "03120315.xhp#par_id3150359.6.help.text"
+msgid "String"
+msgstr ""
+
+#: 03120315.xhp#hd_id3148798.7.help.text
+msgctxt "03120315.xhp#hd_id3148798.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03120315.xhp#par_id3145171.8.help.text
+msgid "<emph>Text:</emph> A string array."
+msgstr ""
+
+#: 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 ""
+
+#: 03120315.xhp#hd_id3154218.10.help.text
+msgctxt "03120315.xhp#hd_id3154218.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03080401.xhp#tit.help.text
+msgid "Sqr Function [Runtime]"
+msgstr ""
+
+#: 03080401.xhp#bm_id3156027.help.text
+msgid "<bookmark_value>Sqr function</bookmark_value>"
+msgstr ""
+
+#: 03080401.xhp#hd_id3156027.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080401.xhp\" name=\"Sqr Function [Runtime]\">Sqr Function [Runtime]</link>"
+msgstr ""
+
+#: 03080401.xhp#par_id3147226.2.help.text
+msgid "Calculates the square root of a numeric expression."
+msgstr ""
+
+#: 03080401.xhp#hd_id3143267.3.help.text
+msgctxt "03080401.xhp#hd_id3143267.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03080401.xhp#par_id3149415.4.help.text
+msgid "Sqr (Number)"
+msgstr ""
+
+#: 03080401.xhp#hd_id3156023.5.help.text
+msgctxt "03080401.xhp#hd_id3156023.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03080401.xhp#par_id3156343.6.help.text
+msgctxt "03080401.xhp#par_id3156343.6.help.text"
+msgid "Double"
+msgstr ""
+
+#: 03080401.xhp#hd_id3147265.7.help.text
+msgctxt "03080401.xhp#hd_id3147265.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03080401.xhp#par_id3149457.8.help.text
+msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the square root for."
+msgstr ""
+
+#: 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 ""
+
+#: 03080401.xhp#hd_id3153192.10.help.text
+msgctxt "03080401.xhp#hd_id3153192.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03080401.xhp#par_id3145172.11.help.text
+msgid "Sub ExampleSqr"
+msgstr ""
+
+#: 03080401.xhp#par_id3156423.12.help.text
+msgctxt "03080401.xhp#par_id3156423.12.help.text"
+msgid "Dim iVar As Single"
+msgstr ""
+
+#: 03080401.xhp#par_id3147288.13.help.text
+msgctxt "03080401.xhp#par_id3147288.13.help.text"
+msgid "iVar = 36"
+msgstr ""
+
+#: 03080401.xhp#par_id3159254.14.help.text
+msgctxt "03080401.xhp#par_id3159254.14.help.text"
+msgid "Msgbox Sqr(iVar)"
+msgstr ""
+
+#: 03080401.xhp#par_id3161832.15.help.text
+msgctxt "03080401.xhp#par_id3161832.15.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03050500.xhp#tit.help.text
+msgid "On Error GoTo ... Resume Statement [Runtime]"
+msgstr ""
+
+#: 03050500.xhp#bm_id3146795.help.text
+msgid "<bookmark_value>Resume Next parameter</bookmark_value><bookmark_value>On Error GoTo ... Resume statement</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 03050500.xhp#par_id3150358.2.help.text
+msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
+msgstr ""
+
+#: 03050500.xhp#hd_id3151212.3.help.text
+msgctxt "03050500.xhp#hd_id3151212.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03050500.xhp#par_id3145173.4.help.text
+msgid "On {[Local] Error GoTo Labelname | GoTo 0 | Resume Next}"
+msgstr ""
+
+#: 03050500.xhp#hd_id3154125.5.help.text
+msgctxt "03050500.xhp#hd_id3154125.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03050500.xhp#par_id3149482.9.help.text
+msgid "<emph>GoTo 0:</emph> Disables the error handler in the current procedure."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03050500.xhp#hd_id3146985.11.help.text
+msgctxt "03050500.xhp#hd_id3146985.11.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03050500.xhp#par_id3152460.42.help.text
+msgctxt "03050500.xhp#par_id3152460.42.help.text"
+msgid "Sub ExampleReset"
+msgstr ""
+
+#: 03050500.xhp#par_id3163712.43.help.text
+msgctxt "03050500.xhp#par_id3163712.43.help.text"
+msgid "On Error Goto ErrorHandler"
+msgstr ""
+
+#: 03050500.xhp#par_id3146119.44.help.text
+msgctxt "03050500.xhp#par_id3146119.44.help.text"
+msgid "Dim iNumber As Integer"
+msgstr ""
+
+#: 03050500.xhp#par_id3145749.45.help.text
+msgctxt "03050500.xhp#par_id3145749.45.help.text"
+msgid "Dim iCount As Integer"
+msgstr ""
+
+#: 03050500.xhp#par_id3153091.46.help.text
+msgctxt "03050500.xhp#par_id3153091.46.help.text"
+msgid "Dim sLine As String"
+msgstr ""
+
+#: 03050500.xhp#par_id3148576.47.help.text
+msgctxt "03050500.xhp#par_id3148576.47.help.text"
+msgid "Dim aFile As String"
+msgstr ""
+
+#: 03050500.xhp#par_id3147348.48.help.text
+msgctxt "03050500.xhp#par_id3147348.48.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr ""
+
+#: 03050500.xhp#par_id3154944.50.help.text
+msgctxt "03050500.xhp#par_id3154944.50.help.text"
+msgid "iNumber = Freefile"
+msgstr ""
+
+#: 03050500.xhp#par_id3153158.51.help.text
+msgctxt "03050500.xhp#par_id3153158.51.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr ""
+
+#: 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 ""
+
+#: 03050500.xhp#par_id3149581.53.help.text
+msgctxt "03050500.xhp#par_id3149581.53.help.text"
+msgid "Close #iNumber"
+msgstr ""
+
+#: 03050500.xhp#par_id3155602.55.help.text
+msgctxt "03050500.xhp#par_id3155602.55.help.text"
+msgid "iNumber = Freefile"
+msgstr ""
+
+#: 03050500.xhp#par_id3153415.56.help.text
+msgctxt "03050500.xhp#par_id3153415.56.help.text"
+msgid "Open aFile For Input As iNumber"
+msgstr ""
+
+#: 03050500.xhp#par_id3146970.57.help.text
+msgctxt "03050500.xhp#par_id3146970.57.help.text"
+msgid "For iCount = 1 to 5"
+msgstr ""
+
+#: 03050500.xhp#par_id3153707.58.help.text
+msgctxt "03050500.xhp#par_id3153707.58.help.text"
+msgid "Line Input #iNumber, sLine"
+msgstr ""
+
+#: 03050500.xhp#par_id3156276.59.help.text
+msgctxt "03050500.xhp#par_id3156276.59.help.text"
+msgid "If sLine <>\"\" then"
+msgstr ""
+
+#: 03050500.xhp#par_id3148993.60.help.text
+msgctxt "03050500.xhp#par_id3148993.60.help.text"
+msgid "rem"
+msgstr ""
+
+#: 03050500.xhp#par_id3153764.61.help.text
+msgctxt "03050500.xhp#par_id3153764.61.help.text"
+msgid "end if"
+msgstr ""
+
+#: 03050500.xhp#par_id3154754.62.help.text
+msgctxt "03050500.xhp#par_id3154754.62.help.text"
+msgid "Next iCount"
+msgstr ""
+
+#: 03050500.xhp#par_id3159264.63.help.text
+msgctxt "03050500.xhp#par_id3159264.63.help.text"
+msgid "Close #iNumber"
+msgstr ""
+
+#: 03050500.xhp#par_id3150042.64.help.text
+msgctxt "03050500.xhp#par_id3150042.64.help.text"
+msgid "Exit Sub"
+msgstr ""
+
+#: 03050500.xhp#par_id3151251.65.help.text
+msgctxt "03050500.xhp#par_id3151251.65.help.text"
+msgid "ErrorHandler:"
+msgstr ""
+
+#: 03050500.xhp#par_id3149106.66.help.text
+msgctxt "03050500.xhp#par_id3149106.66.help.text"
+msgid "Reset"
+msgstr ""
+
+#: 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 ""
+
+#: 03050500.xhp#par_id3149568.68.help.text
+msgctxt "03050500.xhp#par_id3149568.68.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03101000.xhp#tit.help.text
+msgid "CStr Function [Runtime]"
+msgstr ""
+
+#: 03101000.xhp#bm_id3146958.help.text
+msgid "<bookmark_value>CStr function</bookmark_value>"
+msgstr ""
+
+#: 03101000.xhp#hd_id3146958.1.help.text
+msgid "<link href=\"text/sbasic/shared/03101000.xhp\" name=\"CStr Function [Runtime]\">CStr Function [Runtime]</link>"
+msgstr ""
+
+#: 03101000.xhp#par_id3147574.2.help.text
+msgid "Converts any numeric expression to a string expression."
+msgstr ""
+
+#: 03101000.xhp#hd_id3148473.3.help.text
+msgctxt "03101000.xhp#hd_id3148473.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03101000.xhp#par_id3145315.4.help.text
+msgid "CStr (Expression)"
+msgstr ""
+
+#: 03101000.xhp#hd_id3153062.5.help.text
+msgctxt "03101000.xhp#hd_id3153062.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03101000.xhp#par_id3153897.6.help.text
+msgctxt "03101000.xhp#par_id3153897.6.help.text"
+msgid "String"
+msgstr ""
+
+#: 03101000.xhp#hd_id3154760.7.help.text
+msgctxt "03101000.xhp#hd_id3154760.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03101000.xhp#par_id3149457.8.help.text
+msgid "<emph>Expression:</emph> Any valid string or numeric expression that you want to convert."
+msgstr ""
+
+#: 03101000.xhp#hd_id3150358.9.help.text
+msgid "Expression Types and Conversion Returns"
+msgstr ""
+
+#: 03101000.xhp#par_id3153192.10.help.text
+msgid "Boolean :"
+msgstr ""
+
+#: 03101000.xhp#par_id3156422.11.help.text
+msgid "String that evaluates to either <emph>True</emph> or <emph>False</emph>."
+msgstr ""
+
+#: 03101000.xhp#par_id3147287.12.help.text
+msgid "Date :"
+msgstr ""
+
+#: 03101000.xhp#par_id3155411.13.help.text
+msgid "String that contains the date and time."
+msgstr ""
+
+#: 03101000.xhp#par_id3147428.14.help.text
+msgid "Null :"
+msgstr ""
+
+#: 03101000.xhp#par_id3150486.15.help.text
+msgid "Run-time error."
+msgstr ""
+
+#: 03101000.xhp#par_id3153953.16.help.text
+msgid "Empty :"
+msgstr ""
+
+#: 03101000.xhp#par_id3155306.17.help.text
+msgid "String without any characters."
+msgstr ""
+
+#: 03101000.xhp#par_id3149260.18.help.text
+msgid "Any :"
+msgstr ""
+
+#: 03101000.xhp#par_id3152938.19.help.text
+msgid "Corresponding number as string."
+msgstr ""
+
+#: 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 ""
+
+#: 03101000.xhp#hd_id3154729.21.help.text
+msgctxt "03101000.xhp#hd_id3154729.21.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03101000.xhp#par_id3153878.22.help.text
+msgid "Sub ExampleCSTR"
+msgstr ""
+
+#: 03101000.xhp#par_id3154943.23.help.text
+msgctxt "03101000.xhp#par_id3154943.23.help.text"
+msgid "Dim sVar As String"
+msgstr ""
+
+#: 03101000.xhp#par_id3156283.24.help.text
+msgctxt "03101000.xhp#par_id3156283.24.help.text"
+msgid "Msgbox CDbl(1234.5678)"
+msgstr ""
+
+#: 03101000.xhp#par_id3147396.25.help.text
+msgctxt "03101000.xhp#par_id3147396.25.help.text"
+msgid "Msgbox CInt(1234.5678)"
+msgstr ""
+
+#: 03101000.xhp#par_id3155600.26.help.text
+msgctxt "03101000.xhp#par_id3155600.26.help.text"
+msgid "Msgbox CLng(1234.5678)"
+msgstr ""
+
+#: 03101000.xhp#par_id3153416.27.help.text
+msgctxt "03101000.xhp#par_id3153416.27.help.text"
+msgid "Msgbox CSng(1234.5678)"
+msgstr ""
+
+#: 03101000.xhp#par_id3156559.28.help.text
+msgid "sVar = CStr(1234.5678)"
+msgstr ""
+
+#: 03101000.xhp#par_id3153947.29.help.text
+msgid "MsgBox sVar"
+msgstr ""
+
+#: 03101000.xhp#par_id3150327.30.help.text
+msgctxt "03101000.xhp#par_id3150327.30.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03102700.xhp#tit.help.text
+msgid "IsNumeric Function [Runtime]"
+msgstr ""
+
+#: 03102700.xhp#bm_id3145136.help.text
+msgid "<bookmark_value>IsNumeric function</bookmark_value>"
+msgstr ""
+
+#: 03102700.xhp#hd_id3145136.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric Function [Runtime]\">IsNumeric Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03102700.xhp#hd_id3149415.3.help.text
+msgctxt "03102700.xhp#hd_id3149415.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03102700.xhp#par_id3150771.4.help.text
+msgid "IsNumeric (Var)"
+msgstr ""
+
+#: 03102700.xhp#hd_id3148685.5.help.text
+msgctxt "03102700.xhp#hd_id3148685.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03102700.xhp#par_id3148944.6.help.text
+msgctxt "03102700.xhp#par_id3148944.6.help.text"
+msgid "Bool"
+msgstr ""
+
+#: 03102700.xhp#hd_id3148947.7.help.text
+msgctxt "03102700.xhp#hd_id3148947.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03102700.xhp#par_id3154760.8.help.text
+msgid "<emph>Var:</emph> Any expression that you want to test."
+msgstr ""
+
+#: 03102700.xhp#hd_id3149656.9.help.text
+msgctxt "03102700.xhp#hd_id3149656.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03102700.xhp#par_id3154367.10.help.text
+msgid "Sub ExampleIsNumeric"
+msgstr ""
+
+#: 03102700.xhp#par_id3156423.11.help.text
+msgid "Dim vVar as variant"
+msgstr ""
+
+#: 03102700.xhp#par_id3154125.12.help.text
+msgid "vVar = \"ABC\""
+msgstr ""
+
+#: 03102700.xhp#par_id3147230.13.help.text
+msgid "Print IsNumeric(vVar) REM Returns False"
+msgstr ""
+
+#: 03102700.xhp#par_id3156214.14.help.text
+msgid "vVar = \"123\""
+msgstr ""
+
+#: 03102700.xhp#par_id3154910.15.help.text
+msgid "Print IsNumeric(vVar) REM Returns True"
+msgstr ""
+
+#: 03102700.xhp#par_id3147289.16.help.text
+msgctxt "03102700.xhp#par_id3147289.16.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03100080.xhp#tit.help.text
+msgid "CVErr Function [Runtime]"
+msgstr ""
+
+#: 03100080.xhp#bm_id531022.help.text
+msgid "<bookmark_value>CVErr function</bookmark_value>"
+msgstr ""
+
+#: 03100080.xhp#par_idN1054B.help.text
+msgid "<link href=\"text/sbasic/shared/03100080.xhp\">CVErr Function [Runtime]</link>"
+msgstr ""
+
+#: 03100080.xhp#par_idN1055B.help.text
+msgid "Converts a string expression or numeric expression to a variant expression of the sub type \"Error\"."
+msgstr ""
+
+#: 03100080.xhp#par_idN1055E.help.text
+msgctxt "03100080.xhp#par_idN1055E.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03100080.xhp#par_idN10562.help.text
+msgid "CVErr(Expression)"
+msgstr ""
+
+#: 03100080.xhp#par_idN10565.help.text
+msgctxt "03100080.xhp#par_idN10565.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03100080.xhp#par_idN10569.help.text
+msgctxt "03100080.xhp#par_idN10569.help.text"
+msgid "Variant."
+msgstr ""
+
+#: 03100080.xhp#par_idN1056C.help.text
+msgctxt "03100080.xhp#par_idN1056C.help.text"
+msgid "Parameter:"
+msgstr ""
+
+#: 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 ""
+
+#: 03030120.xhp#tit.help.text
+msgid "DateDiff Function [Runtime]"
+msgstr ""
+
+#: 03030120.xhp#bm_id6134830.help.text
+msgid "<bookmark_value>DateDiff function</bookmark_value>"
+msgstr ""
+
+#: 03030120.xhp#par_idN10542.help.text
+msgid "<link href=\"text/sbasic/shared/03030120.xhp\">DateDiff Function [Runtime]</link>"
+msgstr ""
+
+#: 03030120.xhp#par_idN10546.help.text
+msgid "Returns the number of date intervals between two given date values."
+msgstr ""
+
+#: 03030120.xhp#par_idN10549.help.text
+msgctxt "03030120.xhp#par_idN10549.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03030120.xhp#par_idN10648.help.text
+msgid "DateDiff (Add, Date1, Date2 [, Week_start [, Year_start]])"
+msgstr ""
+
+#: 03030120.xhp#par_idN1064B.help.text
+msgctxt "03030120.xhp#par_idN1064B.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03030120.xhp#par_idN1064F.help.text
+msgid "A number."
+msgstr ""
+
+#: 03030120.xhp#par_idN10652.help.text
+msgctxt "03030120.xhp#par_idN10652.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03030120.xhp#par_idN10664.help.text
+msgid "<emph>Date1, Date2</emph> - The two date values to be compared."
+msgstr ""
+
+#: 03030120.xhp#par_idN1066A.help.text
+msgid "<emph>Week_start</emph> - An optional parameter that specifies the starting day of a week. "
+msgstr ""
+
+#: 03030120.xhp#par_idN1067A.help.text
+msgid "Week_start value"
+msgstr ""
+
+#: 03030120.xhp#par_idN10680.help.text
+msgctxt "03030120.xhp#par_idN10680.help.text"
+msgid "Explanation"
+msgstr ""
+
+#: 03030120.xhp#par_idN10687.help.text
+msgctxt "03030120.xhp#par_idN10687.help.text"
+msgid "0"
+msgstr ""
+
+#: 03030120.xhp#par_idN1068D.help.text
+msgctxt "03030120.xhp#par_idN1068D.help.text"
+msgid "Use system default value"
+msgstr ""
+
+#: 03030120.xhp#par_idN10694.help.text
+msgctxt "03030120.xhp#par_idN10694.help.text"
+msgid "1"
+msgstr ""
+
+#: 03030120.xhp#par_idN1069A.help.text
+msgid "Sunday (default)"
+msgstr ""
+
+#: 03030120.xhp#par_idN106A1.help.text
+msgctxt "03030120.xhp#par_idN106A1.help.text"
+msgid "2"
+msgstr ""
+
+#: 03030120.xhp#par_idN106A7.help.text
+msgid "Monday"
+msgstr ""
+
+#: 03030120.xhp#par_idN106AE.help.text
+msgctxt "03030120.xhp#par_idN106AE.help.text"
+msgid "3"
+msgstr ""
+
+#: 03030120.xhp#par_idN106B4.help.text
+msgid "Tuesday"
+msgstr ""
+
+#: 03030120.xhp#par_idN106BB.help.text
+msgctxt "03030120.xhp#par_idN106BB.help.text"
+msgid "4"
+msgstr ""
+
+#: 03030120.xhp#par_idN106C1.help.text
+msgid "Wednesday"
+msgstr ""
+
+#: 03030120.xhp#par_idN106C8.help.text
+msgctxt "03030120.xhp#par_idN106C8.help.text"
+msgid "5"
+msgstr ""
+
+#: 03030120.xhp#par_idN106CE.help.text
+msgid "Thursday"
+msgstr ""
+
+#: 03030120.xhp#par_idN106D5.help.text
+msgctxt "03030120.xhp#par_idN106D5.help.text"
+msgid "6"
+msgstr ""
+
+#: 03030120.xhp#par_idN106DB.help.text
+msgid "Friday"
+msgstr ""
+
+#: 03030120.xhp#par_idN106E2.help.text
+msgctxt "03030120.xhp#par_idN106E2.help.text"
+msgid "7"
+msgstr ""
+
+#: 03030120.xhp#par_idN106E8.help.text
+msgid "Saturday"
+msgstr ""
+
+#: 03030120.xhp#par_idN106EB.help.text
+msgid "<emph>Year_start</emph> - An optional parameter that specifies the starting week of a year. "
+msgstr ""
+
+#: 03030120.xhp#par_idN106FB.help.text
+msgid "Year_start value"
+msgstr ""
+
+#: 03030120.xhp#par_idN10701.help.text
+msgctxt "03030120.xhp#par_idN10701.help.text"
+msgid "Explanation"
+msgstr ""
+
+#: 03030120.xhp#par_idN10708.help.text
+msgctxt "03030120.xhp#par_idN10708.help.text"
+msgid "0"
+msgstr ""
+
+#: 03030120.xhp#par_idN1070E.help.text
+msgctxt "03030120.xhp#par_idN1070E.help.text"
+msgid "Use system default value"
+msgstr ""
+
+#: 03030120.xhp#par_idN10715.help.text
+msgctxt "03030120.xhp#par_idN10715.help.text"
+msgid "1"
+msgstr ""
+
+#: 03030120.xhp#par_idN1071B.help.text
+msgid "Week 1 is the week with January, 1st (default)"
+msgstr ""
+
+#: 03030120.xhp#par_idN10722.help.text
+msgctxt "03030120.xhp#par_idN10722.help.text"
+msgid "2"
+msgstr ""
+
+#: 03030120.xhp#par_idN10728.help.text
+msgid "Week 1 is the first week containing four or more days of that year"
+msgstr ""
+
+#: 03030120.xhp#par_idN1072F.help.text
+msgctxt "03030120.xhp#par_idN1072F.help.text"
+msgid "3"
+msgstr ""
+
+#: 03030120.xhp#par_idN10735.help.text
+msgid "Week 1 is the first week containing only days of the new year"
+msgstr ""
+
+#: 03030120.xhp#par_idN10738.help.text
+msgctxt "03030120.xhp#par_idN10738.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03030120.xhp#par_idN1073C.help.text
+msgid "Sub example_datediff"
+msgstr ""
+
+#: 03030120.xhp#par_idN1073F.help.text
+msgid "msgbox DateDiff(\"d\", \"1/1/2005\", \"12/31/2005\")"
+msgstr ""
+
+#: 03030120.xhp#par_idN10742.help.text
+msgctxt "03030120.xhp#par_idN10742.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03020000.xhp#tit.help.text
+msgid "File I/O Functions"
+msgstr ""
+
+#: 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 ""
+
+#: 03020000.xhp#par_id3153360.2.help.text
+msgid "Use File I/O functions to create and manage user-defined (data) files."
+msgstr ""
+
+#: 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 ""
+
+#: 03020302.xhp#tit.help.text
+msgid "Loc Function [Runtime]"
+msgstr ""
+
+#: 03020302.xhp#bm_id3148663.help.text
+msgid "<bookmark_value>Loc function</bookmark_value>"
+msgstr ""
+
+#: 03020302.xhp#hd_id3148663.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Loc Function [Runtime]\">Loc Function [Runtime]</link>"
+msgstr ""
+
+#: 03020302.xhp#par_id3154138.2.help.text
+msgid "Returns the current position in an open file."
+msgstr ""
+
+#: 03020302.xhp#hd_id3156422.3.help.text
+msgctxt "03020302.xhp#hd_id3156422.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020302.xhp#par_id3150768.4.help.text
+msgid "Loc(FileNumber)"
+msgstr ""
+
+#: 03020302.xhp#hd_id3150440.5.help.text
+msgctxt "03020302.xhp#hd_id3150440.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03020302.xhp#par_id3152578.6.help.text
+msgctxt "03020302.xhp#par_id3152578.6.help.text"
+msgid "Long"
+msgstr ""
+
+#: 03020302.xhp#hd_id3152462.7.help.text
+msgctxt "03020302.xhp#hd_id3152462.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03120302.xhp#tit.help.text
+msgid "LCase Function [Runtime]"
+msgstr ""
+
+#: 03120302.xhp#bm_id3152363.help.text
+msgid "<bookmark_value>LCase function</bookmark_value>"
+msgstr ""
+
+#: 03120302.xhp#hd_id3152363.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function [Runtime]\">LCase Function [Runtime]</link>"
+msgstr ""
+
+#: 03120302.xhp#par_id3145609.2.help.text
+msgid "Converts all uppercase letters in a string to lowercase."
+msgstr ""
+
+#: 03120302.xhp#par_id3154347.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">UCase</link> Function"
+msgstr ""
+
+#: 03120302.xhp#hd_id3149456.4.help.text
+msgctxt "03120302.xhp#hd_id3149456.4.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03120302.xhp#par_id3150791.5.help.text
+msgid "LCase (Text As String)"
+msgstr ""
+
+#: 03120302.xhp#hd_id3154940.6.help.text
+msgctxt "03120302.xhp#hd_id3154940.6.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03120302.xhp#par_id3144760.7.help.text
+msgctxt "03120302.xhp#par_id3144760.7.help.text"
+msgid "String"
+msgstr ""
+
+#: 03120302.xhp#hd_id3151043.8.help.text
+msgctxt "03120302.xhp#hd_id3151043.8.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03120302.xhp#hd_id3148451.10.help.text
+msgctxt "03120302.xhp#hd_id3148451.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03120302.xhp#par_id3149203.11.help.text
+msgctxt "03120302.xhp#par_id3149203.11.help.text"
+msgid "Sub ExampleLUCase"
+msgstr ""
+
+#: 03120302.xhp#par_id3150440.12.help.text
+msgctxt "03120302.xhp#par_id3150440.12.help.text"
+msgid "Dim sVar As String"
+msgstr ""
+
+#: 03120302.xhp#par_id3153367.13.help.text
+msgctxt "03120302.xhp#par_id3153367.13.help.text"
+msgid "sVar = \"Las Vegas\""
+msgstr ""
+
+#: 03120302.xhp#par_id3146121.14.help.text
+msgid "Print LCase(sVar) REM Returns \"las vegas\""
+msgstr ""
+
+#: 03120302.xhp#par_id3146986.15.help.text
+msgid "Print UCase(sVar) REM Returns \"LAS VEGAS\""
+msgstr ""
+
+#: 03120302.xhp#par_id3153575.16.help.text
+msgctxt "03120302.xhp#par_id3153575.16.help.text"
+msgid "end Sub"
+msgstr ""
+
+#: 03100700.xhp#tit.help.text
+msgid "Const Statement [Runtime]"
+msgstr ""
+
+#: 03100700.xhp#bm_id3146958.help.text
+msgid "<bookmark_value>Const statement</bookmark_value>"
+msgstr ""
+
+#: 03100700.xhp#hd_id3146958.1.help.text
+msgid "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"Const Statement [Runtime]\">Const Statement [Runtime]</link>"
+msgstr ""
+
+#: 03100700.xhp#par_id3154143.2.help.text
+msgid "Defines a string as a constant."
+msgstr ""
+
+#: 03100700.xhp#hd_id3150670.3.help.text
+msgctxt "03100700.xhp#hd_id3150670.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03100700.xhp#par_id3150984.4.help.text
+msgid "Const Text = Expression"
+msgstr ""
+
+#: 03100700.xhp#hd_id3147530.5.help.text
+msgctxt "03100700.xhp#hd_id3147530.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03100700.xhp#par_id3153897.6.help.text
+msgid "<emph>Text:</emph> Any constant name that follows the standard variable naming conventions."
+msgstr ""
+
+#: 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 ""
+
+#: 03100700.xhp#par_id3150542.8.help.text
+msgctxt "03100700.xhp#par_id3150542.8.help.text"
+msgid "CONST ConstName=Expression"
+msgstr ""
+
+#: 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 ""
+
+#: 03100700.xhp#hd_id3154366.10.help.text
+msgctxt "03100700.xhp#hd_id3154366.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03100700.xhp#par_id3145420.11.help.text
+msgid "Sub ExampleConst"
+msgstr ""
+
+#: 03100700.xhp#par_id3154217.12.help.text
+msgid "Const iVar = 1964"
+msgstr ""
+
+#: 03100700.xhp#par_id3156281.13.help.text
+msgid "Msgbox iVar"
+msgstr ""
+
+#: 03100700.xhp#par_id3153969.14.help.text
+msgid "Const sVar = \"Program\", dVar As Double = 1.00"
+msgstr ""
+
+#: 03100700.xhp#par_id3149560.15.help.text
+msgid "Msgbox sVar & \" \" & dVar"
+msgstr ""
+
+#: 03100700.xhp#par_id3153368.16.help.text
+msgctxt "03100700.xhp#par_id3153368.16.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03010304.xhp#tit.help.text
+msgid "QBColor Function [Runtime]"
+msgstr ""
+
+#: 03010304.xhp#hd_id3149670.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010304.xhp\" name=\"QBColor Function [Runtime]\">QBColor Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03010304.xhp#hd_id3154140.3.help.text
+msgctxt "03010304.xhp#hd_id3154140.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03010304.xhp#par_id3151042.4.help.text
+msgid "QBColor (ColorNumber As Integer)"
+msgstr ""
+
+#: 03010304.xhp#hd_id3145172.5.help.text
+msgctxt "03010304.xhp#hd_id3145172.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03010304.xhp#par_id3154685.6.help.text
+msgctxt "03010304.xhp#par_id3154685.6.help.text"
+msgid "Long"
+msgstr ""
+
+#: 03010304.xhp#hd_id3156560.7.help.text
+msgctxt "03010304.xhp#hd_id3156560.7.help.text"
+msgid "Parameter:"
+msgstr ""
+
+#: 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 ""
+
+#: 03010304.xhp#par_id3147318.9.help.text
+msgid "<emph>ColorNumber</emph> can be assigned the following values:"
+msgstr ""
+
+#: 03010304.xhp#par_id3152576.10.help.text
+msgid "0 : Black"
+msgstr ""
+
+#: 03010304.xhp#par_id3146975.11.help.text
+msgid "1 : Blue"
+msgstr ""
+
+#: 03010304.xhp#par_id3151116.12.help.text
+msgid "2 : Green"
+msgstr ""
+
+#: 03010304.xhp#par_id3155412.13.help.text
+msgid "3 : Cyan"
+msgstr ""
+
+#: 03010304.xhp#par_id3155306.14.help.text
+msgid "4 : Red"
+msgstr ""
+
+#: 03010304.xhp#par_id3153364.15.help.text
+msgid "5 : Magenta"
+msgstr ""
+
+#: 03010304.xhp#par_id3146119.16.help.text
+msgid "6 : Yellow"
+msgstr ""
+
+#: 03010304.xhp#par_id3154730.17.help.text
+msgid "7 : White"
+msgstr ""
+
+#: 03010304.xhp#par_id3153877.18.help.text
+msgid "8 : Gray"
+msgstr ""
+
+#: 03010304.xhp#par_id3147124.19.help.text
+msgid "9 : Light Blue"
+msgstr ""
+
+#: 03010304.xhp#par_id3145646.20.help.text
+msgid "10 : Light Green"
+msgstr ""
+
+#: 03010304.xhp#par_id3149958.21.help.text
+msgid "11 : Light Cyan"
+msgstr ""
+
+#: 03010304.xhp#par_id3154943.22.help.text
+msgid "12 : Light Red"
+msgstr ""
+
+#: 03010304.xhp#par_id3150715.23.help.text
+msgid "13 : Light Magenta"
+msgstr ""
+
+#: 03010304.xhp#par_id3146970.24.help.text
+msgid "14 : Light Yellow"
+msgstr ""
+
+#: 03010304.xhp#par_id3150750.25.help.text
+msgid "15 : Bright White"
+msgstr ""
+
+#: 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 ""
+
+#: 03010304.xhp#hd_id3148406.27.help.text
+msgctxt "03010304.xhp#hd_id3148406.27.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03010304.xhp#par_id3145642.28.help.text
+msgid "Sub ExampleQBColor"
+msgstr ""
+
+#: 03010304.xhp#par_id3154256.29.help.text
+msgid "Dim iColor As Integer"
+msgstr ""
+
+#: 03010304.xhp#par_id3147340.30.help.text
+msgctxt "03010304.xhp#par_id3147340.30.help.text"
+msgid "Dim sText As String"
+msgstr ""
+
+#: 03010304.xhp#par_id3155962.31.help.text
+msgid "iColor = 7"
+msgstr ""
+
+#: 03010304.xhp#par_id3145230.32.help.text
+msgid "sText = \"RGB= \" & Red(QBColor( iColor) ) & \":\" & Blue(QBColor( iColor) ) & \":\" & Green(QBColor( iColor) )"
+msgstr ""
+
+#: 03010304.xhp#par_id3149566.33.help.text
+msgid "MsgBox stext,0,\"Color \" & iColor"
+msgstr ""
+
+#: 03010304.xhp#par_id3154705.34.help.text
+msgctxt "03010304.xhp#par_id3154705.34.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03090301.xhp#tit.help.text
+msgid "GoSub...Return Statement [Runtime]"
+msgstr ""
+
+#: 03090301.xhp#bm_id3147242.help.text
+msgid "<bookmark_value>GoSub...Return statement</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03090301.xhp#hd_id3145609.3.help.text
+msgctxt "03090301.xhp#hd_id3145609.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03090301.xhp#par_id3145069.4.help.text
+msgctxt "03090301.xhp#par_id3145069.4.help.text"
+msgid "see Parameters"
+msgstr ""
+
+#: 03090301.xhp#hd_id3147265.5.help.text
+msgctxt "03090301.xhp#hd_id3147265.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03090301.xhp#par_id3148664.6.help.text
+msgctxt "03090301.xhp#par_id3148664.6.help.text"
+msgid "Sub/Function"
+msgstr ""
+
+#: 03090301.xhp#par_id3150400.7.help.text
+msgctxt "03090301.xhp#par_id3150400.7.help.text"
+msgid "statement block"
+msgstr ""
+
+#: 03090301.xhp#par_id3154140.8.help.text
+msgid " Label"
+msgstr ""
+
+#: 03090301.xhp#par_id3150869.9.help.text
+msgctxt "03090301.xhp#par_id3150869.9.help.text"
+msgid "statement block"
+msgstr ""
+
+#: 03090301.xhp#par_id3154909.10.help.text
+msgid "GoSub Label"
+msgstr ""
+
+#: 03090301.xhp#par_id3153969.11.help.text
+msgid "Exit Sub/Function"
+msgstr ""
+
+#: 03090301.xhp#par_id3154685.12.help.text
+msgid "Label:"
+msgstr ""
+
+#: 03090301.xhp#par_id3145786.13.help.text
+msgctxt "03090301.xhp#par_id3145786.13.help.text"
+msgid "statement block"
+msgstr ""
+
+#: 03090301.xhp#par_id3159252.14.help.text
+msgctxt "03090301.xhp#par_id3159252.14.help.text"
+msgid "Return"
+msgstr ""
+
+#: 03090301.xhp#par_id3154321.15.help.text
+msgctxt "03090301.xhp#par_id3154321.15.help.text"
+msgid "End Sub/Function"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03090301.xhp#hd_id3156284.20.help.text
+msgctxt "03090301.xhp#hd_id3156284.20.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03090301.xhp#par_id3151073.21.help.text
+msgid "Sub ExampleGoSub"
+msgstr ""
+
+#: 03090301.xhp#par_id3154097.22.help.text
+msgid "dim iInputa as Single"
+msgstr ""
+
+#: 03090301.xhp#par_id3150715.23.help.text
+msgid "dim iInputb as Single"
+msgstr ""
+
+#: 03090301.xhp#par_id3153416.24.help.text
+msgid "dim iInputc as Single"
+msgstr ""
+
+#: 03090301.xhp#par_id3146970.25.help.text
+msgid "iInputa = Int(InputBox$ \"Enter the first number: \",\"NumberInput\"))"
+msgstr ""
+
+#: 03090301.xhp#par_id3150329.26.help.text
+msgid "iInputb = Int(InputBox$ \"Enter the second number: \",\"NumberInput\"))"
+msgstr ""
+
+#: 03090301.xhp#par_id3156277.27.help.text
+msgid "iInputc=iInputa"
+msgstr ""
+
+#: 03090301.xhp#par_id3150321.28.help.text
+msgctxt "03090301.xhp#par_id3150321.28.help.text"
+msgid "GoSub SquareRoot"
+msgstr ""
+
+#: 03090301.xhp#par_id3154756.29.help.text
+msgid "Print \"The square root of\";iInputa;\" is\";iInputc"
+msgstr ""
+
+#: 03090301.xhp#par_id3155764.30.help.text
+msgid "iInputc=iInputb"
+msgstr ""
+
+#: 03090301.xhp#par_id3152960.31.help.text
+msgctxt "03090301.xhp#par_id3152960.31.help.text"
+msgid "GoSub SquareRoot"
+msgstr ""
+
+#: 03090301.xhp#par_id3147340.32.help.text
+msgid "Print \"The square root of\";iInputb;\" is\";iInputc"
+msgstr ""
+
+#: 03090301.xhp#par_id3166450.33.help.text
+msgctxt "03090301.xhp#par_id3166450.33.help.text"
+msgid "Exit Sub"
+msgstr ""
+
+#: 03090301.xhp#par_id3155176.34.help.text
+msgid "SquareRoot:"
+msgstr ""
+
+#: 03090301.xhp#par_id3149257.35.help.text
+msgid "iInputc=sqr(iInputc)"
+msgstr ""
+
+#: 03090301.xhp#par_id3146316.36.help.text
+msgctxt "03090301.xhp#par_id3146316.36.help.text"
+msgid "Return"
+msgstr ""
+
+#: 03090301.xhp#par_id3154703.37.help.text
+msgctxt "03090301.xhp#par_id3154703.37.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: main0601.xhp#tit.help.text
+msgid "$[officename] Basic Help"
+msgstr ""
+
+#: main0601.xhp#hd_id3154232.1.help.text
+msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: main0601.xhp#hd_id3146957.9.help.text
+msgid "Working with %PRODUCTNAME Basic"
+msgstr ""
+
+#: main0601.xhp#hd_id3148473.7.help.text
+#, fuzzy
+msgid "Help about the Help"
+msgstr ""
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Довідка про довідку\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Довідка про цю Довідку"
+
+#: 03080000.xhp#tit.help.text
+msgid "Numeric Functions"
+msgstr ""
+
+#: 03080000.xhp#hd_id3153127.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080000.xhp\" name=\"Numeric Functions\">Numeric Functions</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03080800.xhp#tit.help.text
+msgid "Converting Numbers"
+msgstr ""
+
+#: 03080800.xhp#hd_id3145315.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"Converting Numbers\">Converting Numbers</link>"
+msgstr ""
+
+#: 03080800.xhp#par_id3154760.2.help.text
+msgid "The following functions convert numbers from one number format to another."
+msgstr ""
+
+#: 03070100.xhp#tit.help.text
+msgid "\"-\" Operator [Runtime]"
+msgstr ""
+
+#: 03070100.xhp#bm_id3156042.help.text
+msgid "<bookmark_value>\"-\" operator (mathematical)</bookmark_value>"
+msgstr ""
+
+#: 03070100.xhp#hd_id3156042.1.help.text
+msgid "<link href=\"text/sbasic/shared/03070100.xhp\">\"-\" Operator [Runtime]</link>"
+msgstr ""
+
+#: 03070100.xhp#par_id3153345.2.help.text
+msgid "Subtracts two values."
+msgstr ""
+
+#: 03070100.xhp#hd_id3149416.3.help.text
+msgctxt "03070100.xhp#hd_id3149416.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03070100.xhp#par_id3156023.4.help.text
+msgid "Result = Expression1 - Expression2"
+msgstr ""
+
+#: 03070100.xhp#hd_id3154760.5.help.text
+msgctxt "03070100.xhp#hd_id3154760.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03070100.xhp#par_id3147560.6.help.text
+msgid "<emph>Result:</emph> Any numerical expression that contains the result of the subtraction."
+msgstr ""
+
+#: 03070100.xhp#par_id3150398.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to subtract."
+msgstr ""
+
+#: 03070100.xhp#hd_id3154366.8.help.text
+msgctxt "03070100.xhp#hd_id3154366.8.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03070100.xhp#par_id3147230.9.help.text
+msgid "Sub ExampleSubtraction1"
+msgstr ""
+
+#: 03070100.xhp#par_id3156281.10.help.text
+msgid "Print 5 - 5"
+msgstr ""
+
+#: 03070100.xhp#par_id3145172.11.help.text
+msgctxt "03070100.xhp#par_id3145172.11.help.text"
+msgid "End sub"
+msgstr ""
+
+#: 03070100.xhp#par_id3149562.13.help.text
+msgid "Sub ExampleSubtraction2"
+msgstr ""
+
+#: 03070100.xhp#par_id3159254.14.help.text
+msgctxt "03070100.xhp#par_id3159254.14.help.text"
+msgid "Dim iValue1 as Integer"
+msgstr ""
+
+#: 03070100.xhp#par_id3147434.15.help.text
+msgctxt "03070100.xhp#par_id3147434.15.help.text"
+msgid "Dim iValue2 as Integer"
+msgstr ""
+
+#: 03070100.xhp#par_id3150011.16.help.text
+msgctxt "03070100.xhp#par_id3150011.16.help.text"
+msgid "iValue1 = 5"
+msgstr ""
+
+#: 03070100.xhp#par_id3152576.17.help.text
+msgctxt "03070100.xhp#par_id3152576.17.help.text"
+msgid "iValue2 = 10"
+msgstr ""
+
+#: 03070100.xhp#par_id3163712.18.help.text
+msgid "Print iValue1 - iValue2"
+msgstr ""
+
+#: 03070100.xhp#par_id3156443.19.help.text
+msgctxt "03070100.xhp#par_id3156443.19.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03090102.xhp#tit.help.text
+msgid "Select...Case Statement [Runtime]"
+msgstr ""
+
+#: 03090102.xhp#bm_id3149416.help.text
+msgid "<bookmark_value>Select...Case statement</bookmark_value><bookmark_value>Case statement</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 03090102.xhp#par_id3153896.2.help.text
+msgid "Defines one or more statement blocks depending on the value of an expression."
+msgstr ""
+
+#: 03090102.xhp#hd_id3147265.3.help.text
+msgctxt "03090102.xhp#hd_id3147265.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 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 ""
+
+#: 03090102.xhp#hd_id3150767.5.help.text
+msgctxt "03090102.xhp#hd_id3150767.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03090102.xhp#hd_id3153768.8.help.text
+msgctxt "03090102.xhp#hd_id3153768.8.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03090102.xhp#par_id3150441.9.help.text
+msgctxt "03090102.xhp#par_id3150441.9.help.text"
+msgid "Sub ExampleRandomSelect"
+msgstr ""
+
+#: 03090102.xhp#par_id3152462.10.help.text
+msgctxt "03090102.xhp#par_id3152462.10.help.text"
+msgid "Dim iVar As Integer"
+msgstr ""
+
+#: 03090102.xhp#par_id3149260.11.help.text
+msgctxt "03090102.xhp#par_id3149260.11.help.text"
+msgid "iVar = Int((15 * Rnd) -2)"
+msgstr ""
+
+#: 03090102.xhp#par_id3151113.12.help.text
+msgctxt "03090102.xhp#par_id3151113.12.help.text"
+msgid "Select Case iVar"
+msgstr ""
+
+#: 03090102.xhp#par_id3149481.13.help.text
+msgctxt "03090102.xhp#par_id3149481.13.help.text"
+msgid "Case 1 To 5"
+msgstr ""
+
+#: 03090102.xhp#par_id3152597.14.help.text
+msgctxt "03090102.xhp#par_id3152597.14.help.text"
+msgid "Print \"Number from 1 to 5\""
+msgstr ""
+
+#: 03090102.xhp#par_id3147428.15.help.text
+msgctxt "03090102.xhp#par_id3147428.15.help.text"
+msgid "Case 6, 7, 8"
+msgstr ""
+
+#: 03090102.xhp#par_id3147349.16.help.text
+msgctxt "03090102.xhp#par_id3147349.16.help.text"
+msgid "Print \"Number from 6 to 8\""
+msgstr ""
+
+#: 03090102.xhp#par_id3153729.17.help.text
+msgid "Case 8 To 10"
+msgstr ""
+
+#: 03090102.xhp#par_id3152886.18.help.text
+msgctxt "03090102.xhp#par_id3152886.18.help.text"
+msgid "Print \"Greater than 8\""
+msgstr ""
+
+#: 03090102.xhp#par_id3155414.19.help.text
+msgctxt "03090102.xhp#par_id3155414.19.help.text"
+msgid "Case Else"
+msgstr ""
+
+#: 03090102.xhp#par_id3146975.20.help.text
+msgid "Print \"Out of range 1 to 10\""
+msgstr ""
+
+#: 03090102.xhp#par_id3150419.21.help.text
+msgctxt "03090102.xhp#par_id3150419.21.help.text"
+msgid "End Select"
+msgstr ""
+
+#: 03090102.xhp#par_id3154943.22.help.text
+msgctxt "03090102.xhp#par_id3154943.22.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03020411.xhp#tit.help.text
+msgid "MkDir Statement [Runtime]"
+msgstr ""
+
+#: 03020411.xhp#bm_id3156421.help.text
+msgid "<bookmark_value>MkDir statement</bookmark_value>"
+msgstr ""
+
+#: 03020411.xhp#hd_id3156421.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement [Runtime]\">MkDir Statement [Runtime]</link>"
+msgstr ""
+
+#: 03020411.xhp#par_id3147000.2.help.text
+msgid "Creates a new directory on a data medium."
+msgstr ""
+
+#: 03020411.xhp#hd_id3148520.3.help.text
+msgctxt "03020411.xhp#hd_id3148520.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020411.xhp#par_id3155150.4.help.text
+msgid "MkDir Text As String"
+msgstr ""
+
+#: 03020411.xhp#hd_id3156027.5.help.text
+msgctxt "03020411.xhp#hd_id3156027.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03020411.xhp#par_id3153311.7.help.text
+msgid "If the path is not determined, the directory is created in the current directory."
+msgstr ""
+
+#: 03020411.xhp#hd_id3155388.8.help.text
+msgctxt "03020411.xhp#hd_id3155388.8.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020411.xhp#par_id3148473.9.help.text
+msgid "Sub ExampleFileIO"
+msgstr ""
+
+#: 03020411.xhp#par_id3149762.10.help.text
+msgid "' Example for functions of the file organization"
+msgstr ""
+
+#: 03020411.xhp#par_id3145610.11.help.text
+msgid "Const sFile1 as String = \"file://c|/autoexec.bat\""
+msgstr ""
+
+#: 03020411.xhp#par_id3147264.12.help.text
+msgid "Const sDir1 as String = \"file://c|/Temp\""
+msgstr ""
+
+#: 03020411.xhp#par_id3149669.13.help.text
+msgid "Const sSubDir1 as String =\"Test\""
+msgstr ""
+
+#: 03020411.xhp#par_id3148663.14.help.text
+msgid "Const sFile2 as String = \"Copied.tmp\""
+msgstr ""
+
+#: 03020411.xhp#par_id3154071.15.help.text
+msgid "Const sFile3 as String = \"Renamed.tmp\""
+msgstr ""
+
+#: 03020411.xhp#par_id3150792.16.help.text
+msgid "Dim sFile as String"
+msgstr ""
+
+#: 03020411.xhp#par_id3154366.17.help.text
+msgid "sFile = sDir1 + \"/\" + sSubDir1"
+msgstr ""
+
+#: 03020411.xhp#par_id3149204.18.help.text
+msgctxt "03020411.xhp#par_id3149204.18.help.text"
+msgid "ChDir( sDir1 )"
+msgstr ""
+
+#: 03020411.xhp#par_id3154217.19.help.text
+msgid "If Dir(sSubDir1,16)=\"\" then ' Does the directory exist ?"
+msgstr ""
+
+#: 03020411.xhp#par_id3156423.20.help.text
+msgid "MkDir sSubDir1"
+msgstr ""
+
+#: 03020411.xhp#par_id3147228.21.help.text
+msgid "MsgBox sFile,0,\"Create directory\""
+msgstr ""
+
+#: 03020411.xhp#par_id3153970.22.help.text
+msgctxt "03020411.xhp#par_id3153970.22.help.text"
+msgid "End If"
+msgstr ""
+
+#: 03020411.xhp#par_id3148451.24.help.text
+msgid "sFile = sFile + \"/\" + sFile2"
+msgstr ""
+
+#: 03020411.xhp#par_id3155132.25.help.text
+msgid "FileCopy sFile1 , sFile"
+msgstr ""
+
+#: 03020411.xhp#par_id3153770.26.help.text
+msgid "MsgBox fSysURL(CurDir()),0,\"Current directory\""
+msgstr ""
+
+#: 03020411.xhp#par_id3159154.27.help.text
+msgid "MsgBox sFile & Chr(13) & FileDateTime( sFile ),0,\"Creation time\""
+msgstr ""
+
+#: 03020411.xhp#par_id3149484.28.help.text
+msgid "MsgBox sFile & Chr(13)& FileLen( sFile ),0,\"File length\""
+msgstr ""
+
+#: 03020411.xhp#par_id3152885.29.help.text
+msgid "MsgBox sFile & Chr(13)& GetAttr( sFile ),0,\"File attributes\""
+msgstr ""
+
+#: 03020411.xhp#par_id3152596.30.help.text
+msgid "Name sFile as sDir1 + \"/\" + sSubDir1 + \"/\" + sFile3"
+msgstr ""
+
+#: 03020411.xhp#par_id3153952.31.help.text
+msgid "' Rename in the same directory"
+msgstr ""
+
+#: 03020411.xhp#par_id3152576.33.help.text
+msgid "sFile = sDir1 + \"/\" + sSubDir1 + \"/\" + sFile3"
+msgstr ""
+
+#: 03020411.xhp#par_id3147426.34.help.text
+msgid "SetAttr( sFile, 0 ) 'Delete all attributes"
+msgstr ""
+
+#: 03020411.xhp#par_id3148647.35.help.text
+msgid "MsgBox sFile & Chr(13) & GetAttr( sFile ),0,\"New file attributes\""
+msgstr ""
+
+#: 03020411.xhp#par_id3153363.36.help.text
+msgid "Kill sFile"
+msgstr ""
+
+#: 03020411.xhp#par_id3151113.37.help.text
+msgid "RmDir sDir1 + \"/\" + sSubDir1"
+msgstr ""
+
+#: 03020411.xhp#par_id3153157.38.help.text
+msgctxt "03020411.xhp#par_id3153157.38.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03020411.xhp#par_id3150092.40.help.text
+msgid "' Converts a system path in URL"
+msgstr ""
+
+#: 03020411.xhp#par_id3147396.41.help.text
+msgid "Function fSysURL( fSysFp as String ) as String"
+msgstr ""
+
+#: 03020411.xhp#par_id3153878.42.help.text
+msgid "Dim iPos As String"
+msgstr ""
+
+#: 03020411.xhp#par_id3150420.43.help.text
+msgid "iPos = 1"
+msgstr ""
+
+#: 03020411.xhp#par_id3145253.44.help.text
+msgid "iPos = Instr(iPos,fSysFp, getPathSeparator())"
+msgstr ""
+
+#: 03020411.xhp#par_id3153415.45.help.text
+msgid "do while iPos > 0"
+msgstr ""
+
+#: 03020411.xhp#par_id3153512.46.help.text
+msgid "mid( fSysFp, iPos , 1,\"/\")"
+msgstr ""
+
+#: 03020411.xhp#par_id3146899.47.help.text
+msgid "iPos = Instr(iPos+1,fSysFp, getPathSeparator())"
+msgstr ""
+
+#: 03020411.xhp#par_id3145652.48.help.text
+msgid "loop"
+msgstr ""
+
+#: 03020411.xhp#par_id3156276.49.help.text
+msgid "' the colon with DOS"
+msgstr ""
+
+#: 03020411.xhp#par_id3146913.50.help.text
+msgid "iPos = Instr(1,fSysFp,\":\")"
+msgstr ""
+
+#: 03020411.xhp#par_id3145640.51.help.text
+msgid "if iPos > 0 then mid( fSysFp, iPos , 1,\"|\")"
+msgstr ""
+
+#: 03020411.xhp#par_id3155443.52.help.text
+msgid "fSysURL = \"file://\" & fSysFp"
+msgstr ""
+
+#: 03020411.xhp#par_id3148995.53.help.text
+msgctxt "03020411.xhp#par_id3148995.53.help.text"
+msgid "End Function"
+msgstr ""
+
+#: 03131700.xhp#tit.help.text
+msgid "GetProcessServiceManager Function [Runtime]"
+msgstr ""
+
+#: 03131700.xhp#bm_id3153255.help.text
+msgid "<bookmark_value>GetProcessServiceManager function</bookmark_value><bookmark_value>ProcessServiceManager</bookmark_value>"
+msgstr ""
+
+#: 03131700.xhp#hd_id3153255.1.help.text
+msgid "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"GetProcessServiceManager Function [Runtime]\">GetProcessServiceManager Function [Runtime]</link>"
+msgstr ""
+
+#: 03131700.xhp#par_id3156414.2.help.text
+msgid "Returns the ProcessServiceManager (central Uno ServiceManager)."
+msgstr ""
+
+#: 03131700.xhp#par_id3145136.3.help.text
+msgid "This function is required when you want to instantiate a service using CreateInstanceWithArguments."
+msgstr ""
+
+#: 03131700.xhp#hd_id3153681.4.help.text
+msgctxt "03131700.xhp#hd_id3153681.4.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03131700.xhp#par_id3151110.5.help.text
+msgctxt "03131700.xhp#par_id3151110.5.help.text"
+msgid "oServiceManager = GetProcessServiceManager()"
+msgstr ""
+
+#: 03131700.xhp#hd_id3149516.6.help.text
+msgctxt "03131700.xhp#hd_id3149516.6.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03131700.xhp#par_id3143270.7.help.text
+msgctxt "03131700.xhp#par_id3143270.7.help.text"
+msgid "oServiceManager = GetProcessServiceManager()"
+msgstr ""
+
+#: 03131700.xhp#par_id3153825.8.help.text
+msgid "oIntrospection = oServiceManager.createInstance(\"com.sun.star.beans.Introspection\");"
+msgstr ""
+
+#: 03131700.xhp#par_id3148473.9.help.text
+msgid "this is the same as the following statement:"
+msgstr ""
+
+#: 03131700.xhp#par_id3145609.10.help.text
+msgid "oIntrospection = CreateUnoService(\"com.sun.star.beans.Introspection\")"
+msgstr ""
+
+#: 03104300.xhp#tit.help.text
+msgid "DimArray Function [Runtime]"
+msgstr ""
+
+#: 03104300.xhp#bm_id3150616.help.text
+msgid "<bookmark_value>DimArray function</bookmark_value>"
+msgstr ""
+
+#: 03104300.xhp#hd_id3150616.1.help.text
+msgid "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray Function [Runtime]\">DimArray Function [Runtime]</link>"
+msgstr ""
+
+#: 03104300.xhp#par_id3153527.2.help.text
+msgid "Returns a Variant array."
+msgstr ""
+
+#: 03104300.xhp#hd_id3149762.3.help.text
+msgctxt "03104300.xhp#hd_id3149762.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03104300.xhp#par_id3148473.4.help.text
+msgid "DimArray ( Argument list)"
+msgstr ""
+
+#: 03104300.xhp#par_id3154142.5.help.text
+msgid "See also <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Array</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03104300.xhp#hd_id3154760.7.help.text
+msgctxt "03104300.xhp#hd_id3154760.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03104300.xhp#hd_id3150358.9.help.text
+msgctxt "03104300.xhp#hd_id3150358.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03104300.xhp#par_id3154939.10.help.text
+msgid "DimArray( 2, 2, 4 ) is the same as DIM a( 2, 2, 4 )"
+msgstr ""
+
+#: 03090303.xhp#tit.help.text
+msgid "On...GoSub Statement; On...GoTo Statement [Runtime]"
+msgstr ""
+
+#: 03090303.xhp#bm_id3153897.help.text
+msgid "<bookmark_value>On...GoSub statement</bookmark_value><bookmark_value>On...GoTo statement</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03090303.xhp#hd_id3148798.3.help.text
+msgctxt "03090303.xhp#hd_id3148798.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03090303.xhp#par_id3154366.4.help.text
+msgid "On N GoSub Label1[, Label2[, Label3[,...]]]"
+msgstr ""
+
+#: 03090303.xhp#par_id3150769.5.help.text
+msgid "On NumExpression GoTo Label1[, Label2[, Label3[,...]]]"
+msgstr ""
+
+#: 03090303.xhp#hd_id3156215.6.help.text
+msgctxt "03090303.xhp#hd_id3156215.6.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03090303.xhp#par_id3153194.8.help.text
+msgid "<emph>Label:</emph> Target line according to<emph> GoTo </emph>or <emph>GoSub</emph> structure."
+msgstr ""
+
+#: 03090303.xhp#par_id3156442.9.help.text
+msgid "The <emph>GoTo</emph> or <emph>GoSub </emph>conventions are valid."
+msgstr ""
+
+#: 03090303.xhp#hd_id3148645.10.help.text
+msgctxt "03090303.xhp#hd_id3148645.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03090303.xhp#par_id3154014.12.help.text
+msgid "Sub ExampleOnGosub"
+msgstr ""
+
+#: 03090303.xhp#par_id3153158.13.help.text
+msgctxt "03090303.xhp#par_id3153158.13.help.text"
+msgid "Dim iVar As Integer"
+msgstr ""
+
+#: 03090303.xhp#par_id3154490.14.help.text
+msgctxt "03090303.xhp#par_id3154490.14.help.text"
+msgid "Dim sVar As String"
+msgstr ""
+
+#: 03090303.xhp#par_id3155417.15.help.text
+msgid "iVar = 2"
+msgstr ""
+
+#: 03090303.xhp#par_id3154730.16.help.text
+msgid "sVar =\"\""
+msgstr ""
+
+#: 03090303.xhp#par_id3154942.17.help.text
+msgid "On iVar GoSub Sub1, Sub2"
+msgstr ""
+
+#: 03090303.xhp#par_id3149378.18.help.text
+msgid "On iVar GoTo Line1, Line2"
+msgstr ""
+
+#: 03090303.xhp#par_id3153416.19.help.text
+msgctxt "03090303.xhp#par_id3153416.19.help.text"
+msgid "Exit Sub"
+msgstr ""
+
+#: 03090303.xhp#par_id3154015.20.help.text
+msgid "Sub1:"
+msgstr ""
+
+#: 03090303.xhp#par_id3153948.21.help.text
+msgid "sVar =sVar & \" From Sub 1 to\" : Return"
+msgstr ""
+
+#: 03090303.xhp#par_id3150750.22.help.text
+msgid "Sub2:"
+msgstr ""
+
+#: 03090303.xhp#par_id3153708.23.help.text
+msgid "sVar =sVar & \" From Sub 2 to\" : Return"
+msgstr ""
+
+#: 03090303.xhp#par_id3155067.24.help.text
+msgid "Line1:"
+msgstr ""
+
+#: 03090303.xhp#par_id3150321.25.help.text
+msgid "sVar =sVar & \" Label 1\" : GoTo Ende"
+msgstr ""
+
+#: 03090303.xhp#par_id3149019.26.help.text
+msgid "Line2:"
+msgstr ""
+
+#: 03090303.xhp#par_id3155764.27.help.text
+msgid "sVar =sVar & \" Label 2\""
+msgstr ""
+
+#: 03090303.xhp#par_id3153711.28.help.text
+msgid "Ende:"
+msgstr ""
+
+#: 03090303.xhp#par_id3154253.29.help.text
+msgid "MsgBox sVar,0,\"On...Gosub\""
+msgstr ""
+
+#: 03090303.xhp#par_id3149565.30.help.text
+msgctxt "03090303.xhp#par_id3149565.30.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03120101.xhp#tit.help.text
+msgid "Asc Function [Runtime]"
+msgstr ""
+
+#: 03120101.xhp#bm_id3150499.help.text
+msgid "<bookmark_value>Asc function</bookmark_value>"
+msgstr ""
+
+#: 03120101.xhp#hd_id3150499.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120101.xhp\" name=\"Asc Function [Runtime]\">Asc Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03120101.xhp#hd_id3155555.3.help.text
+msgctxt "03120101.xhp#hd_id3155555.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03120101.xhp#par_id3143267.4.help.text
+msgid "Asc (Text As String)"
+msgstr ""
+
+#: 03120101.xhp#hd_id3147242.5.help.text
+msgctxt "03120101.xhp#hd_id3147242.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03120101.xhp#par_id3150669.6.help.text
+msgctxt "03120101.xhp#par_id3150669.6.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03120101.xhp#hd_id3148473.7.help.text
+msgctxt "03120101.xhp#hd_id3148473.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03120101.xhp#hd_id3159413.10.help.text
+msgctxt "03120101.xhp#hd_id3159413.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03120101.xhp#par_id3149457.11.help.text
+msgid "Sub ExampleASC"
+msgstr ""
+
+#: 03120101.xhp#par_id3150792.12.help.text
+msgid "Print ASC(\"A\") REM returns 65"
+msgstr ""
+
+#: 03120101.xhp#par_id3148797.13.help.text
+msgid "Print ASC(\"Z\") REM returns 90"
+msgstr ""
+
+#: 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 ""
+
+#: 03120101.xhp#par_id3148674.15.help.text
+msgctxt "03120101.xhp#par_id3148674.15.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03120101.xhp#par_idN1067B.help.text
+msgid "<link href=\"text/sbasic/shared/03120102.xhp\">CHR</link>"
+msgstr ""
+
+#: 03080701.xhp#tit.help.text
+msgid "Sgn Function [Runtime]"
+msgstr ""
+
+#: 03080701.xhp#bm_id3148474.help.text
+msgid "<bookmark_value>Sgn function</bookmark_value>"
+msgstr ""
+
+#: 03080701.xhp#hd_id3148474.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080701.xhp\" name=\"Sgn Function [Runtime]\">Sgn Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03080701.xhp#hd_id3156023.3.help.text
+msgctxt "03080701.xhp#hd_id3156023.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03080701.xhp#par_id3153897.4.help.text
+msgid "Sgn (Number)"
+msgstr ""
+
+#: 03080701.xhp#hd_id3145069.5.help.text
+msgctxt "03080701.xhp#hd_id3145069.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03080701.xhp#par_id3150359.6.help.text
+msgctxt "03080701.xhp#par_id3150359.6.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03080701.xhp#hd_id3150543.7.help.text
+msgctxt "03080701.xhp#hd_id3150543.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03080701.xhp#par_id3154365.8.help.text
+msgid "<emph>Number:</emph> Numeric expression that determines the value that is returned by the function."
+msgstr ""
+
+#: 03080701.xhp#par_id3150767.9.help.text
+msgid "NumExpression"
+msgstr ""
+
+#: 03080701.xhp#par_id3150441.10.help.text
+msgctxt "03080701.xhp#par_id3150441.10.help.text"
+msgid "Return value"
+msgstr ""
+
+#: 03080701.xhp#par_id3161833.11.help.text
+msgid "negative"
+msgstr ""
+
+#: 03080701.xhp#par_id3155306.12.help.text
+msgid "Sgn returns -1."
+msgstr ""
+
+#: 03080701.xhp#par_id3145271.13.help.text
+msgctxt "03080701.xhp#par_id3145271.13.help.text"
+msgid "0"
+msgstr ""
+
+#: 03080701.xhp#par_id3146119.14.help.text
+msgid "Sgn returns 0."
+msgstr ""
+
+#: 03080701.xhp#par_id3153139.15.help.text
+msgid "positive"
+msgstr ""
+
+#: 03080701.xhp#par_id3154319.16.help.text
+msgid "Sgn returns 1."
+msgstr ""
+
+#: 03080701.xhp#hd_id3152576.17.help.text
+msgctxt "03080701.xhp#hd_id3152576.17.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03080701.xhp#par_id3154791.18.help.text
+msgid "Sub ExampleSgn"
+msgstr ""
+
+#: 03080701.xhp#par_id3155416.19.help.text
+msgid "Print sgn(-10) REM returns -1"
+msgstr ""
+
+#: 03080701.xhp#par_id3154096.20.help.text
+msgid "Print sgn(0) REM returns 0"
+msgstr ""
+
+#: 03080701.xhp#par_id3148457.21.help.text
+msgid "Print sgn(10) REM returns 1"
+msgstr ""
+
+#: 03080701.xhp#par_id3144765.22.help.text
+msgctxt "03080701.xhp#par_id3144765.22.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03080101.xhp#tit.help.text
+msgid "Atn Function [Runtime]"
+msgstr ""
+
+#: 03080101.xhp#bm_id3150616.help.text
+msgid "<bookmark_value>Atn function</bookmark_value>"
+msgstr ""
+
+#: 03080101.xhp#hd_id3150616.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080101.xhp\" name=\"Atn Function [Runtime]\">Atn Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03080101.xhp#par_id3145315.4.help.text
+msgid "Atn(side opposite the angle/side adjacent to angle)= Alpha"
+msgstr ""
+
+#: 03080101.xhp#hd_id3149669.5.help.text
+msgctxt "03080101.xhp#hd_id3149669.5.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03080101.xhp#par_id3148947.6.help.text
+msgid "Atn (Number)"
+msgstr ""
+
+#: 03080101.xhp#hd_id3148664.7.help.text
+msgctxt "03080101.xhp#hd_id3148664.7.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03080101.xhp#par_id3150359.8.help.text
+msgctxt "03080101.xhp#par_id3150359.8.help.text"
+msgid "Double"
+msgstr ""
+
+#: 03080101.xhp#hd_id3148798.9.help.text
+msgctxt "03080101.xhp#hd_id3148798.9.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03080101.xhp#par_id3153192.11.help.text
+msgid "To convert radians to degrees, multiply radians by 180/pi."
+msgstr ""
+
+#: 03080101.xhp#par_id3147230.12.help.text
+msgctxt "03080101.xhp#par_id3147230.12.help.text"
+msgid "degree=(radian*180)/pi"
+msgstr ""
+
+#: 03080101.xhp#par_id3125864.13.help.text
+msgctxt "03080101.xhp#par_id3125864.13.help.text"
+msgid "radian=(degree*pi)/180"
+msgstr ""
+
+#: 03080101.xhp#par_id3159252.14.help.text
+msgid "Pi is here the fixed circle constant with the rounded value 3.14159."
+msgstr ""
+
+#: 03080101.xhp#hd_id3153142.15.help.text
+msgctxt "03080101.xhp#hd_id3153142.15.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03080101.xhp#par_id3146985.16.help.text
+msgid "REM The following example calculates for a right-angled triangle"
+msgstr ""
+
+#: 03080101.xhp#par_id3145750.17.help.text
+msgid "REM the angle Alpha from the tangent of the angle Alpha:"
+msgstr ""
+
+#: 03080101.xhp#par_id3146975.18.help.text
+msgid "Sub ExampleATN"
+msgstr ""
+
+#: 03080101.xhp#par_id3151112.19.help.text
+msgid "REM rounded Pi = 3.14159 is a predefined constant"
+msgstr ""
+
+#: 03080101.xhp#par_id3159156.20.help.text
+msgid "Dim d1 As Double"
+msgstr ""
+
+#: 03080101.xhp#par_id3147435.21.help.text
+msgid "Dim d2 As Double"
+msgstr ""
+
+#: 03080101.xhp#par_id3149262.22.help.text
+msgid "d1 = InputBox$ (\"Enter the length of the side adjacent to the angle: \",\"Adjacent\")"
+msgstr ""
+
+#: 03080101.xhp#par_id3149482.23.help.text
+msgid "d2 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"Opposite\")"
+msgstr ""
+
+#: 03080101.xhp#par_id3155415.24.help.text
+msgid "Print \"The Alpha angle is\"; (atn (d2/d1) * 180 / Pi); \" degrees\""
+msgstr ""
+
+#: 03080101.xhp#par_id3149959.25.help.text
+msgctxt "03080101.xhp#par_id3149959.25.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03080600.xhp#tit.help.text
+msgid "Absolute Values"
+msgstr ""
+
+#: 03080600.xhp#hd_id3146958.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"Absolute Values\">Absolute Values</link>"
+msgstr ""
+
+#: 03080600.xhp#par_id3150771.2.help.text
+msgid "This function returns absolute values."
+msgstr ""
+
+#: 03101130.xhp#tit.help.text
+msgid "DefSng Statement [Runtime]"
+msgstr ""
+
+#: 03101130.xhp#bm_id2445142.help.text
+msgid "<bookmark_value>DefSng statement</bookmark_value>"
+msgstr ""
+
+#: 03101130.xhp#par_idN10577.help.text
+msgid "<link href=\"text/sbasic/shared/03101130.xhp\">DefSng Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03101130.xhp#par_idN1058A.help.text
+msgctxt "03101130.xhp#par_idN1058A.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03101130.xhp#par_idN1058E.help.text
+msgctxt "03101130.xhp#par_idN1058E.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr ""
+
+#: 03101130.xhp#par_idN10591.help.text
+msgctxt "03101130.xhp#par_idN10591.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03101130.xhp#par_idN105A3.help.text
+msgctxt "03101130.xhp#par_idN105A3.help.text"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr ""
+
+#: 03101130.xhp#par_idN105AA.help.text
+msgid "<emph>DefSng:</emph> Single"
+msgstr ""
+
+#: 03101130.xhp#par_idN105B1.help.text
+msgctxt "03101130.xhp#par_idN105B1.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03101130.xhp#par_idN105B5.help.text
+msgctxt "03101130.xhp#par_idN105B5.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr ""
+
+#: 03101130.xhp#par_idN105B8.help.text
+msgctxt "03101130.xhp#par_idN105B8.help.text"
+msgid "DefBool b"
+msgstr ""
+
+#: 03101130.xhp#par_idN105BB.help.text
+msgctxt "03101130.xhp#par_idN105BB.help.text"
+msgid "DefDate t"
+msgstr ""
+
+#: 03101130.xhp#par_idN105BE.help.text
+msgctxt "03101130.xhp#par_idN105BE.help.text"
+msgid "DefDbL d"
+msgstr ""
+
+#: 03101130.xhp#par_idN105C1.help.text
+msgctxt "03101130.xhp#par_idN105C1.help.text"
+msgid "DefInt i"
+msgstr ""
+
+#: 03101130.xhp#par_idN105C4.help.text
+msgctxt "03101130.xhp#par_idN105C4.help.text"
+msgid "DefLng l"
+msgstr ""
+
+#: 03101130.xhp#par_idN105C7.help.text
+msgctxt "03101130.xhp#par_idN105C7.help.text"
+msgid "DefObj o"
+msgstr ""
+
+#: 03101130.xhp#par_idN105CA.help.text
+msgctxt "03101130.xhp#par_idN105CA.help.text"
+msgid "DefVar v"
+msgstr ""
+
+#: 03101130.xhp#par_idN105CD.help.text
+msgid "DefSng s"
+msgstr ""
+
+#: 03101130.xhp#par_idN105D0.help.text
+msgid "Sub ExampleDefSng"
+msgstr ""
+
+#: 03101130.xhp#par_idN105D3.help.text
+msgid "sSng=Single REM sSng is an implicit single variable"
+msgstr ""
+
+#: 03101130.xhp#par_idN105D6.help.text
+msgctxt "03101130.xhp#par_idN105D6.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03020408.xhp#tit.help.text
+msgid "FileLen-Function [Runtime]"
+msgstr ""
+
+#: 03020408.xhp#bm_id3153126.help.text
+msgid "<bookmark_value>FileLen function</bookmark_value>"
+msgstr ""
+
+#: 03020408.xhp#hd_id3153126.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020408.xhp\" name=\"FileLen-Function [Runtime]\">FileLen Function [Runtime]</link>"
+msgstr ""
+
+#: 03020408.xhp#par_id3145068.2.help.text
+msgid "Returns the length of a file in bytes."
+msgstr ""
+
+#: 03020408.xhp#hd_id3159414.3.help.text
+msgctxt "03020408.xhp#hd_id3159414.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020408.xhp#par_id3149656.4.help.text
+msgid "FileLen (Text As String)"
+msgstr ""
+
+#: 03020408.xhp#hd_id3148798.5.help.text
+msgctxt "03020408.xhp#hd_id3148798.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03020408.xhp#par_id3156282.6.help.text
+msgctxt "03020408.xhp#par_id3156282.6.help.text"
+msgid "Long"
+msgstr ""
+
+#: 03020408.xhp#hd_id3150768.7.help.text
+msgctxt "03020408.xhp#hd_id3150768.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020408.xhp#hd_id3163710.10.help.text
+msgctxt "03020408.xhp#hd_id3163710.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020408.xhp#par_id3159154.11.help.text
+msgid "Sub ExampleFileLen"
+msgstr ""
+
+#: 03020408.xhp#par_id3145271.12.help.text
+msgid "msgbox FileLen(\"C:\\autoexec.bat\")"
+msgstr ""
+
+#: 03020408.xhp#par_id3145749.13.help.text
+msgctxt "03020408.xhp#par_id3145749.13.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03070200.xhp#tit.help.text
+msgid "\"*\" Operator [Runtime]"
+msgstr ""
+
+#: 03070200.xhp#bm_id3147573.help.text
+msgid "<bookmark_value>\"*\" operator (mathematical)</bookmark_value>"
+msgstr ""
+
+#: 03070200.xhp#hd_id3147573.1.help.text
+msgid "<link href=\"text/sbasic/shared/03070200.xhp\">\"*\" Operator [Runtime]</link>"
+msgstr ""
+
+#: 03070200.xhp#par_id3154347.2.help.text
+msgid "Multiplies two values."
+msgstr ""
+
+#: 03070200.xhp#hd_id3148946.3.help.text
+msgctxt "03070200.xhp#hd_id3148946.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03070200.xhp#par_id3150358.4.help.text
+msgid "Result = Expression1 * Expression2"
+msgstr ""
+
+#: 03070200.xhp#hd_id3150400.5.help.text
+msgctxt "03070200.xhp#hd_id3150400.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03070200.xhp#par_id3154365.6.help.text
+msgid "<emph>Result:</emph> Any numeric expression that records the result of a multiplication."
+msgstr ""
+
+#: 03070200.xhp#par_id3154685.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to multiply."
+msgstr ""
+
+#: 03070200.xhp#hd_id3153968.8.help.text
+msgctxt "03070200.xhp#hd_id3153968.8.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03070200.xhp#par_id3155132.9.help.text
+msgid "Sub ExampleMultiplication1"
+msgstr ""
+
+#: 03070200.xhp#par_id3159254.10.help.text
+msgid "Print 5 * 5"
+msgstr ""
+
+#: 03070200.xhp#par_id3153091.11.help.text
+msgctxt "03070200.xhp#par_id3153091.11.help.text"
+msgid "End sub"
+msgstr ""
+
+#: 03070200.xhp#par_id3149667.13.help.text
+msgid "Sub ExampleMultiplication2"
+msgstr ""
+
+#: 03070200.xhp#par_id3151113.14.help.text
+msgctxt "03070200.xhp#par_id3151113.14.help.text"
+msgid "Dim iValue1 as Integer"
+msgstr ""
+
+#: 03070200.xhp#par_id3147434.15.help.text
+msgctxt "03070200.xhp#par_id3147434.15.help.text"
+msgid "Dim iValue2 as Integer"
+msgstr ""
+
+#: 03070200.xhp#par_id3153727.16.help.text
+msgctxt "03070200.xhp#par_id3153727.16.help.text"
+msgid "iValue1 = 5"
+msgstr ""
+
+#: 03070200.xhp#par_id3147348.17.help.text
+msgctxt "03070200.xhp#par_id3147348.17.help.text"
+msgid "iValue2 = 10"
+msgstr ""
+
+#: 03070200.xhp#par_id3149261.18.help.text
+msgid "Print iValue1 * iValue2"
+msgstr ""
+
+#: 03070200.xhp#par_id3148646.19.help.text
+msgctxt "03070200.xhp#par_id3148646.19.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03050000.xhp#tit.help.text
+msgid "Error-Handling Functions"
+msgstr ""
+
+#: 03050000.xhp#hd_id3143271.1.help.text
+msgid "<link href=\"text/sbasic/shared/03050000.xhp\" name=\"Error-Handling Functions\">Error-Handling Functions</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03103700.xhp#tit.help.text
+msgid "Set Statement[Runtime]"
+msgstr ""
+
+#: 03103700.xhp#bm_id3154422.help.text
+msgid "<bookmark_value>Set statement</bookmark_value><bookmark_value>Nothing object</bookmark_value>"
+msgstr ""
+
+#: 03103700.xhp#hd_id3154422.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement[Runtime]\">Set Statement[Runtime]</link>"
+msgstr ""
+
+#: 03103700.xhp#par_id3159149.2.help.text
+msgid "Sets an object reference on a variable or a Property."
+msgstr ""
+
+#: 03103700.xhp#hd_id3153105.3.help.text
+msgctxt "03103700.xhp#hd_id3153105.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03103700.xhp#par_id3154217.4.help.text
+msgid "Set ObjectVar = Object"
+msgstr ""
+
+#: 03103700.xhp#hd_id3154685.5.help.text
+msgctxt "03103700.xhp#hd_id3154685.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03103700.xhp#par_id3156281.6.help.text
+msgid "<emph>ObjectVar:</emph> a variable or a property that requires an object reference."
+msgstr ""
+
+#: 03103700.xhp#par_id3159252.7.help.text
+msgid "<emph>Object:</emph> Object that the variable or the property refers to."
+msgstr ""
+
+#: 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 ""
+
+#: 03103700.xhp#hd_id3159153.8.help.text
+msgctxt "03103700.xhp#hd_id3159153.8.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03103700.xhp#par_id3147349.9.help.text
+msgid "Sub ExampleSet"
+msgstr ""
+
+#: 03103700.xhp#par_id3149481.10.help.text
+msgid "Dim oDoc As Object"
+msgstr ""
+
+#: 03103700.xhp#par_id3153140.11.help.text
+msgid "Set oDoc = ActiveWindow"
+msgstr ""
+
+#: 03103700.xhp#par_id3153190.12.help.text
+msgid "Print oDoc.Name"
+msgstr ""
+
+#: 03103700.xhp#par_id3161833.13.help.text
+msgctxt "03103700.xhp#par_id3161833.13.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03132400.xhp#tit.help.text
+msgid "CreateObject Function [Runtime]"
+msgstr ""
+
+#: 03132400.xhp#bm_id659810.help.text
+msgid "<bookmark_value>CreateObject function</bookmark_value>"
+msgstr ""
+
+#: 03132400.xhp#par_idN10580.help.text
+msgid "<link href=\"text/sbasic/shared/03132400.xhp\">CreateObject Function [Runtime]</link>"
+msgstr ""
+
+#: 03132400.xhp#par_idN10590.help.text
+msgid "<ahelp hid=\".\">Creates a UNO object. On Windows, can also create OLE objects.</ahelp>"
+msgstr ""
+
+#: 03132400.xhp#par_idN1059F.help.text
+msgid "This method creates instances of the type that is passed as parameter."
+msgstr ""
+
+#: 03132400.xhp#par_idN105A2.help.text
+msgctxt "03132400.xhp#par_idN105A2.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03132400.xhp#par_idN105A6.help.text
+msgid "oObj = CreateObject( type )"
+msgstr ""
+
+#: 03132400.xhp#par_idN105A9.help.text
+msgctxt "03132400.xhp#par_idN105A9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03132400.xhp#par_idN105AD.help.text
+msgid "Type address"
+msgstr ""
+
+#: 03132400.xhp#par_idN105B0.help.text
+msgid "Name1 as String"
+msgstr ""
+
+#: 03132400.xhp#par_idN105B4.help.text
+msgid "City as String"
+msgstr ""
+
+#: 03132400.xhp#par_idN105B8.help.text
+msgid "End Type"
+msgstr ""
+
+#: 03132400.xhp#par_idN105BB.help.text
+msgid "Sub main"
+msgstr ""
+
+#: 03132400.xhp#par_idN105BE.help.text
+msgid "myaddress = CreateObject(\"address\")"
+msgstr ""
+
+#: 03132400.xhp#par_idN105C2.help.text
+msgid "MsgBox IsObject(myaddress)"
+msgstr ""
+
+#: 03132400.xhp#par_idN105C6.help.text
+msgctxt "03132400.xhp#par_idN105C6.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03060100.xhp#tit.help.text
+msgid "AND Operator [Runtime]"
+msgstr ""
+
+#: 03060100.xhp#bm_id3146117.help.text
+msgid "<bookmark_value>AND operator (logical)</bookmark_value>"
+msgstr ""
+
+#: 03060100.xhp#hd_id3146117.1.help.text
+msgid "<link href=\"text/sbasic/shared/03060100.xhp\" name=\"AND Operator [Runtime]\">AND Operator [Runtime]</link>"
+msgstr ""
+
+#: 03060100.xhp#par_id3143268.2.help.text
+msgid "Logically combines two expressions."
+msgstr ""
+
+#: 03060100.xhp#hd_id3147574.3.help.text
+msgctxt "03060100.xhp#hd_id3147574.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03060100.xhp#par_id3156344.4.help.text
+msgid "Result = Expression1 And Expression2"
+msgstr ""
+
+#: 03060100.xhp#hd_id3148946.5.help.text
+msgctxt "03060100.xhp#hd_id3148946.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03060100.xhp#par_id3149457.6.help.text
+msgid "<emph>Result:</emph> Any numeric variable that records the result of the combination."
+msgstr ""
+
+#: 03060100.xhp#par_id3150541.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to combine."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03060100.xhp#hd_id3153727.11.help.text
+msgctxt "03060100.xhp#hd_id3153727.11.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03060100.xhp#par_id3149481.12.help.text
+msgid "Sub ExampleAnd"
+msgstr ""
+
+#: 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 ""
+
+#: 03060100.xhp#par_id3152598.14.help.text
+msgid "Dim vVarOut as Variant"
+msgstr ""
+
+#: 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 ""
+
+#: 03060100.xhp#par_id3146984.16.help.text
+msgid "vVarOut = A > B And B > C REM returns -1"
+msgstr ""
+
+#: 03060100.xhp#par_id3154014.17.help.text
+msgid "vVarOut = B > A And B > C REM returns 0"
+msgstr ""
+
+#: 03060100.xhp#par_id3149262.18.help.text
+msgid "vVarOut = A > B And B > D REM returns 0"
+msgstr ""
+
+#: 03060100.xhp#par_id3145751.19.help.text
+msgid "vVarOut = (B > D And B > A) REM returns 0"
+msgstr ""
+
+#: 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 ""
+
+#: 03060100.xhp#par_id3151073.21.help.text
+msgctxt "03060100.xhp#par_id3151073.21.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03080300.xhp#tit.help.text
+msgid "Generating Random Numbers"
+msgstr ""
+
+#: 03080300.xhp#hd_id3143270.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080300.xhp\" name=\"Generating Random Numbers\">Generating Random Numbers</link>"
+msgstr ""
+
+#: 03080300.xhp#par_id3154347.2.help.text
+msgid "The following statements and functions generate random numbers."
+msgstr ""
+
+#: 03104700.xhp#tit.help.text
+msgid "Erase Function [Runtime]"
+msgstr ""
+
+#: 03104700.xhp#bm_id624713.help.text
+msgid "<bookmark_value>Erase function</bookmark_value>"
+msgstr ""
+
+#: 03104700.xhp#par_idN10548.help.text
+msgid "<link href=\"text/sbasic/shared/03104700.xhp\">Erase Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03104700.xhp#par_idN1055D.help.text
+msgctxt "03104700.xhp#par_idN1055D.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03104700.xhp#par_idN105E6.help.text
+msgid "Erase Arraylist"
+msgstr ""
+
+#: 03104700.xhp#par_idN105E9.help.text
+msgctxt "03104700.xhp#par_idN105E9.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03104700.xhp#par_idN105ED.help.text
+msgid "<emph>Arraylist</emph> - The list of arrays to be erased."
+msgstr ""
+
+#: 03090400.xhp#tit.help.text
+msgid "Further Statements"
+msgstr ""
+
+#: 03090400.xhp#hd_id3145316.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Further Statements\">Further Statements</link>"
+msgstr ""
+
+#: 03090400.xhp#par_id3154923.2.help.text
+msgid "Statements that do not belong to any of the other runtime categories are described here."
+msgstr ""
+
+#: 01030000.xhp#tit.help.text
+msgid "Integrated Development Environment (IDE)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01030000.xhp#par_id3146795.2.help.text
+msgid "This section describes the Integrated Development Environment for $[officename] Basic."
+msgstr ""
+
+#: 03102900.xhp#tit.help.text
+msgid "LBound Function [Runtime]"
+msgstr ""
+
+#: 03102900.xhp#bm_id3156027.help.text
+msgid "<bookmark_value>LBound function</bookmark_value>"
+msgstr ""
+
+#: 03102900.xhp#hd_id3156027.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"LBound Function [Runtime]\">LBound Function [Runtime]</link>"
+msgstr ""
+
+#: 03102900.xhp#par_id3147226.2.help.text
+msgid "Returns the lower boundary of an array."
+msgstr ""
+
+#: 03102900.xhp#hd_id3148538.3.help.text
+msgctxt "03102900.xhp#hd_id3148538.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03102900.xhp#par_id3150503.4.help.text
+msgid "LBound (ArrayName [, Dimension])"
+msgstr ""
+
+#: 03102900.xhp#hd_id3150984.5.help.text
+msgctxt "03102900.xhp#hd_id3150984.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03102900.xhp#par_id3153126.6.help.text
+msgctxt "03102900.xhp#par_id3153126.6.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03102900.xhp#hd_id3144500.7.help.text
+msgctxt "03102900.xhp#hd_id3144500.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03102900.xhp#hd_id3145171.10.help.text
+msgctxt "03102900.xhp#hd_id3145171.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03102900.xhp#par_id3148673.11.help.text
+msgctxt "03102900.xhp#par_id3148673.11.help.text"
+msgid "Sub ExampleUboundLbound"
+msgstr ""
+
+#: 03102900.xhp#par_id3153193.12.help.text
+msgctxt "03102900.xhp#par_id3153193.12.help.text"
+msgid "Dim sVar(10 to 20) As String"
+msgstr ""
+
+#: 03102900.xhp#par_id3148452.13.help.text
+msgctxt "03102900.xhp#par_id3148452.13.help.text"
+msgid "print LBound(sVar())"
+msgstr ""
+
+#: 03102900.xhp#par_id3153768.14.help.text
+msgctxt "03102900.xhp#par_id3153768.14.help.text"
+msgid "print UBound(sVar())"
+msgstr ""
+
+#: 03102900.xhp#par_id3147288.15.help.text
+msgctxt "03102900.xhp#par_id3147288.15.help.text"
+msgid "end Sub"
+msgstr ""
+
+#: 03102900.xhp#par_id3146974.16.help.text
+msgctxt "03102900.xhp#par_id3146974.16.help.text"
+msgid "Sub ExampleUboundLbound2"
+msgstr ""
+
+#: 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 ""
+
+#: 03102900.xhp#par_id3145365.18.help.text
+msgctxt "03102900.xhp#par_id3145365.18.help.text"
+msgid "Print LBound(sVar()) REM Returns 10"
+msgstr ""
+
+#: 03102900.xhp#par_id3150486.19.help.text
+msgctxt "03102900.xhp#par_id3150486.19.help.text"
+msgid "Print UBound(sVar()) REM Returns 20"
+msgstr ""
+
+#: 03102900.xhp#par_id3149665.20.help.text
+msgctxt "03102900.xhp#par_id3149665.20.help.text"
+msgid "Print LBound(sVar(),2) REM Returns 5"
+msgstr ""
+
+#: 03102900.xhp#par_id3159154.21.help.text
+msgctxt "03102900.xhp#par_id3159154.21.help.text"
+msgid "Print UBound(sVar(),2) REM Returns 70"
+msgstr ""
+
+#: 03102900.xhp#par_id3154013.22.help.text
+msgctxt "03102900.xhp#par_id3154013.22.help.text"
+msgid "end Sub"
+msgstr ""
+
+#: 03080301.xhp#tit.help.text
+msgid "Randomize Statement [Runtime]"
+msgstr ""
+
+#: 03080301.xhp#bm_id3150616.help.text
+msgid "<bookmark_value>Randomize statement</bookmark_value>"
+msgstr ""
+
+#: 03080301.xhp#hd_id3150616.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080301.xhp\" name=\"Randomize Statement [Runtime]\">Randomize Statement [Runtime]</link>"
+msgstr ""
+
+#: 03080301.xhp#par_id3145090.2.help.text
+msgid "Initializes the random-number generator."
+msgstr ""
+
+#: 03080301.xhp#hd_id3147573.3.help.text
+msgctxt "03080301.xhp#hd_id3147573.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03080301.xhp#par_id3145315.4.help.text
+msgid "Randomize [Number]"
+msgstr ""
+
+#: 03080301.xhp#hd_id3152456.5.help.text
+msgctxt "03080301.xhp#hd_id3152456.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03080301.xhp#par_id3149670.6.help.text
+msgid "<emph>Number:</emph> Any integer value that initializes the random-number generator."
+msgstr ""
+
+#: 03080301.xhp#hd_id3149655.7.help.text
+msgctxt "03080301.xhp#hd_id3149655.7.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03080301.xhp#par_id3151211.8.help.text
+msgid "Sub ExampleRandomize"
+msgstr ""
+
+#: 03080301.xhp#par_id3147229.9.help.text
+msgid "Dim iVar As Integer, sText As String"
+msgstr ""
+
+#: 03080301.xhp#par_id3150870.10.help.text
+msgid "Dim iSpectral(10) As Integer"
+msgstr ""
+
+#: 03080301.xhp#par_id3148673.12.help.text
+msgid "Randomize 2^14-1"
+msgstr ""
+
+#: 03080301.xhp#par_id3156423.13.help.text
+msgid "For iCount = 1 To 1000"
+msgstr ""
+
+#: 03080301.xhp#par_id3147288.14.help.text
+msgid "iVar = Int((10 * Rnd) ) REM Range from 0 to 9"
+msgstr ""
+
+#: 03080301.xhp#par_id3155132.15.help.text
+msgid "iSpectral(iVar) = iSpectral(iVar) +1"
+msgstr ""
+
+#: 03080301.xhp#par_id3153143.16.help.text
+msgctxt "03080301.xhp#par_id3153143.16.help.text"
+msgid "Next iCount"
+msgstr ""
+
+#: 03080301.xhp#par_id3154011.18.help.text
+msgid "sText = \" | \""
+msgstr ""
+
+#: 03080301.xhp#par_id3151114.19.help.text
+msgctxt "03080301.xhp#par_id3151114.19.help.text"
+msgid "For iCount = 0 To 9"
+msgstr ""
+
+#: 03080301.xhp#par_id3145748.20.help.text
+msgid "sText = sText & iSpectral(iCount) & \" | \""
+msgstr ""
+
+#: 03080301.xhp#par_id3146921.21.help.text
+msgctxt "03080301.xhp#par_id3146921.21.help.text"
+msgid "Next iCount"
+msgstr ""
+
+#: 03080301.xhp#par_id3148617.22.help.text
+msgid "MsgBox sText,0,\"Spectral Distribution\""
+msgstr ""
+
+#: 03080301.xhp#par_id3152941.23.help.text
+msgctxt "03080301.xhp#par_id3152941.23.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03132100.xhp#tit.help.text
+msgid "GetGuiType Function [Runtime]"
+msgstr ""
+
+#: 03132100.xhp#bm_id3147143.help.text
+msgid "<bookmark_value>GetGuiType function</bookmark_value>"
+msgstr ""
+
+#: 03132100.xhp#hd_id3155310.1.help.text
+msgid "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function [Runtime]\">GetGuiType Function [Runtime]</link>"
+msgstr ""
+
+#: 03132100.xhp#par_id3152459.2.help.text
+msgid "Returns a numerical value that specifies the graphical user interface."
+msgstr ""
+
+#: 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 ""
+
+#: 03132100.xhp#hd_id3154894.4.help.text
+msgctxt "03132100.xhp#hd_id3154894.4.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03132100.xhp#par_id3147143.5.help.text
+msgid "GetGUIType()"
+msgstr ""
+
+#: 03132100.xhp#hd_id3149346.6.help.text
+msgctxt "03132100.xhp#hd_id3149346.6.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03132100.xhp#par_id3153748.7.help.text
+msgctxt "03132100.xhp#par_id3153748.7.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03132100.xhp#hd_id3149177.8.help.text
+msgid "Return values:"
+msgstr ""
+
+#: 03132100.xhp#par_id3147242.9.help.text
+msgid "1: Windows"
+msgstr ""
+
+#: 03132100.xhp#par_id3156152.11.help.text
+msgid "4: UNIX"
+msgstr ""
+
+#: 03132100.xhp#hd_id3148685.12.help.text
+msgctxt "03132100.xhp#hd_id3148685.12.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03132100.xhp#par_id3149233.13.help.text
+msgid "Sub ExampleEnvironment"
+msgstr ""
+
+#: 03132100.xhp#par_id3145609.14.help.text
+msgid "MsgBox GetGUIType"
+msgstr ""
+
+#: 03132100.xhp#par_id3145069.15.help.text
+msgctxt "03132100.xhp#par_id3145069.15.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03020103.xhp#tit.help.text
+msgid "Open Statement[Runtime]"
+msgstr ""
+
+#: 03020103.xhp#bm_id3150791.help.text
+msgid "<bookmark_value>Open statement</bookmark_value>"
+msgstr ""
+
+#: 03020103.xhp#hd_id3150791.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open Statement[Runtime]\">Open Statement[Runtime]</link>"
+msgstr ""
+
+#: 03020103.xhp#par_id3150769.2.help.text
+msgid "Opens a data channel."
+msgstr ""
+
+#: 03020103.xhp#hd_id3147230.3.help.text
+msgctxt "03020103.xhp#hd_id3147230.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020103.xhp#par_id3154124.4.help.text
+msgid "Open FileName As String [For Mode] [Access IOMode] [Protected] As [#]FileNumber As Integer [Len = DatasetLength]"
+msgstr ""
+
+#: 03020103.xhp#hd_id3156280.5.help.text
+msgctxt "03020103.xhp#hd_id3156280.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020103.xhp#par_id3151115.11.help.text
+msgid "<emph>DatasetLength:</emph> For random access files, set the length of the records."
+msgstr ""
+
+#: 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 ""
+
+#: 03020103.xhp#hd_id3149123.13.help.text
+msgctxt "03020103.xhp#hd_id3149123.13.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020103.xhp#par_id3150749.14.help.text
+msgctxt "03020103.xhp#par_id3150749.14.help.text"
+msgid "Sub ExampleWorkWithAFile"
+msgstr ""
+
+#: 03020103.xhp#par_id3155064.15.help.text
+msgctxt "03020103.xhp#par_id3155064.15.help.text"
+msgid "Dim iNumber As Integer"
+msgstr ""
+
+#: 03020103.xhp#par_id3154754.16.help.text
+msgctxt "03020103.xhp#par_id3154754.16.help.text"
+msgid "Dim sLine As String"
+msgstr ""
+
+#: 03020103.xhp#par_id3153711.17.help.text
+msgctxt "03020103.xhp#par_id3153711.17.help.text"
+msgid "Dim aFile As String"
+msgstr ""
+
+#: 03020103.xhp#par_id3155764.40.help.text
+msgctxt "03020103.xhp#par_id3155764.40.help.text"
+msgid "Dim sMsg as String"
+msgstr ""
+
+#: 03020103.xhp#par_id3159264.18.help.text
+msgctxt "03020103.xhp#par_id3159264.18.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr ""
+
+#: 03020103.xhp#par_id3153963.20.help.text
+msgctxt "03020103.xhp#par_id3153963.20.help.text"
+msgid "iNumber = Freefile"
+msgstr ""
+
+#: 03020103.xhp#par_id3155959.21.help.text
+msgctxt "03020103.xhp#par_id3155959.21.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020103.xhp#par_id3150942.24.help.text
+msgctxt "03020103.xhp#par_id3150942.24.help.text"
+msgid "Close #iNumber"
+msgstr ""
+
+#: 03020103.xhp#par_id3150300.28.help.text
+msgctxt "03020103.xhp#par_id3150300.28.help.text"
+msgid "iNumber = Freefile"
+msgstr ""
+
+#: 03020103.xhp#par_id3154022.29.help.text
+msgctxt "03020103.xhp#par_id3154022.29.help.text"
+msgid "Open aFile For Input As iNumber"
+msgstr ""
+
+#: 03020103.xhp#par_id3150783.30.help.text
+msgctxt "03020103.xhp#par_id3150783.30.help.text"
+msgid "While not eof(iNumber)"
+msgstr ""
+
+#: 03020103.xhp#par_id3153270.31.help.text
+msgctxt "03020103.xhp#par_id3153270.31.help.text"
+msgid "Line Input #iNumber, sLine"
+msgstr ""
+
+#: 03020103.xhp#par_id3153784.32.help.text
+msgctxt "03020103.xhp#par_id3153784.32.help.text"
+msgid "If sLine <>\"\" then"
+msgstr ""
+
+#: 03020103.xhp#par_id3149208.33.help.text
+msgctxt "03020103.xhp#par_id3149208.33.help.text"
+msgid "sMsg = sMsg & sLine & chr(13)"
+msgstr ""
+
+#: 03020103.xhp#par_id3150304.35.help.text
+msgctxt "03020103.xhp#par_id3150304.35.help.text"
+msgid "end if"
+msgstr ""
+
+#: 03020103.xhp#par_id3151217.36.help.text
+msgctxt "03020103.xhp#par_id3151217.36.help.text"
+msgid "wend"
+msgstr ""
+
+#: 03020103.xhp#par_id3152582.37.help.text
+msgctxt "03020103.xhp#par_id3152582.37.help.text"
+msgid "Close #iNumber"
+msgstr ""
+
+#: 03020103.xhp#par_id3159100.41.help.text
+msgctxt "03020103.xhp#par_id3159100.41.help.text"
+msgid "Msgbox sMsg"
+msgstr ""
+
+#: 03020103.xhp#par_id3159091.38.help.text
+msgctxt "03020103.xhp#par_id3159091.38.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03090200.xhp#tit.help.text
+msgid "Loops"
+msgstr ""
+
+#: 03090200.xhp#hd_id3153990.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Loops\">Loops</link>"
+msgstr ""
+
+#: 03090200.xhp#par_id3147226.2.help.text
+msgid "The following statements execute loops."
+msgstr ""
+
+#: 03080200.xhp#tit.help.text
+msgid "Exponential and Logarithmic Functions"
+msgstr ""
+
+#: 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 ""
+
+#: 03080200.xhp#par_id3148550.2.help.text
+msgid "$[officename] Basic supports the following exponential and logarithmic functions."
+msgstr ""
+
+#: 01050000.xhp#tit.help.text
+msgid "$[officename] Basic IDE"
+msgstr ""
+
+#: 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 ""
+
+#: 01050000.xhp#par_id3153142.2.help.text
+msgid "This section describes the structure of the Basic IDE."
+msgstr ""
+
+#: 01050000.xhp#par_idN105C9.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Basic IDE where you can write and edit macros.</ahelp>"
+msgstr ""
+
+#: 01050000.xhp#hd_id3153188.5.help.text
+msgid "Commands From the Context menu of the Module Tabs"
+msgstr ""
+
+#: 01050000.xhp#hd_id3154731.6.help.text
+#, fuzzy
+msgid "Insert"
+msgstr ""
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставка\n"
+"#-#-#-#-# 04.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Insert"
+
+#: 01050000.xhp#hd_id3151074.8.help.text
+msgid "Module"
+msgstr ""
+
+#: 01050000.xhp#par_id3149581.9.help.text
+msgid "<ahelp hid=\".uno:NewModule\">Inserts a new module into the current library.</ahelp>"
+msgstr ""
+
+#: 01050000.xhp#hd_id3147397.10.help.text
+msgid "Dialog"
+msgstr ""
+
+#: 01050000.xhp#par_id3144335.11.help.text
+msgid "<ahelp hid=\".uno:NewDialog\">Inserts a new dialog into the current library.</ahelp>"
+msgstr ""
+
+#: 01050000.xhp#hd_id3155602.12.help.text
+msgctxt "01050000.xhp#hd_id3155602.12.help.text"
+msgid "Delete"
+msgstr ""
+
+#: 01050000.xhp#par_id3155064.13.help.text
+msgid "<ahelp hid=\".uno:DeleteCurrent\">Deletes the selected module.</ahelp>"
+msgstr ""
+
+#: 01050000.xhp#hd_id3149018.14.help.text
+msgid "Rename"
+msgstr ""
+
+#: 01050000.xhp#par_id3154754.15.help.text
+msgid "<ahelp hid=\".uno:RenameCurrent\">Renames the current module in place.</ahelp>"
+msgstr ""
+
+#: 01050000.xhp#hd_id3150043.16.help.text
+msgid "Hide"
+msgstr ""
+
+#: 01050000.xhp#par_id3145147.17.help.text
+msgid "<ahelp hid=\".uno:HideCurPage\">Hides the current module.</ahelp>"
+msgstr ""
+
+#: 01050000.xhp#hd_id3163805.18.help.text
+msgctxt "01050000.xhp#hd_id3163805.18.help.text"
+msgid "Modules"
+msgstr ""
+
+#: 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 ""
+
+#: 03132000.xhp#tit.help.text
+msgid "CreateUnoListener Function [Runtime]"
+msgstr ""
+
+#: 03132000.xhp#bm_id3155150.help.text
+msgid "<bookmark_value>CreateUnoListener function</bookmark_value>"
+msgstr ""
+
+#: 03132000.xhp#hd_id3155150.53.help.text
+msgid "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"CreateUnoListener Function [Runtime]\">CreateUnoListener Function [Runtime]</link>"
+msgstr ""
+
+#: 03132000.xhp#par_id3149346.52.help.text
+msgid "Creates a Listener instance."
+msgstr ""
+
+#: 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 ""
+
+#: 03132000.xhp#hd_id3148685.50.help.text
+msgctxt "03132000.xhp#hd_id3148685.50.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03132000.xhp#par_id3143228.49.help.text
+msgid "oListener = CreateUnoListener( Prefixname, ListenerInterfaceName )"
+msgstr ""
+
+#: 03132000.xhp#hd_id3147574.48.help.text
+msgctxt "03132000.xhp#hd_id3147574.48.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03132000.xhp#par_id3154046.47.help.text
+msgid "The following example is based on a Basic library object."
+msgstr ""
+
+#: 03132000.xhp#par_id3155136.46.help.text
+msgid "Dim oListener"
+msgstr ""
+
+#: 03132000.xhp#par_id3148944.45.help.text
+msgid "oListener = CreateUnoListener( \"ContListener_\",\"com.sun.star.container.XContainerListener\" )"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03132000.xhp#par_id3154164.42.help.text
+msgid "Dim oLib"
+msgstr ""
+
+#: 03132000.xhp#par_id3154940.41.help.text
+msgid "oLib = BasicLibraries.Library1 ' Library1 must exist!"
+msgstr ""
+
+#: 03132000.xhp#par_id3150359.40.help.text
+msgid "oLib.addContainerListener( oListener ) ' Register the listener"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03132000.xhp#par_id3150768.37.help.text
+msgid "In this example, the Listener-Interface uses the following methods:"
+msgstr ""
+
+#: 03132000.xhp#par_id3151176.36.help.text
+msgid "disposing:"
+msgstr ""
+
+#: 03132000.xhp#par_id3145173.35.help.text
+msgid "Listener base interface (com.sun.star.lang.XEventListener): base interface for all Listener Interfaces"
+msgstr ""
+
+#: 03132000.xhp#par_id3156212.34.help.text
+msgid "elementInserted:"
+msgstr ""
+
+#: 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 ""
+
+#: 03132000.xhp#par_id3147287.32.help.text
+msgid "elementRemoved:"
+msgstr ""
+
+#: 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 ""
+
+#: 03132000.xhp#par_id3153951.30.help.text
+msgid "elementReplaced:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03132000.xhp#par_id3155411.27.help.text
+msgid "ContListener_disposing"
+msgstr ""
+
+#: 03132000.xhp#par_id3146923.26.help.text
+msgid "ContListener_elementInserted"
+msgstr ""
+
+#: 03132000.xhp#par_id3147318.25.help.text
+msgid "ContListener_elementRemoved"
+msgstr ""
+
+#: 03132000.xhp#par_id3152578.24.help.text
+msgid "ContListener_elementReplaced"
+msgstr ""
+
+#: 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 ""
+
+#: 03132000.xhp#par_id3149582.22.help.text
+msgid "Sub ContListener_disposing( oEvent )"
+msgstr ""
+
+#: 03132000.xhp#par_id3153876.21.help.text
+msgid "MsgBox \"disposing\""
+msgstr ""
+
+#: 03132000.xhp#par_id3149959.20.help.text
+msgctxt "03132000.xhp#par_id3149959.20.help.text"
+msgid "MsgBox oEvent.Dbg_Properties"
+msgstr ""
+
+#: 03132000.xhp#par_id3154490.19.help.text
+msgctxt "03132000.xhp#par_id3154490.19.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03132000.xhp#par_id3156285.18.help.text
+msgid "Sub ContListener_elementInserted( oEvent )"
+msgstr ""
+
+#: 03132000.xhp#par_id3154098.17.help.text
+msgid "MsgBox \"elementInserted\""
+msgstr ""
+
+#: 03132000.xhp#par_id3155601.16.help.text
+msgctxt "03132000.xhp#par_id3155601.16.help.text"
+msgid "MsgBox oEvent.Dbg_Properties"
+msgstr ""
+
+#: 03132000.xhp#par_id3153415.15.help.text
+msgctxt "03132000.xhp#par_id3153415.15.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03132000.xhp#par_id3154272.14.help.text
+msgid "Sub ContListener_elementRemoved( oEvent )"
+msgstr ""
+
+#: 03132000.xhp#par_id3153947.13.help.text
+msgid "MsgBox \"elementRemoved\""
+msgstr ""
+
+#: 03132000.xhp#par_id3146914.12.help.text
+msgctxt "03132000.xhp#par_id3146914.12.help.text"
+msgid "MsgBox oEvent.Dbg_Properties"
+msgstr ""
+
+#: 03132000.xhp#par_id3150749.11.help.text
+msgctxt "03132000.xhp#par_id3150749.11.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03132000.xhp#par_id3145642.10.help.text
+msgid "Sub ContListener_elementReplaced( oEvent )"
+msgstr ""
+
+#: 03132000.xhp#par_id3148915.9.help.text
+msgid "MsgBox \"elementReplaced\""
+msgstr ""
+
+#: 03132000.xhp#par_id3148995.8.help.text
+msgctxt "03132000.xhp#par_id3148995.8.help.text"
+msgid "MsgBox oEvent.Dbg_Properties"
+msgstr ""
+
+#: 03132000.xhp#par_id3148407.7.help.text
+msgctxt "03132000.xhp#par_id3148407.7.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 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 ""
+
+#: 03132000.xhp#par_id3150042.5.help.text
+msgid "' Minimal implementation of Sub disposing"
+msgstr ""
+
+#: 03132000.xhp#par_id3151249.4.help.text
+msgid "Sub ContListener_disposing"
+msgstr ""
+
+#: 03132000.xhp#par_id3155333.3.help.text
+msgctxt "03132000.xhp#par_id3155333.3.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03132000.xhp#par_id3150940.2.help.text
+msgid "Listener methods must <emph>always</emph> be implemented to avoid Basic run-time errors."
+msgstr ""
+
+#: 01020000.xhp#tit.help.text
+msgctxt "01020000.xhp#tit.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 01020000.xhp#hd_id3148946.1.help.text
+msgid "<link href=\"text/sbasic/shared/01020000.xhp\" name=\"Syntax\">Syntax</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03030204.xhp#tit.help.text
+msgid "Second Function [Runtime]"
+msgstr ""
+
+#: 03030204.xhp#bm_id3153346.help.text
+msgid "<bookmark_value>Second function</bookmark_value>"
+msgstr ""
+
+#: 03030204.xhp#hd_id3153346.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second Function [Runtime]\">Second Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03030204.xhp#hd_id3147264.3.help.text
+msgctxt "03030204.xhp#hd_id3147264.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03030204.xhp#par_id3146795.4.help.text
+msgid "Second (Number)"
+msgstr ""
+
+#: 03030204.xhp#hd_id3150792.5.help.text
+msgctxt "03030204.xhp#hd_id3150792.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03030204.xhp#par_id3154140.6.help.text
+msgctxt "03030204.xhp#par_id3154140.6.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03030204.xhp#hd_id3156280.7.help.text
+msgctxt "03030204.xhp#hd_id3156280.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03030204.xhp#par_id3153951.10.help.text
+msgid "Print Second(TimeSerial(12,30,41))"
+msgstr ""
+
+#: 03030204.xhp#par_id3151117.11.help.text
+msgid "returns the value 41."
+msgstr ""
+
+#: 03030204.xhp#hd_id3147426.12.help.text
+msgctxt "03030204.xhp#hd_id3147426.12.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03030204.xhp#par_id3154012.13.help.text
+msgid "Sub ExampleSecond"
+msgstr ""
+
+#: 03030204.xhp#par_id3156441.14.help.text
+msgid "MsgBox \"The exact second of the current time is \"& Second( Now )"
+msgstr ""
+
+#: 03030204.xhp#par_id3151112.15.help.text
+msgctxt "03030204.xhp#par_id3151112.15.help.text"
+msgid "End sub"
+msgstr ""
+
+#: 03103200.xhp#tit.help.text
+msgid "Option Base Statement [Runtime]"
+msgstr ""
+
+#: 03103200.xhp#bm_id3155805.help.text
+msgid "<bookmark_value>Option Base statement</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 03103200.xhp#par_id3147242.2.help.text
+msgid "Defines the default lower boundary for arrays as 0 or 1."
+msgstr ""
+
+#: 03103200.xhp#hd_id3150771.3.help.text
+msgctxt "03103200.xhp#hd_id3150771.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03103200.xhp#par_id3147573.4.help.text
+msgid "Option Base { 0 | 1}"
+msgstr ""
+
+#: 03103200.xhp#hd_id3145315.5.help.text
+msgctxt "03103200.xhp#hd_id3145315.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03103200.xhp#hd_id3150870.7.help.text
+msgctxt "03103200.xhp#hd_id3150870.7.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03103200.xhp#par_id3152921.8.help.text
+msgid "option Base 1"
+msgstr ""
+
+#: 03103200.xhp#par_id3153192.10.help.text
+msgid "Sub ExampleOptionBase"
+msgstr ""
+
+#: 03103200.xhp#par_id3149561.11.help.text
+msgid "Dim sVar(20) As String"
+msgstr ""
+
+#: 03103200.xhp#par_id3153770.12.help.text
+msgid "msgbox LBound(sVar())"
+msgstr ""
+
+#: 03103200.xhp#par_id3159153.13.help.text
+msgctxt "03103200.xhp#par_id3159153.13.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 01040000.xhp#tit.help.text
+msgid "Event-Driven Macros"
+msgstr ""
+
+#: 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 ""
+
+#: 01040000.xhp#hd_id3147348.1.help.text
+msgid "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Event-Driven Macros\">Event-Driven Macros</link>"
+msgstr ""
+
+#: 01040000.xhp#par_id3146120.2.help.text
+msgid "This section describes how to assign Basic programs to program events."
+msgstr ""
+
+#: 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 ""
+
+#: 01040000.xhp#par_id3148455.5.help.text
+msgctxt "01040000.xhp#par_id3148455.5.help.text"
+msgid "Event"
+msgstr ""
+
+#: 01040000.xhp#par_id3145799.6.help.text
+msgid "An assigned macro is executed..."
+msgstr ""
+
+#: 01040000.xhp#par_id3149379.7.help.text
+msgid "Program Start"
+msgstr ""
+
+#: 01040000.xhp#par_id3150715.8.help.text
+msgid "... after a $[officename] application is started."
+msgstr ""
+
+#: 01040000.xhp#par_id3146914.9.help.text
+msgid "Program End"
+msgstr ""
+
+#: 01040000.xhp#par_id3153765.10.help.text
+msgid "...before a $[officename] application is terminated."
+msgstr ""
+
+#: 01040000.xhp#par_id3145150.11.help.text
+msgid "Create Document"
+msgstr ""
+
+#: 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 ""
+
+#: 01040000.xhp#par_id3145790.13.help.text
+msgid "Open Document"
+msgstr ""
+
+#: 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 ""
+
+#: 01040000.xhp#par_id3153266.15.help.text
+msgid "Save Document As"
+msgstr ""
+
+#: 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 ""
+
+#: 01040000.xhp#par_id3158215.43.help.text
+msgid "Document has been saved as"
+msgstr ""
+
+#: 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 ""
+
+#: 01040000.xhp#par_id3150519.17.help.text
+msgid "Save Document"
+msgstr ""
+
+#: 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 ""
+
+#: 01040000.xhp#par_id3149404.45.help.text
+msgid "Document has been saved"
+msgstr ""
+
+#: 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 ""
+
+#: 01040000.xhp#par_id3159171.19.help.text
+msgid "Document is closing"
+msgstr ""
+
+#: 01040000.xhp#par_id3146868.20.help.text
+msgid "...before a document is closed."
+msgstr ""
+
+#: 01040000.xhp#par_id3159097.47.help.text
+msgid "Document closed"
+msgstr ""
+
+#: 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 ""
+
+#: 01040000.xhp#par_id3144772.21.help.text
+msgid "Activate Document"
+msgstr ""
+
+#: 01040000.xhp#par_id3149442.22.help.text
+msgid "...after a document is brought to the foreground."
+msgstr ""
+
+#: 01040000.xhp#par_id3150888.23.help.text
+msgid "Deactivate Document"
+msgstr ""
+
+#: 01040000.xhp#par_id3154060.24.help.text
+msgid "...after another document is brought to the foreground."
+msgstr ""
+
+#: 01040000.xhp#par_id3152384.25.help.text
+msgid "Print Document"
+msgstr ""
+
+#: 01040000.xhp#par_id3152873.26.help.text
+msgid "...after the <emph>Print</emph> dialog is closed, but before the actual print process begins."
+msgstr ""
+
+#: 01040000.xhp#par_id3159227.49.help.text
+msgid "JavaScript run-time error"
+msgstr ""
+
+#: 01040000.xhp#par_id3145362.50.help.text
+msgid "...when a JavaScript run-time error occurs."
+msgstr ""
+
+#: 01040000.xhp#par_id3154767.27.help.text
+msgid "Print Mail Merge"
+msgstr ""
+
+#: 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 ""
+
+#: 01040000.xhp#par_id3156366.51.help.text
+msgid "Change of the page count"
+msgstr ""
+
+#: 01040000.xhp#par_id3154627.52.help.text
+msgid "...when the page count changes."
+msgstr ""
+
+#: 01040000.xhp#par_id3154737.53.help.text
+msgid "Message received"
+msgstr ""
+
+#: 01040000.xhp#par_id3150952.54.help.text
+msgid "...if a message was received."
+msgstr ""
+
+#: 01040000.xhp#hd_id3153299.30.help.text
+msgid "Assigning a Macro to an Event"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01040000.xhp#par_id3150431.32.help.text
+msgid "Select the event from the <emph>Event</emph> list."
+msgstr ""
+
+#: 01040000.xhp#par_id3148742.33.help.text
+msgid "Click <emph>Macro</emph> and select the macro to be assigned to the selected event."
+msgstr ""
+
+#: 01040000.xhp#par_id3146321.35.help.text
+msgid "Click <emph>OK</emph> to assign the macro."
+msgstr "Натисніть <emph>Гаразд</emph>, щоб призначити макрос."
+
+#: 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 "Натисніть <emph>Гаразд</emph>, щоб закрити діалог."
+
+#: 01040000.xhp#hd_id3154581.36.help.text
+msgid "Removing the Assignment of a Macro to an Event"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01040000.xhp#par_id3149143.37.help.text
+msgid "Click <emph>Remove</emph>."
+msgstr "Натисніть <emph>Гаразд</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 "Натисніть <emph>Гаразд</emph>, щоб закрити діалог."
+
+#: 03060600.xhp#tit.help.text
+msgid "Xor-Operator [Runtime]"
+msgstr ""
+
+#: 03060600.xhp#bm_id3156024.help.text
+msgid "<bookmark_value>Xor operator (logical)</bookmark_value>"
+msgstr ""
+
+#: 03060600.xhp#hd_id3156024.1.help.text
+msgid "<link href=\"text/sbasic/shared/03060600.xhp\" name=\"Xor-Operator [Runtime]\">Xor-Operator [Runtime]</link>"
+msgstr ""
+
+#: 03060600.xhp#par_id3159414.2.help.text
+msgid "Performs a logical Exclusive-Or combination of two expressions."
+msgstr ""
+
+#: 03060600.xhp#hd_id3153381.3.help.text
+msgctxt "03060600.xhp#hd_id3153381.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03060600.xhp#par_id3150400.4.help.text
+msgid "Result = Expression1 Xor Expression2"
+msgstr ""
+
+#: 03060600.xhp#hd_id3153968.5.help.text
+msgctxt "03060600.xhp#hd_id3153968.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03060600.xhp#par_id3150448.6.help.text
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the combination."
+msgstr ""
+
+#: 03060600.xhp#par_id3125864.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to combine."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03060600.xhp#hd_id3153366.10.help.text
+msgctxt "03060600.xhp#hd_id3153366.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03060600.xhp#par_id3159154.11.help.text
+msgid "Sub ExampleXor"
+msgstr ""
+
+#: 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 ""
+
+#: 03060600.xhp#par_id3155856.13.help.text
+msgctxt "03060600.xhp#par_id3155856.13.help.text"
+msgid "Dim vOut as Variant"
+msgstr ""
+
+#: 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 ""
+
+#: 03060600.xhp#par_id3156442.15.help.text
+msgid "vOut = vA > vB Xor vB > vC REM returns 0"
+msgstr ""
+
+#: 03060600.xhp#par_id3153191.16.help.text
+msgid "vOut = vB > vA Xor vB > vC REM returns -1"
+msgstr ""
+
+#: 03060600.xhp#par_id3153144.17.help.text
+msgid "vOut = vA > vB Xor vB > vD REM returns -1"
+msgstr ""
+
+#: 03060600.xhp#par_id3154944.18.help.text
+msgid "vOut = (vB > vD Xor vB > vA) REM returns 0"
+msgstr ""
+
+#: 03060600.xhp#par_id3148455.19.help.text
+msgid "vOut = vB Xor vA REM returns 2"
+msgstr ""
+
+#: 03060600.xhp#par_id3156283.20.help.text
+msgctxt "03060600.xhp#par_id3156283.20.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03100050.xhp#tit.help.text
+msgid "CCur Function [Runtime]"
+msgstr ""
+
+#: 03100050.xhp#bm_id8926053.help.text
+msgid "<bookmark_value>CCur function</bookmark_value>"
+msgstr ""
+
+#: 03100050.xhp#par_idN10541.help.text
+msgid "<link href=\"text/sbasic/shared/03100050.xhp\">CCur Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03100050.xhp#par_idN10548.help.text
+msgctxt "03100050.xhp#par_idN10548.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03100050.xhp#par_idN105E8.help.text
+msgid "CCur(Expression)"
+msgstr ""
+
+#: 03100050.xhp#par_idN105EB.help.text
+msgctxt "03100050.xhp#par_idN105EB.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03100050.xhp#par_idN105EF.help.text
+msgid "Currency"
+msgstr ""
+
+#: 03100050.xhp#par_idN105F2.help.text
+msgctxt "03100050.xhp#par_idN105F2.help.text"
+msgid "Parameter:"
+msgstr ""
+
+#: 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 ""
+
+#: 03020303.xhp#tit.help.text
+msgid "Lof Function [Runtime]"
+msgstr ""
+
+#: 03020303.xhp#bm_id3156024.help.text
+msgid "<bookmark_value>Lof function</bookmark_value>"
+msgstr ""
+
+#: 03020303.xhp#hd_id3156024.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Lof Function [Runtime]\">Lof Function [Runtime]</link>"
+msgstr ""
+
+#: 03020303.xhp#par_id3146794.2.help.text
+msgid "Returns the size of an open file in bytes."
+msgstr ""
+
+#: 03020303.xhp#hd_id3153380.3.help.text
+msgctxt "03020303.xhp#hd_id3153380.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020303.xhp#par_id3150359.4.help.text
+msgid "Lof (FileNumber)"
+msgstr ""
+
+#: 03020303.xhp#hd_id3154141.5.help.text
+msgctxt "03020303.xhp#hd_id3154141.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03020303.xhp#par_id3147230.6.help.text
+msgctxt "03020303.xhp#par_id3147230.6.help.text"
+msgid "Long"
+msgstr ""
+
+#: 03020303.xhp#hd_id3156281.7.help.text
+msgctxt "03020303.xhp#hd_id3156281.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020303.xhp#hd_id3155415.10.help.text
+msgctxt "03020303.xhp#hd_id3155415.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020303.xhp#par_id3151074.11.help.text
+msgctxt "03020303.xhp#par_id3151074.11.help.text"
+msgid "Sub ExampleRandomAccess"
+msgstr ""
+
+#: 03020303.xhp#par_id3145251.12.help.text
+msgctxt "03020303.xhp#par_id3145251.12.help.text"
+msgid "Dim iNumber As Integer"
+msgstr ""
+
+#: 03020303.xhp#par_id3154730.13.help.text
+msgid "Dim sText As Variant REM must be a Variant"
+msgstr ""
+
+#: 03020303.xhp#par_id3145646.14.help.text
+msgctxt "03020303.xhp#par_id3145646.14.help.text"
+msgid "Dim aFile As String"
+msgstr ""
+
+#: 03020303.xhp#par_id3153157.15.help.text
+msgctxt "03020303.xhp#par_id3153157.15.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr ""
+
+#: 03020303.xhp#par_id3149403.17.help.text
+msgctxt "03020303.xhp#par_id3149403.17.help.text"
+msgid "iNumber = Freefile"
+msgstr ""
+
+#: 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 ""
+
+#: 03020303.xhp#par_id3156276.19.help.text
+msgid "Seek #iNumber,1 REM Position at start"
+msgstr ""
+
+#: 03020303.xhp#par_id3148405.20.help.text
+msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020303.xhp#par_id3156383.23.help.text
+msgctxt "03020303.xhp#par_id3156383.23.help.text"
+msgid "Seek #iNumber,2"
+msgstr ""
+
+#: 03020303.xhp#par_id3155333.24.help.text
+msgctxt "03020303.xhp#par_id3155333.24.help.text"
+msgid "Get #iNumber,,sText"
+msgstr ""
+
+#: 03020303.xhp#par_id3149255.25.help.text
+msgctxt "03020303.xhp#par_id3149255.25.help.text"
+msgid "Print sText"
+msgstr ""
+
+#: 03020303.xhp#par_id3154702.26.help.text
+msgctxt "03020303.xhp#par_id3154702.26.help.text"
+msgid "Close #iNumber"
+msgstr ""
+
+#: 03020303.xhp#par_id3153965.28.help.text
+msgctxt "03020303.xhp#par_id3153965.28.help.text"
+msgid "iNumber = Freefile"
+msgstr ""
+
+#: 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 ""
+
+#: 03020303.xhp#par_id3155607.30.help.text
+msgctxt "03020303.xhp#par_id3155607.30.help.text"
+msgid "Get #iNumber,2,sText"
+msgstr ""
+
+#: 03020303.xhp#par_id3150299.31.help.text
+msgid "Put #iNumber,,\"This is a new line of text\""
+msgstr ""
+
+#: 03020303.xhp#par_id3147002.32.help.text
+msgctxt "03020303.xhp#par_id3147002.32.help.text"
+msgid "Get #iNumber,1,sText"
+msgstr ""
+
+#: 03020303.xhp#par_id3149036.33.help.text
+msgctxt "03020303.xhp#par_id3149036.33.help.text"
+msgid "Get #iNumber,2,sText"
+msgstr ""
+
+#: 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 ""
+
+#: 03020303.xhp#par_id3149817.35.help.text
+msgctxt "03020303.xhp#par_id3149817.35.help.text"
+msgid "Print Lof(#iNumber)"
+msgstr ""
+
+#: 03020303.xhp#par_id3146811.36.help.text
+msgctxt "03020303.xhp#par_id3146811.36.help.text"
+msgid "Close #iNumber"
+msgstr ""
+
+#: 03020303.xhp#par_id3154200.38.help.text
+msgctxt "03020303.xhp#par_id3154200.38.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03120304.xhp#tit.help.text
+msgid "LSet Statement [Runtime]"
+msgstr ""
+
+#: 03120304.xhp#bm_id3143268.help.text
+msgid "<bookmark_value>LSet statement</bookmark_value>"
+msgstr ""
+
+#: 03120304.xhp#hd_id3143268.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120304.xhp\" name=\"LSet Statement [Runtime]\">LSet Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03120304.xhp#hd_id3145317.3.help.text
+msgctxt "03120304.xhp#hd_id3145317.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03120304.xhp#par_id3150984.4.help.text
+msgid "LSet Var As String = Text or LSet Var1 = Var2"
+msgstr ""
+
+#: 03120304.xhp#hd_id3143271.5.help.text
+msgctxt "03120304.xhp#hd_id3143271.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03120304.xhp#hd_id3156282.11.help.text
+msgctxt "03120304.xhp#hd_id3156282.11.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03120304.xhp#par_id3153193.12.help.text
+msgctxt "03120304.xhp#par_id3153193.12.help.text"
+msgid "Sub ExampleRLSet"
+msgstr ""
+
+#: 03120304.xhp#par_id3150768.13.help.text
+msgctxt "03120304.xhp#par_id3150768.13.help.text"
+msgid "Dim sVar As String"
+msgstr ""
+
+#: 03120304.xhp#par_id3150447.14.help.text
+msgid "Dim sExpr As String"
+msgstr ""
+
+#: 03120304.xhp#par_id3149561.16.help.text
+msgctxt "03120304.xhp#par_id3149561.16.help.text"
+msgid "sVar = String(40,\"*\")"
+msgstr ""
+
+#: 03120304.xhp#par_id3153768.17.help.text
+msgctxt "03120304.xhp#par_id3153768.17.help.text"
+msgid "sExpr = \"SBX\""
+msgstr ""
+
+#: 03120304.xhp#par_id3152940.18.help.text
+msgid "REM Align \"SBX\" within the 40-character reference string"
+msgstr ""
+
+#: 03120304.xhp#par_id3148647.19.help.text
+msgctxt "03120304.xhp#par_id3148647.19.help.text"
+msgid "REM Replace asterisks with spaces"
+msgstr ""
+
+#: 03120304.xhp#par_id3146119.20.help.text
+msgctxt "03120304.xhp#par_id3146119.20.help.text"
+msgid "RSet sVar = sExpr"
+msgstr ""
+
+#: 03120304.xhp#par_id3153365.21.help.text
+msgctxt "03120304.xhp#par_id3153365.21.help.text"
+msgid "Print \">\"; sVar; \"<\""
+msgstr ""
+
+#: 03120304.xhp#par_id3149260.23.help.text
+msgctxt "03120304.xhp#par_id3149260.23.help.text"
+msgid "sVar = String(5,\"*\")"
+msgstr ""
+
+#: 03120304.xhp#par_id3147436.24.help.text
+msgctxt "03120304.xhp#par_id3147436.24.help.text"
+msgid "sExpr = \"123457896\""
+msgstr ""
+
+#: 03120304.xhp#par_id3146923.25.help.text
+msgctxt "03120304.xhp#par_id3146923.25.help.text"
+msgid "RSet sVar = sExpr"
+msgstr ""
+
+#: 03120304.xhp#par_id3151114.26.help.text
+msgctxt "03120304.xhp#par_id3151114.26.help.text"
+msgid "Print \">\"; sVar; \"<\""
+msgstr ""
+
+#: 03120304.xhp#par_id3155855.28.help.text
+msgctxt "03120304.xhp#par_id3155855.28.help.text"
+msgid "sVar = String(40,\"*\")"
+msgstr ""
+
+#: 03120304.xhp#par_id3145253.29.help.text
+msgctxt "03120304.xhp#par_id3145253.29.help.text"
+msgid "sExpr = \"SBX\""
+msgstr ""
+
+#: 03120304.xhp#par_id3151075.30.help.text
+msgid "REM Left-align \"SBX\" within the 40-character reference string"
+msgstr ""
+
+#: 03120304.xhp#par_id3147126.31.help.text
+msgctxt "03120304.xhp#par_id3147126.31.help.text"
+msgid "LSet sVar = sExpr"
+msgstr ""
+
+#: 03120304.xhp#par_id3154792.32.help.text
+msgctxt "03120304.xhp#par_id3154792.32.help.text"
+msgid "Print \">\"; sVar; \"<\""
+msgstr ""
+
+#: 03120304.xhp#par_id3154942.34.help.text
+msgctxt "03120304.xhp#par_id3154942.34.help.text"
+msgid "sVar = String(5,\"*\")"
+msgstr ""
+
+#: 03120304.xhp#par_id3155603.35.help.text
+msgctxt "03120304.xhp#par_id3155603.35.help.text"
+msgid "sExpr = \"123456789\""
+msgstr ""
+
+#: 03120304.xhp#par_id3150716.36.help.text
+msgctxt "03120304.xhp#par_id3150716.36.help.text"
+msgid "LSet sVar = sExpr"
+msgstr ""
+
+#: 03120304.xhp#par_id3146969.37.help.text
+msgctxt "03120304.xhp#par_id3146969.37.help.text"
+msgid "Print \">\"; sVar; \"<\""
+msgstr ""
+
+#: 03120304.xhp#par_id3150749.38.help.text
+msgctxt "03120304.xhp#par_id3150749.38.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03100100.xhp#tit.help.text
+msgid "CBool Function [Runtime]"
+msgstr ""
+
+#: 03100100.xhp#bm_id3150616.help.text
+msgid "<bookmark_value>CBool function</bookmark_value>"
+msgstr ""
+
+#: 03100100.xhp#hd_id3150616.1.help.text
+msgid "<link href=\"text/sbasic/shared/03100100.xhp\" name=\"CBool Function [Runtime]\">CBool Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03100100.xhp#hd_id3153345.3.help.text
+msgctxt "03100100.xhp#hd_id3153345.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03100100.xhp#par_id3149514.4.help.text
+msgid "CBool (Expression1 {= | <> | < | > | <= | >=} Expression2) or CBool (Number)"
+msgstr ""
+
+#: 03100100.xhp#hd_id3156152.5.help.text
+msgctxt "03100100.xhp#hd_id3156152.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03100100.xhp#par_id3155419.6.help.text
+msgctxt "03100100.xhp#par_id3155419.6.help.text"
+msgid "Bool"
+msgstr ""
+
+#: 03100100.xhp#hd_id3147530.7.help.text
+msgctxt "03100100.xhp#hd_id3147530.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03100100.xhp#hd_id3156212.11.help.text
+msgctxt "03100100.xhp#hd_id3156212.11.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03100100.xhp#par_id3147288.12.help.text
+msgid "Sub ExampleCBool"
+msgstr ""
+
+#: 03100100.xhp#par_id3153768.13.help.text
+msgctxt "03100100.xhp#par_id3153768.13.help.text"
+msgid "Dim sText As String"
+msgstr ""
+
+#: 03100100.xhp#par_id3155132.14.help.text
+msgid "sText = InputBox(\"Please enter a short sentence:\")"
+msgstr ""
+
+#: 03100100.xhp#par_id3155855.15.help.text
+msgid "REM Proof if the word »and« appears in the sentence."
+msgstr ""
+
+#: 03100100.xhp#par_id3146984.16.help.text
+msgid "REM Instead of the command line"
+msgstr ""
+
+#: 03100100.xhp#par_id3148576.17.help.text
+msgid "REM If Instr(Input, \"and\")<>0 Then..."
+msgstr ""
+
+#: 03100100.xhp#par_id3154014.18.help.text
+msgid "REM the CBool function is applied as follows:"
+msgstr ""
+
+#: 03100100.xhp#par_id3155413.19.help.text
+msgid "If CBool(Instr(sText, \"and\")) Then"
+msgstr ""
+
+#: 03100100.xhp#par_id3152940.20.help.text
+msgid "MsgBox \"The word »and« appears in the sentence you entered!\""
+msgstr ""
+
+#: 03100100.xhp#par_id3153954.21.help.text
+msgid "EndIf"
+msgstr ""
+
+#: 03100100.xhp#par_id3152886.22.help.text
+msgctxt "03100100.xhp#par_id3152886.22.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03030300.xhp#tit.help.text
+msgid "System Date and Time"
+msgstr ""
+
+#: 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 ""
+
+#: 03030300.xhp#par_id3149457.2.help.text
+msgid "The following functions and statements set or return the system date and time."
+msgstr ""
+
+#: 03120311.xhp#tit.help.text
+msgid "Trim Function [Runtime]"
+msgstr ""
+
+#: 03120311.xhp#bm_id3150616.help.text
+msgid "<bookmark_value>Trim function</bookmark_value>"
+msgstr ""
+
+#: 03120311.xhp#hd_id3150616.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120311.xhp\" name=\"Trim Function [Runtime]\">Trim Function [Runtime]</link>"
+msgstr ""
+
+#: 03120311.xhp#par_id3149177.2.help.text
+msgid "Removes all leading and trailing spaces from a string expression."
+msgstr ""
+
+#: 03120311.xhp#hd_id3159157.3.help.text
+msgctxt "03120311.xhp#hd_id3159157.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03120311.xhp#par_id3155341.4.help.text
+msgid "Trim( Text As String )"
+msgstr ""
+
+#: 03120311.xhp#hd_id3155388.5.help.text
+msgctxt "03120311.xhp#hd_id3155388.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03120311.xhp#par_id3143228.6.help.text
+msgctxt "03120311.xhp#par_id3143228.6.help.text"
+msgid "String"
+msgstr ""
+
+#: 03120311.xhp#hd_id3145609.7.help.text
+msgctxt "03120311.xhp#hd_id3145609.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03120311.xhp#par_id3159414.8.help.text
+msgctxt "03120311.xhp#par_id3159414.8.help.text"
+msgid "<emph>Text:</emph> Any string expression."
+msgstr ""
+
+#: 03120311.xhp#hd_id3148663.10.help.text
+msgctxt "03120311.xhp#hd_id3148663.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03120311.xhp#par_id3150398.11.help.text
+msgctxt "03120311.xhp#par_id3150398.11.help.text"
+msgid "Sub ExampleSpaces"
+msgstr ""
+
+#: 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 ""
+
+#: 03120311.xhp#par_id3154908.13.help.text
+msgctxt "03120311.xhp#par_id3154908.13.help.text"
+msgid "sText2 = \" <*Las Vegas*> \""
+msgstr ""
+
+#: 03120311.xhp#par_id3144760.15.help.text
+msgctxt "03120311.xhp#par_id3144760.15.help.text"
+msgid "sOut = \"'\"+sText2 +\"'\"+ Chr(13)"
+msgstr ""
+
+#: 03120311.xhp#par_id3151383.16.help.text
+msgctxt "03120311.xhp#par_id3151383.16.help.text"
+msgid "sText = Ltrim(sText2) REM sText = \"<*Las Vegas*> \""
+msgstr ""
+
+#: 03120311.xhp#par_id3151044.17.help.text
+msgctxt "03120311.xhp#par_id3151044.17.help.text"
+msgid "sOut = sOut + \"'\"+sText +\"'\" + Chr(13)"
+msgstr ""
+
+#: 03120311.xhp#par_id3159149.18.help.text
+msgctxt "03120311.xhp#par_id3159149.18.help.text"
+msgid "sText = Rtrim(sText2) REM sText = \" <*Las Vegas*>\""
+msgstr ""
+
+#: 03120311.xhp#par_id3150449.19.help.text
+msgctxt "03120311.xhp#par_id3150449.19.help.text"
+msgid "sOut = sOut +\"'\"+ sText +\"'\" + Chr(13)"
+msgstr ""
+
+#: 03120311.xhp#par_id3149562.20.help.text
+msgctxt "03120311.xhp#par_id3149562.20.help.text"
+msgid "sText = Trim(sText2) REM sText = \"<*Las Vegas*>\""
+msgstr ""
+
+#: 03120311.xhp#par_id3161831.21.help.text
+msgctxt "03120311.xhp#par_id3161831.21.help.text"
+msgid "sOut = sOut +\"'\"+ sText +\"'\""
+msgstr ""
+
+#: 03120311.xhp#par_id3146120.22.help.text
+msgctxt "03120311.xhp#par_id3146120.22.help.text"
+msgid "MsgBox sOut"
+msgstr ""
+
+#: 03120311.xhp#par_id3145364.23.help.text
+msgctxt "03120311.xhp#par_id3145364.23.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03010305.xhp#tit.help.text
+msgid "RGB Function [Runtime]"
+msgstr ""
+
+#: 03010305.xhp#hd_id3150792.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB Function [Runtime]\">RGB Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03010305.xhp#hd_id3147229.3.help.text
+msgctxt "03010305.xhp#hd_id3147229.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03010305.xhp#par_id3155132.4.help.text
+msgid "RGB (Red, Green, Blue)"
+msgstr ""
+
+#: 03010305.xhp#hd_id3156442.5.help.text
+msgctxt "03010305.xhp#hd_id3156442.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03010305.xhp#par_id3159153.6.help.text
+msgctxt "03010305.xhp#par_id3159153.6.help.text"
+msgid "Long"
+msgstr ""
+
+#: 03010305.xhp#hd_id3154013.7.help.text
+msgctxt "03010305.xhp#hd_id3154013.7.help.text"
+msgid "Parameter:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03010305.xhp#hd_id3147435.11.help.text
+msgctxt "03010305.xhp#hd_id3147435.11.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03010305.xhp#par_id3156283.12.help.text
+msgctxt "03010305.xhp#par_id3156283.12.help.text"
+msgid "Sub ExampleColor"
+msgstr ""
+
+#: 03010305.xhp#par_id3149582.13.help.text
+msgctxt "03010305.xhp#par_id3149582.13.help.text"
+msgid "Dim lVar As Long"
+msgstr ""
+
+#: 03010305.xhp#par_id3150417.14.help.text
+msgctxt "03010305.xhp#par_id3150417.14.help.text"
+msgid "lVar = rgb(128,0,200)"
+msgstr ""
+
+#: 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 ""
+
+#: 03010305.xhp#par_id3154491.16.help.text
+msgctxt "03010305.xhp#par_id3154491.16.help.text"
+msgid "\"red= \" & red(lVar) & Chr(13)&_"
+msgstr ""
+
+#: 03010305.xhp#par_id3149401.17.help.text
+msgctxt "03010305.xhp#par_id3149401.17.help.text"
+msgid "\"green= \" & green(lVar) & Chr(13)&_"
+msgstr ""
+
+#: 03010305.xhp#par_id3150716.18.help.text
+msgctxt "03010305.xhp#par_id3150716.18.help.text"
+msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr ""
+
+#: 03010305.xhp#par_id3150752.19.help.text
+msgctxt "03010305.xhp#par_id3150752.19.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03101400.xhp#tit.help.text
+msgid "DefDbl Statement [Runtime]"
+msgstr ""
+
+#: 03101400.xhp#bm_id3147242.help.text
+msgid "<bookmark_value>DefDbl statement</bookmark_value>"
+msgstr ""
+
+#: 03101400.xhp#hd_id3147242.1.help.text
+msgid "<link href=\"text/sbasic/shared/03101400.xhp\" name=\"DefDbl Statement [Runtime]\">DefDbl Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03101400.xhp#hd_id3155420.3.help.text
+msgctxt "03101400.xhp#hd_id3155420.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03101400.xhp#par_id3147530.4.help.text
+msgctxt "03101400.xhp#par_id3147530.4.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr ""
+
+#: 03101400.xhp#hd_id3145069.5.help.text
+msgctxt "03101400.xhp#hd_id3145069.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03101400.xhp#par_id3151210.8.help.text
+msgctxt "03101400.xhp#par_id3151210.8.help.text"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr ""
+
+#: 03101400.xhp#par_id3154123.9.help.text
+msgid "<emph>DefDbl:</emph> Double"
+msgstr ""
+
+#: 03101400.xhp#hd_id3153192.10.help.text
+msgctxt "03101400.xhp#hd_id3153192.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03101400.xhp#par_id3156281.12.help.text
+msgctxt "03101400.xhp#par_id3156281.12.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr ""
+
+#: 03101400.xhp#par_id3153970.13.help.text
+msgctxt "03101400.xhp#par_id3153970.13.help.text"
+msgid "DefBool b"
+msgstr ""
+
+#: 03101400.xhp#par_id3149561.14.help.text
+msgctxt "03101400.xhp#par_id3149561.14.help.text"
+msgid "DefDate t"
+msgstr ""
+
+#: 03101400.xhp#par_id3147288.15.help.text
+msgctxt "03101400.xhp#par_id3147288.15.help.text"
+msgid "DefDbL d"
+msgstr ""
+
+#: 03101400.xhp#par_id3150487.16.help.text
+msgctxt "03101400.xhp#par_id3150487.16.help.text"
+msgid "DefInt i"
+msgstr ""
+
+#: 03101400.xhp#par_id3151116.17.help.text
+msgctxt "03101400.xhp#par_id3151116.17.help.text"
+msgid "DefLng l"
+msgstr ""
+
+#: 03101400.xhp#par_id3146922.18.help.text
+msgctxt "03101400.xhp#par_id3146922.18.help.text"
+msgid "DefObj o"
+msgstr ""
+
+#: 03101400.xhp#par_id3146984.19.help.text
+msgctxt "03101400.xhp#par_id3146984.19.help.text"
+msgid "DefVar v"
+msgstr ""
+
+#: 03101400.xhp#par_id3147436.21.help.text
+msgid "Sub ExampleDefDBL"
+msgstr ""
+
+#: 03101400.xhp#par_id3153144.22.help.text
+msgid "dValue=1.23e43 REM dValue is an implicit Double variable type"
+msgstr ""
+
+#: 03101400.xhp#par_id3152941.23.help.text
+msgctxt "03101400.xhp#par_id3152941.23.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03020301.xhp#tit.help.text
+msgid "Eof Function [Runtime]"
+msgstr ""
+
+#: 03020301.xhp#bm_id3154598.help.text
+msgid "<bookmark_value>Eof function</bookmark_value>"
+msgstr ""
+
+#: 03020301.xhp#hd_id3154598.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020301.xhp\" name=\"Eof Function [Runtime]\">Eof Function [Runtime]</link>"
+msgstr ""
+
+#: 03020301.xhp#par_id3147182.2.help.text
+msgid "Determines if the file pointer has reached the end of a file."
+msgstr ""
+
+#: 03020301.xhp#hd_id3149119.3.help.text
+msgctxt "03020301.xhp#hd_id3149119.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020301.xhp#par_id3147399.4.help.text
+msgid "Eof (intexpression As Integer)"
+msgstr ""
+
+#: 03020301.xhp#hd_id3153539.5.help.text
+msgctxt "03020301.xhp#hd_id3153539.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03020301.xhp#par_id3156027.6.help.text
+msgctxt "03020301.xhp#par_id3156027.6.help.text"
+msgid "Bool"
+msgstr ""
+
+#: 03020301.xhp#hd_id3152924.7.help.text
+msgctxt "03020301.xhp#hd_id3152924.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03020301.xhp#par_id3153990.8.help.text
+msgid "<emph>Intexpression:</emph> Any integer expression that evaluates to the number of an open file."
+msgstr ""
+
+#: 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 ""
+
+#: 03020301.xhp#hd_id3154046.10.help.text
+msgctxt "03020301.xhp#hd_id3154046.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020301.xhp#par_id3143270.11.help.text
+msgctxt "03020301.xhp#par_id3143270.11.help.text"
+msgid "Sub ExampleWorkWithAFile"
+msgstr ""
+
+#: 03020301.xhp#par_id3150670.12.help.text
+msgctxt "03020301.xhp#par_id3150670.12.help.text"
+msgid "Dim iNumber As Integer"
+msgstr ""
+
+#: 03020301.xhp#par_id3154143.13.help.text
+msgctxt "03020301.xhp#par_id3154143.13.help.text"
+msgid "Dim sLine As String"
+msgstr ""
+
+#: 03020301.xhp#par_id3148943.14.help.text
+msgctxt "03020301.xhp#par_id3148943.14.help.text"
+msgid "Dim aFile As String"
+msgstr ""
+
+#: 03020301.xhp#par_id3153897.37.help.text
+msgctxt "03020301.xhp#par_id3153897.37.help.text"
+msgid "Dim sMsg as String"
+msgstr ""
+
+#: 03020301.xhp#par_id3156344.15.help.text
+msgctxt "03020301.xhp#par_id3156344.15.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr ""
+
+#: 03020301.xhp#par_id3148663.17.help.text
+msgctxt "03020301.xhp#par_id3148663.17.help.text"
+msgid "iNumber = Freefile"
+msgstr ""
+
+#: 03020301.xhp#par_id3153379.18.help.text
+msgctxt "03020301.xhp#par_id3153379.18.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr ""
+
+#: 03020301.xhp#par_id3153360.19.help.text
+msgctxt "03020301.xhp#par_id3153360.19.help.text"
+msgid "Print #iNumber, \"First line of text\""
+msgstr ""
+
+#: 03020301.xhp#par_id3148797.20.help.text
+msgctxt "03020301.xhp#par_id3148797.20.help.text"
+msgid "Print #iNumber, \"Another line of text\""
+msgstr ""
+
+#: 03020301.xhp#par_id3154684.21.help.text
+msgctxt "03020301.xhp#par_id3154684.21.help.text"
+msgid "Close #iNumber"
+msgstr ""
+
+#: 03020301.xhp#par_id3153104.25.help.text
+msgctxt "03020301.xhp#par_id3153104.25.help.text"
+msgid "iNumber = Freefile"
+msgstr ""
+
+#: 03020301.xhp#par_id3144761.26.help.text
+msgctxt "03020301.xhp#par_id3144761.26.help.text"
+msgid "Open aFile For Input As iNumber"
+msgstr ""
+
+#: 03020301.xhp#par_id3153193.27.help.text
+msgctxt "03020301.xhp#par_id3153193.27.help.text"
+msgid "While not eof(iNumber)"
+msgstr ""
+
+#: 03020301.xhp#par_id3158408.28.help.text
+msgctxt "03020301.xhp#par_id3158408.28.help.text"
+msgid "Line Input #iNumber, sLine"
+msgstr ""
+
+#: 03020301.xhp#par_id3149203.29.help.text
+msgctxt "03020301.xhp#par_id3149203.29.help.text"
+msgid "If sLine <>\"\" then"
+msgstr ""
+
+#: 03020301.xhp#par_id3153770.30.help.text
+msgctxt "03020301.xhp#par_id3153770.30.help.text"
+msgid "sMsg = sMsg & sLine & chr(13)"
+msgstr ""
+
+#: 03020301.xhp#par_id3153367.32.help.text
+msgctxt "03020301.xhp#par_id3153367.32.help.text"
+msgid "end if"
+msgstr ""
+
+#: 03020301.xhp#par_id3147318.33.help.text
+msgctxt "03020301.xhp#par_id3147318.33.help.text"
+msgid "wend"
+msgstr ""
+
+#: 03020301.xhp#par_id3152939.34.help.text
+msgctxt "03020301.xhp#par_id3152939.34.help.text"
+msgid "Close #iNumber"
+msgstr ""
+
+#: 03020301.xhp#par_id3153726.38.help.text
+msgctxt "03020301.xhp#par_id3153726.38.help.text"
+msgid "Msgbox sMsg"
+msgstr ""
+
+#: 03020301.xhp#par_id3153092.35.help.text
+msgctxt "03020301.xhp#par_id3153092.35.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03102300.xhp#tit.help.text
+msgid "IsDate Function [Runtime]"
+msgstr ""
+
+#: 03102300.xhp#bm_id3145090.help.text
+msgid "<bookmark_value>IsDate function</bookmark_value>"
+msgstr ""
+
+#: 03102300.xhp#hd_id3145090.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102300.xhp\" name=\"IsDate Function [Runtime]\">IsDate Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03102300.xhp#hd_id3153824.3.help.text
+msgctxt "03102300.xhp#hd_id3153824.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03102300.xhp#par_id3147573.4.help.text
+msgid "IsDate (Expression)"
+msgstr ""
+
+#: 03102300.xhp#hd_id3143270.5.help.text
+msgctxt "03102300.xhp#hd_id3143270.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03102300.xhp#par_id3147560.6.help.text
+msgctxt "03102300.xhp#par_id3147560.6.help.text"
+msgid "Bool"
+msgstr ""
+
+#: 03102300.xhp#hd_id3148947.7.help.text
+msgctxt "03102300.xhp#hd_id3148947.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03102300.xhp#hd_id3150447.9.help.text
+msgctxt "03102300.xhp#hd_id3150447.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03102300.xhp#par_id3154217.10.help.text
+msgid "Sub ExampleIsDate"
+msgstr ""
+
+#: 03102300.xhp#par_id3153970.11.help.text
+msgid "Dim sDateVar as String"
+msgstr ""
+
+#: 03102300.xhp#par_id3153193.12.help.text
+msgid "sDateVar = \"12.12.1997\""
+msgstr ""
+
+#: 03102300.xhp#par_id3150869.13.help.text
+msgid "print IsDate(sDateVar) REM Returns True"
+msgstr ""
+
+#: 03102300.xhp#par_id3148453.14.help.text
+msgid "sDateVar = \"12121997\""
+msgstr ""
+
+#: 03102300.xhp#par_id3147288.15.help.text
+msgid "print IsDate(sDateVar) REM Returns False"
+msgstr ""
+
+#: 03102300.xhp#par_id3155132.16.help.text
+msgctxt "03102300.xhp#par_id3155132.16.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03030201.xhp#tit.help.text
+msgid "Hour Function [Runtime]"
+msgstr ""
+
+#: 03030201.xhp#bm_id3156042.help.text
+msgid "<bookmark_value>Hour function</bookmark_value>"
+msgstr ""
+
+#: 03030201.xhp#hd_id3156042.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour Function [Runtime]\">Hour Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03030201.xhp#hd_id3147574.3.help.text
+msgctxt "03030201.xhp#hd_id3147574.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03030201.xhp#par_id3147264.4.help.text
+msgid "Hour (Number)"
+msgstr ""
+
+#: 03030201.xhp#hd_id3145069.5.help.text
+msgctxt "03030201.xhp#hd_id3145069.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03030201.xhp#par_id3149670.6.help.text
+msgctxt "03030201.xhp#par_id3149670.6.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03030201.xhp#hd_id3150359.7.help.text
+msgctxt "03030201.xhp#hd_id3150359.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03030201.xhp#par_id3163798.10.help.text
+msgid "Print Hour(TimeSerial(12,30,41))"
+msgstr ""
+
+#: 03030201.xhp#par_id3155132.11.help.text
+msgctxt "03030201.xhp#par_id3155132.11.help.text"
+msgid "returns the value 12."
+msgstr ""
+
+#: 03030201.xhp#hd_id3147348.12.help.text
+msgctxt "03030201.xhp#hd_id3147348.12.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03030201.xhp#par_id3146985.13.help.text
+msgid "Sub ExampleHour"
+msgstr ""
+
+#: 03030201.xhp#par_id3156441.14.help.text
+msgid "Print \"The current hour is \" & Hour( Now )"
+msgstr ""
+
+#: 03030201.xhp#par_id3153145.15.help.text
+msgctxt "03030201.xhp#par_id3153145.15.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03020407.xhp#tit.help.text
+msgid "FileDateTime Function [Runtime]"
+msgstr ""
+
+#: 03020407.xhp#bm_id3153361.help.text
+msgid "<bookmark_value>FileDateTime function</bookmark_value>"
+msgstr ""
+
+#: 03020407.xhp#hd_id3153361.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020407.xhp\" name=\"FileDateTime Function [Runtime]\">FileDateTime Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03020407.xhp#hd_id3154685.3.help.text
+msgctxt "03020407.xhp#hd_id3154685.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020407.xhp#par_id3154124.4.help.text
+msgid "FileDateTime (Text As String)"
+msgstr ""
+
+#: 03020407.xhp#hd_id3150448.5.help.text
+msgctxt "03020407.xhp#hd_id3150448.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020407.xhp#hd_id3146119.8.help.text
+msgctxt "03020407.xhp#hd_id3146119.8.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020407.xhp#par_id3148576.9.help.text
+msgid "Sub ExampleFileDateTime"
+msgstr ""
+
+#: 03020407.xhp#par_id3161831.10.help.text
+msgid "msgbox FileDateTime(\"C:\\autoexec.bat\")"
+msgstr ""
+
+#: 03020407.xhp#par_id3146986.11.help.text
+msgctxt "03020407.xhp#par_id3146986.11.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03030200.xhp#tit.help.text
+msgid "Converting Time Values"
+msgstr ""
+
+#: 03030200.xhp#hd_id3147226.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"Converting Time Values\">Converting Time Values</link>"
+msgstr ""
+
+#: 03030200.xhp#par_id3149415.2.help.text
+msgid "The following functions convert time values to calculable numbers."
+msgstr ""
+
+#: 01010210.xhp#tit.help.text
+msgid "Basics"
+msgstr ""
+
+#: 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 ""
+
+#: 01010210.xhp#hd_id3154927.1.help.text
+msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Basics\">Basics</link>"
+msgstr ""
+
+#: 01010210.xhp#par_id3156023.14.help.text
+msgid "This section provides the fundamentals for working with $[officename] Basic."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01010210.xhp#hd_id3150398.3.help.text
+msgid "What is a Sub?"
+msgstr ""
+
+#: 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 ""
+
+#: 01010210.xhp#par_id3150868.15.help.text
+msgid "DoSomethingWithTheValues(MyFirstValue,MySecondValue)"
+msgstr ""
+
+#: 01010210.xhp#hd_id3156282.5.help.text
+msgid "What is a Function?"
+msgstr ""
+
+#: 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 ""
+
+#: 01010210.xhp#par_id3146985.7.help.text
+msgid "MySecondValue = myFunction(MyFirstValue)"
+msgstr ""
+
+#: 01010210.xhp#hd_id3153364.8.help.text
+msgid "Global and local variables"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01010210.xhp#hd_id3150010.11.help.text
+msgid "Structuring"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03090103.xhp#tit.help.text
+msgid "IIf Statement [Runtime]"
+msgstr ""
+
+#: 03090103.xhp#bm_id3155420.help.text
+msgid "<bookmark_value>IIf statement</bookmark_value>"
+msgstr ""
+
+#: 03090103.xhp#hd_id3155420.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"IIf Statement [Runtime]\">IIf Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03090103.xhp#hd_id3159413.3.help.text
+msgctxt "03090103.xhp#hd_id3159413.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03090103.xhp#par_id3147560.4.help.text
+msgid "IIf (Expression, ExpressionTrue, ExpressionFalse)"
+msgstr ""
+
+#: 03090103.xhp#hd_id3150541.5.help.text
+msgctxt "03090103.xhp#hd_id3150541.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03131800.xhp#tit.help.text
+msgid "CreateUnoDialog Function [Runtime]"
+msgstr ""
+
+#: 03131800.xhp#bm_id3150040.help.text
+msgid "<bookmark_value>CreateUnoDialog function</bookmark_value>"
+msgstr ""
+
+#: 03131800.xhp#hd_id3150040.1.help.text
+msgid "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"CreateUnoDialog Function [Runtime]\">CreateUnoDialog Function [Runtime]</link>"
+msgstr ""
+
+#: 03131800.xhp#par_id3154186.2.help.text
+msgid "Creates a Basic Uno object that represents a Uno dialog control during Basic runtime."
+msgstr ""
+
+#: 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 ""
+
+#: 03131800.xhp#par_id3153681.4.help.text
+msgid "See <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
+msgstr ""
+
+#: 03131800.xhp#hd_id3154286.5.help.text
+msgctxt "03131800.xhp#hd_id3154286.5.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03131800.xhp#par_id3159176.6.help.text
+msgid "CreateUnoDialog( oDlgDesc )"
+msgstr ""
+
+#: 03131800.xhp#hd_id3143270.7.help.text
+msgctxt "03131800.xhp#hd_id3143270.7.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03131800.xhp#par_id3159157.8.help.text
+msgid "' Get dialog description from the dialog library"
+msgstr ""
+
+#: 03131800.xhp#par_id3149234.9.help.text
+msgctxt "03131800.xhp#par_id3149234.9.help.text"
+msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
+msgstr ""
+
+#: 03131800.xhp#par_id3154923.10.help.text
+msgid "' generate \"live\" dialog"
+msgstr ""
+
+#: 03131800.xhp#par_id3149670.11.help.text
+msgid "oDlgControl = CreateUnoDialog( oDlgDesc )"
+msgstr ""
+
+#: 03131800.xhp#par_id3148550.12.help.text
+msgid "' display \"live\" dialog"
+msgstr ""
+
+#: 03131800.xhp#par_id3154072.13.help.text
+msgid "oDlgControl.execute"
+msgstr ""
+
+#: 03130000.xhp#tit.help.text
+msgid "Other Commands"
+msgstr ""
+
+#: 03130000.xhp#hd_id3156027.1.help.text
+msgid "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"Other Commands\">Other Commands</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03060000.xhp#tit.help.text
+msgid "Logical Operators"
+msgstr ""
+
+#: 03060000.xhp#hd_id3147559.1.help.text
+msgid "<link href=\"text/sbasic/shared/03060000.xhp\" name=\"Logical Operators\">Logical Operators</link>"
+msgstr ""
+
+#: 03060000.xhp#par_id3153379.2.help.text
+msgid "The following logical operators are supported by $[officename] Basic."
+msgstr ""
+
+#: 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 ""
+
+#: 03102400.xhp#tit.help.text
+msgid "IsEmpty Function [Runtime]"
+msgstr ""
+
+#: 03102400.xhp#bm_id3153394.help.text
+msgid "<bookmark_value>IsEmpty function</bookmark_value>"
+msgstr ""
+
+#: 03102400.xhp#hd_id3153394.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102400.xhp\" name=\"IsEmpty Function [Runtime]\">IsEmpty Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03102400.xhp#hd_id3159158.3.help.text
+msgctxt "03102400.xhp#hd_id3159158.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03102400.xhp#par_id3153126.4.help.text
+msgid "IsEmpty (Var)"
+msgstr ""
+
+#: 03102400.xhp#hd_id3148685.5.help.text
+msgctxt "03102400.xhp#hd_id3148685.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03102400.xhp#par_id3156344.6.help.text
+msgctxt "03102400.xhp#par_id3156344.6.help.text"
+msgid "Bool"
+msgstr ""
+
+#: 03102400.xhp#hd_id3148947.7.help.text
+msgctxt "03102400.xhp#hd_id3148947.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03102400.xhp#hd_id3154138.9.help.text
+msgctxt "03102400.xhp#hd_id3154138.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03102400.xhp#par_id3125864.10.help.text
+msgid "Sub ExampleIsEmpty"
+msgstr ""
+
+#: 03102400.xhp#par_id3150449.11.help.text
+msgid "Dim sVar as Variant"
+msgstr ""
+
+#: 03102400.xhp#par_id3153970.12.help.text
+msgid "sVar = Empty"
+msgstr ""
+
+#: 03102400.xhp#par_id3154863.13.help.text
+msgid "Print IsEmpty(sVar) REM Returns True"
+msgstr ""
+
+#: 03102400.xhp#par_id3151043.14.help.text
+msgctxt "03102400.xhp#par_id3151043.14.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03030303.xhp#tit.help.text
+msgid "Timer Function [Runtime]"
+msgstr ""
+
+#: 03030303.xhp#bm_id3149346.help.text
+msgid "<bookmark_value>Timer function</bookmark_value>"
+msgstr ""
+
+#: 03030303.xhp#hd_id3149346.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030303.xhp\" name=\"Timer Function [Runtime]\">Timer Function [Runtime]</link>"
+msgstr ""
+
+#: 03030303.xhp#par_id3156023.2.help.text
+msgid "Returns a value that specifies the number of seconds that have elapsed since midnight."
+msgstr ""
+
+#: 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 ""
+
+#: 03030303.xhp#hd_id3153768.4.help.text
+msgctxt "03030303.xhp#hd_id3153768.4.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03030303.xhp#par_id3161831.5.help.text
+#, fuzzy
+msgid "Timer"
+msgstr "Час"
+
+#: 03030303.xhp#hd_id3146975.6.help.text
+msgctxt "03030303.xhp#hd_id3146975.6.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03030303.xhp#par_id3146984.7.help.text
+msgctxt "03030303.xhp#par_id3146984.7.help.text"
+msgid "Date"
+msgstr ""
+
+#: 03030303.xhp#hd_id3156442.8.help.text
+msgctxt "03030303.xhp#hd_id3156442.8.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03030303.xhp#par_id3153951.9.help.text
+msgid "Sub ExampleTimer"
+msgstr ""
+
+#: 03030303.xhp#par_id3147427.10.help.text
+msgid "Dim lSec as long,lMin as long,lHour as long"
+msgstr ""
+
+#: 03030303.xhp#par_id3153092.11.help.text
+msgid "lSec = Timer"
+msgstr ""
+
+#: 03030303.xhp#par_id3145748.12.help.text
+msgid "MsgBox lSec,0,\"Seconds since midnight\""
+msgstr ""
+
+#: 03030303.xhp#par_id3149260.13.help.text
+msgid "lMin = lSec / 60"
+msgstr ""
+
+#: 03030303.xhp#par_id3148646.14.help.text
+msgid "lSec = lSec Mod 60"
+msgstr ""
+
+#: 03030303.xhp#par_id3148575.15.help.text
+msgid "lHour = lMin / 60"
+msgstr ""
+
+#: 03030303.xhp#par_id3150418.16.help.text
+msgid "lMin = lMin Mod 60"
+msgstr ""
+
+#: 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 ""
+
+#: 03030303.xhp#par_id3153158.18.help.text
+msgctxt "03030303.xhp#par_id3153158.18.help.text"
+msgid "end sub"
+msgstr ""
+
+#: keys.xhp#tit.help.text
+msgid "Keyboard Shortcuts in the Basic IDE"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: keys.xhp#par_id3149655.2.help.text
+msgid "In the Basic IDE you can use the following keyboard shortcuts:"
+msgstr ""
+
+#: keys.xhp#par_id3154908.3.help.text
+msgid "Action"
+msgstr ""
+
+#: keys.xhp#par_id3153192.4.help.text
+msgid "Keyboard shortcut"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: keys.xhp#par_id3154319.8.help.text
+#, fuzzy
+msgid "Shift+F5"
+msgstr "Shift+F8"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: keys.xhp#par_id3153764.16.help.text
+msgid "Shift+F8"
+msgstr "Shift+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 ""
+
+#: 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 ""
+
+#: keys.xhp#par_id3155175.20.help.text
+msgid "Shift+F9"
+msgstr "Shift+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 ""
+
+#: 03101700.xhp#tit.help.text
+msgid "DefObj Statement [Runtime]"
+msgstr ""
+
+#: 03101700.xhp#bm_id3149811.help.text
+msgid "<bookmark_value>DefObj statement</bookmark_value>"
+msgstr ""
+
+#: 03101700.xhp#hd_id3149811.1.help.text
+msgid "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"DefObj Statement [Runtime]\">DefObj Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03101700.xhp#hd_id3150504.3.help.text
+msgctxt "03101700.xhp#hd_id3150504.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03101700.xhp#par_id3147530.4.help.text
+msgctxt "03101700.xhp#par_id3147530.4.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr ""
+
+#: 03101700.xhp#hd_id3153896.5.help.text
+msgctxt "03101700.xhp#hd_id3153896.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03101700.xhp#par_id3148798.8.help.text
+msgctxt "03101700.xhp#par_id3148798.8.help.text"
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr ""
+
+#: 03101700.xhp#par_id3150769.9.help.text
+msgid "<emph>DefObj:</emph> Object"
+msgstr ""
+
+#: 03101700.xhp#hd_id3156212.10.help.text
+msgctxt "03101700.xhp#hd_id3156212.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03101700.xhp#par_id3153969.12.help.text
+msgctxt "03101700.xhp#par_id3153969.12.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr ""
+
+#: 03101700.xhp#par_id3156424.13.help.text
+msgctxt "03101700.xhp#par_id3156424.13.help.text"
+msgid "DefBool b"
+msgstr ""
+
+#: 03101700.xhp#par_id3159254.14.help.text
+msgctxt "03101700.xhp#par_id3159254.14.help.text"
+msgid "DefDate t"
+msgstr ""
+
+#: 03101700.xhp#par_id3150440.15.help.text
+msgctxt "03101700.xhp#par_id3150440.15.help.text"
+msgid "DefDbL d"
+msgstr ""
+
+#: 03101700.xhp#par_id3161832.16.help.text
+msgctxt "03101700.xhp#par_id3161832.16.help.text"
+msgid "DefInt i"
+msgstr ""
+
+#: 03101700.xhp#par_id3145365.17.help.text
+msgctxt "03101700.xhp#par_id3145365.17.help.text"
+msgid "DefLng l"
+msgstr ""
+
+#: 03101700.xhp#par_id3149481.18.help.text
+msgctxt "03101700.xhp#par_id3149481.18.help.text"
+msgid "DefObj o"
+msgstr ""
+
+#: 03101700.xhp#par_id3152886.19.help.text
+msgctxt "03101700.xhp#par_id3152886.19.help.text"
+msgid "DefVar v"
+msgstr ""
+
+#: 03090300.xhp#tit.help.text
+msgid "Jumps"
+msgstr ""
+
+#: 03090300.xhp#hd_id3151262.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Jumps\">Jumps</link>"
+msgstr ""
+
+#: 03090300.xhp#par_id3148983.2.help.text
+msgid "The following statements execute jumps."
+msgstr ""
+
+#: 03132300.xhp#tit.help.text
+msgid "CreateUnoValue Function [Runtime]"
+msgstr ""
+
+#: 03132300.xhp#bm_id3150682.help.text
+msgid "<bookmark_value>CreateUnoValue function</bookmark_value>"
+msgstr ""
+
+#: 03132300.xhp#hd_id3150682.1.help.text
+msgid "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"CreateUnoValue Function [Runtime]\">CreateUnoValue Function [Runtime]</link>"
+msgstr ""
+
+#: 03132300.xhp#par_id3147291.2.help.text
+msgid "Returns an object that represents a strictly typed value referring to the Uno type system. "
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03132300.xhp#hd_id3147560.5.help.text
+msgctxt "03132300.xhp#hd_id3147560.5.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03132300.xhp#par_id3154760.6.help.text
+msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) to get a byte sequence."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03101500.xhp#tit.help.text
+msgid "DefInt Statement [Runtime]"
+msgstr ""
+
+#: 03101500.xhp#bm_id3149811.help.text
+msgid "<bookmark_value>DefInt statement</bookmark_value>"
+msgstr ""
+
+#: 03101500.xhp#hd_id3149811.1.help.text
+msgid "<link href=\"text/sbasic/shared/03101500.xhp\" name=\"DefInt Statement [Runtime]\">DefInt Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03101500.xhp#hd_id3148686.3.help.text
+msgctxt "03101500.xhp#hd_id3148686.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03101500.xhp#par_id3156023.4.help.text
+msgctxt "03101500.xhp#par_id3156023.4.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr ""
+
+#: 03101500.xhp#hd_id3156344.5.help.text
+msgctxt "03101500.xhp#hd_id3156344.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03101500.xhp#par_id3154365.8.help.text
+msgctxt "03101500.xhp#par_id3154365.8.help.text"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr ""
+
+#: 03101500.xhp#par_id3125863.9.help.text
+msgid "<emph>DefInt:</emph> Integer"
+msgstr ""
+
+#: 03101500.xhp#hd_id3154123.10.help.text
+msgctxt "03101500.xhp#hd_id3154123.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03101500.xhp#par_id3151042.12.help.text
+msgid "REM Prefix definitions for variable types"
+msgstr ""
+
+#: 03101500.xhp#par_id3156424.13.help.text
+msgctxt "03101500.xhp#par_id3156424.13.help.text"
+msgid "DefBool b"
+msgstr ""
+
+#: 03101500.xhp#par_id3159254.14.help.text
+msgctxt "03101500.xhp#par_id3159254.14.help.text"
+msgid "DefDate t"
+msgstr ""
+
+#: 03101500.xhp#par_id3150440.15.help.text
+msgctxt "03101500.xhp#par_id3150440.15.help.text"
+msgid "DefDbL d"
+msgstr ""
+
+#: 03101500.xhp#par_id3155855.16.help.text
+msgctxt "03101500.xhp#par_id3155855.16.help.text"
+msgid "DefInt i"
+msgstr ""
+
+#: 03101500.xhp#par_id3152885.17.help.text
+msgctxt "03101500.xhp#par_id3152885.17.help.text"
+msgid "DefLng l"
+msgstr ""
+
+#: 03101500.xhp#par_id3148646.18.help.text
+msgctxt "03101500.xhp#par_id3148646.18.help.text"
+msgid "DefObj o"
+msgstr ""
+
+#: 03101500.xhp#par_id3153951.19.help.text
+msgctxt "03101500.xhp#par_id3153951.19.help.text"
+msgid "DefVar v"
+msgstr ""
+
+#: 03101500.xhp#par_id3146924.21.help.text
+msgid "Sub ExampleDefInt"
+msgstr ""
+
+#: 03101500.xhp#par_id3153728.22.help.text
+msgid "iCount=200 REM iCount is an implicit integer variable"
+msgstr ""
+
+#: 03101500.xhp#par_id3150010.23.help.text
+msgctxt "03101500.xhp#par_id3150010.23.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03030103.xhp#tit.help.text
+msgid "Day Function [Runtime]"
+msgstr ""
+
+#: 03030103.xhp#bm_id3153345.help.text
+msgid "<bookmark_value>Day function</bookmark_value>"
+msgstr ""
+
+#: 03030103.xhp#hd_id3153345.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day Function [Runtime]\">Day Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03030103.xhp#hd_id3149456.3.help.text
+msgctxt "03030103.xhp#hd_id3149456.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03030103.xhp#par_id3150358.4.help.text
+msgid "Day (Number)"
+msgstr ""
+
+#: 03030103.xhp#hd_id3148798.5.help.text
+msgctxt "03030103.xhp#hd_id3148798.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03030103.xhp#par_id3125865.6.help.text
+msgctxt "03030103.xhp#par_id3125865.6.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03030103.xhp#hd_id3150448.7.help.text
+msgctxt "03030103.xhp#hd_id3150448.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03030103.xhp#par_id3145364.10.help.text
+msgid "Print Day (DateSerial(1994, 12, 20))"
+msgstr ""
+
+#: 03030103.xhp#par_id3153190.11.help.text
+msgid "returns the value 20."
+msgstr ""
+
+#: 03030103.xhp#hd_id3149481.12.help.text
+msgctxt "03030103.xhp#hd_id3149481.12.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03030103.xhp#par_id3155413.13.help.text
+msgid "sub ExampleDay"
+msgstr ""
+
+#: 03030103.xhp#par_id3149260.14.help.text
+msgid "Print \"Day \" & Day(DateSerial(1994, 12, 20)) & \" of the month\""
+msgstr ""
+
+#: 03030103.xhp#par_id3148645.15.help.text
+msgctxt "03030103.xhp#par_id3148645.15.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03030105.xhp#tit.help.text
+msgid "WeekDay Function [Runtime]"
+msgstr ""
+
+#: 03030105.xhp#bm_id3153127.help.text
+msgid "<bookmark_value>WeekDay function</bookmark_value>"
+msgstr ""
+
+#: 03030105.xhp#hd_id3153127.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"WeekDay Function [Runtime]\">WeekDay Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03030105.xhp#hd_id3145068.3.help.text
+msgctxt "03030105.xhp#hd_id3145068.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03030105.xhp#par_id3149655.4.help.text
+msgid "WeekDay (Number)"
+msgstr ""
+
+#: 03030105.xhp#hd_id3148799.5.help.text
+msgctxt "03030105.xhp#hd_id3148799.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03030105.xhp#par_id3154125.6.help.text
+msgctxt "03030105.xhp#par_id3154125.6.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03030105.xhp#hd_id3150768.7.help.text
+msgctxt "03030105.xhp#hd_id3150768.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03030105.xhp#hd_id3148616.10.help.text
+msgctxt "03030105.xhp#hd_id3148616.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03030105.xhp#par_id3145749.11.help.text
+msgid "Sub ExampleWeekDay"
+msgstr ""
+
+#: 03030105.xhp#par_id3147426.12.help.text
+msgid "Dim sDay As String"
+msgstr ""
+
+#: 03030105.xhp#par_id3148576.13.help.text
+msgid "REM Return and display the day of the week"
+msgstr ""
+
+#: 03030105.xhp#par_id3155412.14.help.text
+msgid "Select Case WeekDay( Now )"
+msgstr ""
+
+#: 03030105.xhp#par_id3155306.15.help.text
+msgid "case 1"
+msgstr ""
+
+#: 03030105.xhp#par_id3151117.16.help.text
+msgid "sDay=\"Sunday\""
+msgstr ""
+
+#: 03030105.xhp#par_id3152460.17.help.text
+msgid "case 2"
+msgstr ""
+
+#: 03030105.xhp#par_id3153952.18.help.text
+msgid "sDay=\"Monday\""
+msgstr ""
+
+#: 03030105.xhp#par_id3149666.19.help.text
+msgid "case 3"
+msgstr ""
+
+#: 03030105.xhp#par_id3153157.20.help.text
+msgid "sDay=\"Tuesday\""
+msgstr ""
+
+#: 03030105.xhp#par_id3154730.21.help.text
+msgid "case 4"
+msgstr ""
+
+#: 03030105.xhp#par_id3154942.22.help.text
+msgid "sDay=\"Wednesday\""
+msgstr ""
+
+#: 03030105.xhp#par_id3145799.23.help.text
+msgid "case 5"
+msgstr ""
+
+#: 03030105.xhp#par_id3155416.24.help.text
+msgid "sDay=\"Thursday\""
+msgstr ""
+
+#: 03030105.xhp#par_id3150716.25.help.text
+msgid "case 6"
+msgstr ""
+
+#: 03030105.xhp#par_id3154015.26.help.text
+msgid "sDay=\"Friday\""
+msgstr ""
+
+#: 03030105.xhp#par_id3146971.27.help.text
+msgid "case 7"
+msgstr ""
+
+#: 03030105.xhp#par_id3153707.28.help.text
+msgid "sDay=\"Saturday\""
+msgstr ""
+
+#: 03030105.xhp#par_id3155065.29.help.text
+msgctxt "03030105.xhp#par_id3155065.29.help.text"
+msgid "End Select"
+msgstr ""
+
+#: 03030105.xhp#par_id3148993.30.help.text
+msgid "msgbox \"\" + sDay,64,\"Today is\""
+msgstr ""
+
+#: 03030105.xhp#par_id3149019.31.help.text
+msgctxt "03030105.xhp#par_id3149019.31.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03080601.xhp#tit.help.text
+msgid "Abs Function [Runtime]"
+msgstr ""
+
+#: 03080601.xhp#bm_id3159201.help.text
+msgid "<bookmark_value>Abs function</bookmark_value>"
+msgstr ""
+
+#: 03080601.xhp#hd_id3159201.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080601.xhp\" name=\"Abs Function [Runtime]\">Abs Function [Runtime]</link>"
+msgstr ""
+
+#: 03080601.xhp#par_id3153394.2.help.text
+msgid "Returns the absolute value of a numeric expression."
+msgstr ""
+
+#: 03080601.xhp#hd_id3149233.3.help.text
+msgctxt "03080601.xhp#hd_id3149233.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03080601.xhp#par_id3147573.4.help.text
+msgid "Abs (Number)"
+msgstr ""
+
+#: 03080601.xhp#hd_id3156152.5.help.text
+msgctxt "03080601.xhp#hd_id3156152.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03080601.xhp#par_id3149670.6.help.text
+msgctxt "03080601.xhp#par_id3149670.6.help.text"
+msgid "Double"
+msgstr ""
+
+#: 03080601.xhp#hd_id3154924.7.help.text
+msgctxt "03080601.xhp#hd_id3154924.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03080601.xhp#hd_id3148451.10.help.text
+msgctxt "03080601.xhp#hd_id3148451.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03080601.xhp#par_id3154124.11.help.text
+msgid "Sub ExampleDifference"
+msgstr ""
+
+#: 03080601.xhp#par_id3150768.12.help.text
+msgid "Dim siW1 As Single"
+msgstr ""
+
+#: 03080601.xhp#par_id3125864.13.help.text
+msgid "Dim siW2 As Single"
+msgstr ""
+
+#: 03080601.xhp#par_id3145786.14.help.text
+msgid "siW1 = Int(InputBox$ (\"Please enter the first amount\",\"Value input\"))"
+msgstr ""
+
+#: 03080601.xhp#par_id3149561.15.help.text
+msgid "siW2 = Int(InputBox$ (\"Please enter the second amount\",\"Value input\"))"
+msgstr ""
+
+#: 03080601.xhp#par_id3145750.16.help.text
+msgid "Print \"The difference is \"; Abs(siW1 - siW2)"
+msgstr ""
+
+#: 03080601.xhp#par_id3147319.17.help.text
+msgctxt "03080601.xhp#par_id3147319.17.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03100500.xhp#tit.help.text
+msgid "CInt Function [Runtime]"
+msgstr ""
+
+#: 03100500.xhp#bm_id3149346.help.text
+msgid "<bookmark_value>CInt function</bookmark_value>"
+msgstr ""
+
+#: 03100500.xhp#hd_id3149346.1.help.text
+msgid "<link href=\"text/sbasic/shared/03100500.xhp\" name=\"CInt Function [Runtime]\">CInt Function [Runtime]</link>"
+msgstr ""
+
+#: 03100500.xhp#par_id3155419.2.help.text
+msgid "Converts any string or numeric expression to an integer."
+msgstr ""
+
+#: 03100500.xhp#hd_id3147573.3.help.text
+msgctxt "03100500.xhp#hd_id3147573.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03100500.xhp#par_id3154142.4.help.text
+msgid "CInt (Expression)"
+msgstr ""
+
+#: 03100500.xhp#hd_id3147531.5.help.text
+msgctxt "03100500.xhp#hd_id3147531.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03100500.xhp#par_id3147560.6.help.text
+msgctxt "03100500.xhp#par_id3147560.6.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03100500.xhp#hd_id3145069.7.help.text
+msgctxt "03100500.xhp#hd_id3145069.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03100500.xhp#hd_id3145419.10.help.text
+msgctxt "03100500.xhp#hd_id3145419.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03100500.xhp#par_id3150448.11.help.text
+msgctxt "03100500.xhp#par_id3150448.11.help.text"
+msgid "Sub ExampleCountryConvert"
+msgstr ""
+
+#: 03100500.xhp#par_id3156423.12.help.text
+msgctxt "03100500.xhp#par_id3156423.12.help.text"
+msgid "Msgbox CDbl(1234.5678)"
+msgstr ""
+
+#: 03100500.xhp#par_id3150869.13.help.text
+msgctxt "03100500.xhp#par_id3150869.13.help.text"
+msgid "Msgbox CInt(1234.5678)"
+msgstr ""
+
+#: 03100500.xhp#par_id3153768.14.help.text
+msgctxt "03100500.xhp#par_id3153768.14.help.text"
+msgid "Msgbox CLng(1234.5678)"
+msgstr ""
+
+#: 03100500.xhp#par_id3145786.15.help.text
+msgctxt "03100500.xhp#par_id3145786.15.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03020205.xhp#tit.help.text
+msgid "Write Statement [Runtime]"
+msgstr ""
+
+#: 03020205.xhp#bm_id3147229.help.text
+msgid "<bookmark_value>Write statement</bookmark_value>"
+msgstr ""
+
+#: 03020205.xhp#hd_id3147229.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020205.xhp\" name=\"Write Statement [Runtime]\">Write Statement [Runtime]</link>"
+msgstr ""
+
+#: 03020205.xhp#par_id3154685.2.help.text
+msgid "Writes data to a sequential file."
+msgstr ""
+
+#: 03020205.xhp#hd_id3150449.3.help.text
+msgctxt "03020205.xhp#hd_id3150449.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020205.xhp#par_id3145785.4.help.text
+msgid "Write [#FileName], [Expressionlist]"
+msgstr ""
+
+#: 03020205.xhp#hd_id3151116.5.help.text
+msgctxt "03020205.xhp#hd_id3151116.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020205.xhp#par_id1002838.help.text
+msgid "Each <emph>Write</emph> statement outputs a line end symbol as last entry."
+msgstr ""
+
+#: 03020205.xhp#par_id6618854.help.text
+msgid "Numbers with decimal delimiters are converted according to the locale settings."
+msgstr ""
+
+#: 03020205.xhp#hd_id3151073.11.help.text
+msgctxt "03020205.xhp#hd_id3151073.11.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020205.xhp#par_id3145252.12.help.text
+msgid "Sub ExampleWrite"
+msgstr ""
+
+#: 03020205.xhp#par_id3149958.13.help.text
+msgctxt "03020205.xhp#par_id3149958.13.help.text"
+msgid "Dim iCount As Integer"
+msgstr ""
+
+#: 03020205.xhp#par_id3156284.14.help.text
+msgid "Dim sValue As String"
+msgstr ""
+
+#: 03020205.xhp#par_id3145645.15.help.text
+msgid "iCount = Freefile"
+msgstr ""
+
+#: 03020205.xhp#par_id3153417.16.help.text
+msgid "open \"C:\\data.txt\" for OutPut as iCount"
+msgstr ""
+
+#: 03020205.xhp#par_id3149401.17.help.text
+msgid "sValue = \"Hamburg\""
+msgstr ""
+
+#: 03020205.xhp#par_id3156275.18.help.text
+msgid "Write #iCount,sValue,200"
+msgstr ""
+
+#: 03020205.xhp#par_id3146913.19.help.text
+msgid "sValue = \"New York\""
+msgstr ""
+
+#: 03020205.xhp#par_id3155064.20.help.text
+msgid "Write #iCount,sValue,300"
+msgstr ""
+
+#: 03020205.xhp#par_id3150322.21.help.text
+msgid "sValue = \"Miami\""
+msgstr ""
+
+#: 03020205.xhp#par_id3155766.22.help.text
+msgid "Write #iCount,sValue,450"
+msgstr ""
+
+#: 03020205.xhp#par_id3145643.23.help.text
+msgid "close #iCount"
+msgstr ""
+
+#: 03020205.xhp#par_id3150044.24.help.text
+msgctxt "03020205.xhp#par_id3150044.24.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 00000002.xhp#tit.help.text
+msgid "$[officename] Basic Glossary"
+msgstr ""
+
+#: 00000002.xhp#hd_id3145068.1.help.text
+msgid "<link href=\"text/sbasic/shared/00000002.xhp\" name=\"$[officename] Basic Glossary\">$[officename] Basic Glossary</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 00000002.xhp#hd_id3155133.7.help.text
+msgid "Decimal Point"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 00000002.xhp#hd_id3155854.29.help.text
+msgid "Colors"
+msgstr ""
+
+#: 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 ""
+
+#: 00000002.xhp#hd_id3146119.32.help.text
+msgid "Measurement Units"
+msgstr ""
+
+#: 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 ""
+
+#: 00000002.xhp#bm_id3145801.help.text
+msgid "<bookmark_value>twips; definition</bookmark_value>"
+msgstr ""
+
+#: 00000002.xhp#hd_id3145801.5.help.text
+msgid "Twips"
+msgstr ""
+
+#: 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 ""
+
+#: 00000002.xhp#hd_id3153159.106.help.text
+msgid "URL Notation"
+msgstr ""
+
+#: 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 ""
+
+#: 00000002.xhp#par_id3149121.107.help.text
+msgid "<emph>protocol</emph>://<emph>host.name</emph>/<emph>path/to/the/file.html</emph>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03090401.xhp#tit.help.text
+msgid "Call Statement [Runtime]"
+msgstr ""
+
+#: 03090401.xhp#bm_id3154422.help.text
+msgid "<bookmark_value>Call statement</bookmark_value>"
+msgstr ""
+
+#: 03090401.xhp#hd_id3154422.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement [Runtime]\">Call Statement [Runtime]</link>"
+msgstr ""
+
+#: 03090401.xhp#par_id3153394.2.help.text
+msgid "Transfers the control of the program to a subroutine, a function, or a DLL procedure."
+msgstr ""
+
+#: 03090401.xhp#hd_id3153345.3.help.text
+msgctxt "03090401.xhp#hd_id3153345.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03090401.xhp#par_id3150984.4.help.text
+msgid "[Call] Name [Parameter]"
+msgstr ""
+
+#: 03090401.xhp#hd_id3150771.5.help.text
+msgctxt "03090401.xhp#hd_id3150771.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03090401.xhp#hd_id3125865.9.help.text
+msgctxt "03090401.xhp#hd_id3125865.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03090401.xhp#par_id3159254.12.help.text
+msgid "Sub ExampleCall"
+msgstr ""
+
+#: 03090401.xhp#par_id3161832.13.help.text
+msgctxt "03090401.xhp#par_id3161832.13.help.text"
+msgid "Dim sVar As String"
+msgstr ""
+
+#: 03090401.xhp#par_id3147317.14.help.text
+msgctxt "03090401.xhp#par_id3147317.14.help.text"
+msgid "sVar = \"Office\""
+msgstr ""
+
+#: 03090401.xhp#par_id3145273.15.help.text
+msgid "Call f_callFun sVar"
+msgstr ""
+
+#: 03090401.xhp#par_id3147435.16.help.text
+msgctxt "03090401.xhp#par_id3147435.16.help.text"
+msgid "end Sub"
+msgstr ""
+
+#: 03090401.xhp#par_id3155414.18.help.text
+msgid "Sub f_callFun (sText as String)"
+msgstr ""
+
+#: 03090401.xhp#par_id3151112.19.help.text
+msgctxt "03090401.xhp#par_id3151112.19.help.text"
+msgid "Msgbox sText"
+msgstr ""
+
+#: 03090401.xhp#par_id3148646.20.help.text
+msgctxt "03090401.xhp#par_id3148646.20.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 01050300.xhp#tit.help.text
+msgid "Manage Breakpoints"
+msgstr ""
+
+#: 01050300.xhp#hd_id3154927.1.help.text
+msgid "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
+msgstr ""
+
+#: 01050300.xhp#par_id3148550.2.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_BRKPROPS\">Specifies the options for breakpoints.</ahelp>"
+msgstr ""
+
+#: 01050300.xhp#hd_id3149670.3.help.text
+msgid "Breakpoints"
+msgstr ""
+
+#: 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 ""
+
+#: 01050300.xhp#hd_id3156280.6.help.text
+msgid "Active"
+msgstr ""
+
+#: 01050300.xhp#par_id3154910.7.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_ACTIV\">Activates or deactivates the current breakpoint.</ahelp>"
+msgstr ""
+
+#: 01050300.xhp#hd_id3144500.8.help.text
+msgid "Pass Count"
+msgstr ""
+
+#: 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 ""
+
+#: 01050300.xhp#hd_id3152579.10.help.text
+msgid "New"
+msgstr ""
+
+#: 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 ""
+
+#: 01050300.xhp#hd_id3147319.12.help.text
+msgctxt "01050300.xhp#hd_id3147319.12.help.text"
+msgid "Delete"
+msgstr ""
+
+#: 01050300.xhp#par_id3153363.13.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_DEL\">Deletes the selected breakpoint.</ahelp>"
+msgstr ""
+
+#: 03020415.xhp#tit.help.text
+msgid "FileExists Function [Runtime]"
+msgstr ""
+
+#: 03020415.xhp#bm_id3148946.help.text
+msgid "<bookmark_value>FileExists function</bookmark_value>"
+msgstr ""
+
+#: 03020415.xhp#hd_id3148946.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020415.xhp\" name=\"FileExists Function [Runtime]\">FileExists Function [Runtime]</link>"
+msgstr ""
+
+#: 03020415.xhp#par_id3153361.2.help.text
+msgid "Determines if a file or a directory is available on the data medium."
+msgstr ""
+
+#: 03020415.xhp#hd_id3150447.3.help.text
+msgctxt "03020415.xhp#hd_id3150447.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020415.xhp#par_id3154685.4.help.text
+msgid "FileExists(FileName As String | DirectoryName As String)"
+msgstr ""
+
+#: 03020415.xhp#hd_id3154126.5.help.text
+msgctxt "03020415.xhp#hd_id3154126.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03020415.xhp#par_id3150769.6.help.text
+msgctxt "03020415.xhp#par_id3150769.6.help.text"
+msgid "Bool"
+msgstr ""
+
+#: 03020415.xhp#hd_id3153770.7.help.text
+msgctxt "03020415.xhp#hd_id3153770.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03020415.xhp#hd_id3149664.9.help.text
+msgctxt "03020415.xhp#hd_id3149664.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020415.xhp#par_id3145272.10.help.text
+msgid "sub ExampleFileExists"
+msgstr ""
+
+#: 03020415.xhp#par_id3147317.12.help.text
+msgid "msgbox FileExists(\"C:\\autoexec.bat\")"
+msgstr ""
+
+#: 03020415.xhp#par_id3153190.13.help.text
+msgid "msgbox FileExists(\"file:///d|/bookmark.htm\")"
+msgstr ""
+
+#: 03020415.xhp#par_id3148645.14.help.text
+msgid "msgbox FileExists(\"file:///d|/private\")"
+msgstr ""
+
+#: 03020415.xhp#par_id3149262.15.help.text
+msgctxt "03020415.xhp#par_id3149262.15.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03120402.xhp#tit.help.text
+msgid "Len Function [Runtime]"
+msgstr ""
+
+#: 03120402.xhp#bm_id3154136.help.text
+msgid "<bookmark_value>Len function</bookmark_value>"
+msgstr ""
+
+#: 03120402.xhp#hd_id3154136.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Len Function [Runtime]\">Len Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03120402.xhp#hd_id3159177.3.help.text
+msgctxt "03120402.xhp#hd_id3159177.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03120402.xhp#par_id3150669.4.help.text
+msgid "Len (Text As String)"
+msgstr ""
+
+#: 03120402.xhp#hd_id3148473.5.help.text
+msgctxt "03120402.xhp#hd_id3148473.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03120402.xhp#par_id3143270.6.help.text
+msgctxt "03120402.xhp#par_id3143270.6.help.text"
+msgid "Long"
+msgstr ""
+
+#: 03120402.xhp#hd_id3147531.7.help.text
+msgctxt "03120402.xhp#hd_id3147531.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03120402.xhp#par_id3147265.8.help.text
+msgid "<emph>Text:</emph> Any string expression or a variable of another type."
+msgstr ""
+
+#: 03120402.xhp#hd_id3153360.9.help.text
+msgctxt "03120402.xhp#hd_id3153360.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03120402.xhp#par_id3150792.10.help.text
+msgctxt "03120402.xhp#par_id3150792.10.help.text"
+msgid "Sub ExampleLen"
+msgstr ""
+
+#: 03120402.xhp#par_id3151211.11.help.text
+msgctxt "03120402.xhp#par_id3151211.11.help.text"
+msgid "Dim sText as String"
+msgstr ""
+
+#: 03120402.xhp#par_id3154125.12.help.text
+msgctxt "03120402.xhp#par_id3154125.12.help.text"
+msgid "sText = \"Las Vegas\""
+msgstr ""
+
+#: 03120402.xhp#par_id3156214.13.help.text
+msgid "MsgBox Len(sText) REM Returns 9"
+msgstr ""
+
+#: 03120402.xhp#par_id3125864.14.help.text
+msgctxt "03120402.xhp#par_id3125864.14.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03103600.xhp#tit.help.text
+msgid "TypeName Function; VarType Function[Runtime]"
+msgstr ""
+
+#: 03103600.xhp#bm_id3143267.help.text
+msgid "<bookmark_value>TypeName function</bookmark_value><bookmark_value>VarType function</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 03103600.xhp#par_id3159157.2.help.text
+msgid "Returns a string (TypeName) or a numeric value (VarType) that contains information for a variable."
+msgstr ""
+
+#: 03103600.xhp#hd_id3153825.3.help.text
+msgctxt "03103600.xhp#hd_id3153825.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03103600.xhp#par_id3155341.4.help.text
+msgid "TypeName (Variable)VarType (Variable)"
+msgstr ""
+
+#: 03103600.xhp#hd_id3145610.5.help.text
+msgctxt "03103600.xhp#hd_id3145610.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03103600.xhp#par_id3148947.6.help.text
+msgid "String; Integer"
+msgstr ""
+
+#: 03103600.xhp#hd_id3146795.7.help.text
+msgctxt "03103600.xhp#hd_id3146795.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03103600.xhp#par_id3145171.9.help.text
+msgid "key word"
+msgstr ""
+
+#: 03103600.xhp#par_id3156212.10.help.text
+msgid "VarType"
+msgstr ""
+
+#: 03103600.xhp#par_id3154684.11.help.text
+msgid "Variable type"
+msgstr ""
+
+#: 03103600.xhp#par_id3151041.12.help.text
+msgid "Boolean"
+msgstr ""
+
+#: 03103600.xhp#par_id3153367.13.help.text
+msgid "11"
+msgstr ""
+
+#: 03103600.xhp#par_id3148645.14.help.text
+msgid "Boolean variable"
+msgstr ""
+
+#: 03103600.xhp#par_id3153138.15.help.text
+msgctxt "03103600.xhp#par_id3153138.15.help.text"
+msgid "Date"
+msgstr ""
+
+#: 03103600.xhp#par_id3153363.16.help.text
+msgctxt "03103600.xhp#par_id3153363.16.help.text"
+msgid "7"
+msgstr ""
+
+#: 03103600.xhp#par_id3155411.17.help.text
+msgid "Date variable"
+msgstr ""
+
+#: 03103600.xhp#par_id3146975.18.help.text
+msgctxt "03103600.xhp#par_id3146975.18.help.text"
+msgid "Double"
+msgstr ""
+
+#: 03103600.xhp#par_id3150486.19.help.text
+msgctxt "03103600.xhp#par_id3150486.19.help.text"
+msgid "5"
+msgstr ""
+
+#: 03103600.xhp#par_id3148616.20.help.text
+msgid "Double floating point variable"
+msgstr ""
+
+#: 03103600.xhp#par_id3148457.21.help.text
+msgctxt "03103600.xhp#par_id3148457.21.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03103600.xhp#par_id3145647.22.help.text
+msgctxt "03103600.xhp#par_id3145647.22.help.text"
+msgid "2"
+msgstr ""
+
+#: 03103600.xhp#par_id3154490.23.help.text
+msgid "Integer variable"
+msgstr ""
+
+#: 03103600.xhp#par_id3149960.24.help.text
+msgctxt "03103600.xhp#par_id3149960.24.help.text"
+msgid "Long"
+msgstr ""
+
+#: 03103600.xhp#par_id3154513.25.help.text
+msgctxt "03103600.xhp#par_id3154513.25.help.text"
+msgid "3"
+msgstr ""
+
+#: 03103600.xhp#par_id3151318.26.help.text
+msgid "Long integer variable"
+msgstr ""
+
+#: 03103600.xhp#par_id3146972.27.help.text
+msgid "Object"
+msgstr ""
+
+#: 03103600.xhp#par_id3154482.28.help.text
+msgid "9"
+msgstr ""
+
+#: 03103600.xhp#par_id3150323.29.help.text
+msgid "Object variable"
+msgstr ""
+
+#: 03103600.xhp#par_id3148405.30.help.text
+msgctxt "03103600.xhp#par_id3148405.30.help.text"
+msgid "Single"
+msgstr ""
+
+#: 03103600.xhp#par_id3149020.31.help.text
+msgctxt "03103600.xhp#par_id3149020.31.help.text"
+msgid "4"
+msgstr ""
+
+#: 03103600.xhp#par_id3147341.32.help.text
+msgid "Single floating-point variable"
+msgstr ""
+
+#: 03103600.xhp#par_id3155901.33.help.text
+msgctxt "03103600.xhp#par_id3155901.33.help.text"
+msgid "String"
+msgstr ""
+
+#: 03103600.xhp#par_id3155960.34.help.text
+msgid "8"
+msgstr ""
+
+#: 03103600.xhp#par_id3146313.35.help.text
+msgid "String variable"
+msgstr ""
+
+#: 03103600.xhp#par_id3145149.36.help.text
+msgid "Variant"
+msgstr ""
+
+#: 03103600.xhp#par_id3154021.37.help.text
+msgid "12"
+msgstr ""
+
+#: 03103600.xhp#par_id3145789.38.help.text
+msgid "Variant variable (can contain all types specified by the definition)"
+msgstr ""
+
+#: 03103600.xhp#par_id3148630.39.help.text
+msgid "Empty"
+msgstr ""
+
+#: 03103600.xhp#par_id3152584.40.help.text
+msgctxt "03103600.xhp#par_id3152584.40.help.text"
+msgid "0"
+msgstr ""
+
+#: 03103600.xhp#par_id3151278.41.help.text
+msgid "Variable is not initialized"
+msgstr ""
+
+#: 03103600.xhp#par_id3154576.42.help.text
+msgid "Null"
+msgstr ""
+
+#: 03103600.xhp#par_id3166424.43.help.text
+msgctxt "03103600.xhp#par_id3166424.43.help.text"
+msgid "1"
+msgstr ""
+
+#: 03103600.xhp#par_id3145131.44.help.text
+msgid "No valid data"
+msgstr ""
+
+#: 03103600.xhp#hd_id3149338.45.help.text
+msgctxt "03103600.xhp#hd_id3149338.45.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03103600.xhp#par_id3150363.46.help.text
+msgid "Sub ExampleType"
+msgstr ""
+
+#: 03103600.xhp#par_id3159088.47.help.text
+msgctxt "03103600.xhp#par_id3159088.47.help.text"
+msgid "Dim iVar As Integer"
+msgstr ""
+
+#: 03103600.xhp#par_id3150089.48.help.text
+msgctxt "03103600.xhp#par_id3150089.48.help.text"
+msgid "Dim sVar As String"
+msgstr ""
+
+#: 03103600.xhp#par_id3156139.49.help.text
+msgid "Dim siVar As Single"
+msgstr ""
+
+#: 03103600.xhp#par_id3151217.50.help.text
+msgid "Dim dVar As Double"
+msgstr ""
+
+#: 03103600.xhp#par_id3154658.51.help.text
+msgid "Dim bVar As Boolean"
+msgstr ""
+
+#: 03103600.xhp#par_id3152992.52.help.text
+msgctxt "03103600.xhp#par_id3152992.52.help.text"
+msgid "Dim lVar As Long"
+msgstr ""
+
+#: 03103600.xhp#par_id3155509.53.help.text
+msgid "Msgbox TypeName(iVar) & \" \" & VarType(iVar) & Chr(13) &_"
+msgstr ""
+
+#: 03103600.xhp#par_id3150370.54.help.text
+msgid "TypeName(sVar) & \" \" & VarType(sVar) & Chr(13) &_"
+msgstr ""
+
+#: 03103600.xhp#par_id3155532.55.help.text
+msgid "TypeName(siVar) & \" \" & VarType(siVar) & Chr(13) &_"
+msgstr ""
+
+#: 03103600.xhp#par_id3152988.56.help.text
+msgid "TypeName(dVar) & \" \" & VarType(dVar) & Chr(13) &_"
+msgstr ""
+
+#: 03103600.xhp#par_id3156166.57.help.text
+msgid "TypeName(bVar) & \" \" & VarType(bVar) & Chr(13) &_"
+msgstr ""
+
+#: 03103600.xhp#par_id3148817.58.help.text
+msgid "TypeName(lVar) & \" \" & VarType(lVar),0,\"Some types in $[officename] Basic\""
+msgstr ""
+
+#: 03103600.xhp#par_id3154259.59.help.text
+msgctxt "03103600.xhp#par_id3154259.59.help.text"
+msgid "end Sub"
+msgstr ""
+
+#: 03110000.xhp#tit.help.text
+msgid "Comparison Operators"
+msgstr ""
+
+#: 03110000.xhp#hd_id3155555.1.help.text
+msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
+msgstr ""
+
+#: 03110000.xhp#par_id3153528.2.help.text
+msgid "The available comparison operators are described here."
+msgstr ""
+
+#: 03070300.xhp#tit.help.text
+msgid "\"+\" Operator [Runtime]"
+msgstr ""
+
+#: 03070300.xhp#bm_id3145316.help.text
+msgid "<bookmark_value>\"+\" operator (mathematical)</bookmark_value>"
+msgstr ""
+
+#: 03070300.xhp#hd_id3145316.1.help.text
+msgid "<link href=\"text/sbasic/shared/03070300.xhp\">\"+\" Operator [Runtime]</link>"
+msgstr ""
+
+#: 03070300.xhp#par_id3145068.2.help.text
+msgid "Adds or combines two expressions."
+msgstr ""
+
+#: 03070300.xhp#hd_id3144500.3.help.text
+msgctxt "03070300.xhp#hd_id3144500.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03070300.xhp#par_id3150358.4.help.text
+msgid "Result = Expression1 + Expression2"
+msgstr ""
+
+#: 03070300.xhp#hd_id3150400.5.help.text
+msgctxt "03070300.xhp#hd_id3150400.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03070300.xhp#par_id3154123.6.help.text
+msgid "<emph>Result:</emph> Any numerical expression that contains the result of the addition."
+msgstr ""
+
+#: 03070300.xhp#par_id3150870.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to combine or to add."
+msgstr ""
+
+#: 03070300.xhp#hd_id3153969.8.help.text
+msgctxt "03070300.xhp#hd_id3153969.8.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03070300.xhp#par_id3150440.9.help.text
+msgid "Sub ExampleAddition1"
+msgstr ""
+
+#: 03070300.xhp#par_id3159254.10.help.text
+msgid "Print 5 + 5"
+msgstr ""
+
+#: 03070300.xhp#par_id3152460.11.help.text
+msgctxt "03070300.xhp#par_id3152460.11.help.text"
+msgid "End sub"
+msgstr ""
+
+#: 03070300.xhp#par_id3153191.13.help.text
+msgid "Sub ExampleAddition2"
+msgstr ""
+
+#: 03070300.xhp#par_id3146120.14.help.text
+msgctxt "03070300.xhp#par_id3146120.14.help.text"
+msgid "Dim iValue1 as Integer"
+msgstr ""
+
+#: 03070300.xhp#par_id3155411.15.help.text
+msgctxt "03070300.xhp#par_id3155411.15.help.text"
+msgid "Dim iValue2 as Integer"
+msgstr ""
+
+#: 03070300.xhp#par_id3147435.16.help.text
+msgctxt "03070300.xhp#par_id3147435.16.help.text"
+msgid "iValue1 = 5"
+msgstr ""
+
+#: 03070300.xhp#par_id3163710.17.help.text
+msgctxt "03070300.xhp#par_id3163710.17.help.text"
+msgid "iValue2 = 10"
+msgstr ""
+
+#: 03070300.xhp#par_id3151118.18.help.text
+msgid "Print iValue1 + iValue2"
+msgstr ""
+
+#: 03070300.xhp#par_id3146974.19.help.text
+msgctxt "03070300.xhp#par_id3146974.19.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03130600.xhp#tit.help.text
+msgid "Wait Statement [Runtime]"
+msgstr ""
+
+#: 03130600.xhp#bm_id3154136.help.text
+msgid "<bookmark_value>Wait statement</bookmark_value>"
+msgstr ""
+
+#: 03130600.xhp#hd_id3154136.1.help.text
+msgid "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Wait Statement [Runtime]\">Wait Statement [Runtime]</link>"
+msgstr ""
+
+#: 03130600.xhp#par_id3149236.2.help.text
+msgid "Interrupts the program execution for the amount of time that you specify in milliseconds."
+msgstr ""
+
+#: 03130600.xhp#hd_id3143229.3.help.text
+msgctxt "03130600.xhp#hd_id3143229.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03130600.xhp#par_id3150669.4.help.text
+msgid "Wait millisec"
+msgstr ""
+
+#: 03130600.xhp#hd_id3148943.5.help.text
+msgctxt "03130600.xhp#hd_id3148943.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03130600.xhp#hd_id3150541.7.help.text
+msgctxt "03130600.xhp#hd_id3150541.7.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03130600.xhp#par_id3154138.8.help.text
+msgctxt "03130600.xhp#par_id3154138.8.help.text"
+msgid "Sub ExampleWait"
+msgstr ""
+
+#: 03130600.xhp#par_id3154367.9.help.text
+msgctxt "03130600.xhp#par_id3154367.9.help.text"
+msgid "Dim lTick As Long"
+msgstr ""
+
+#: 03130600.xhp#par_id3154909.10.help.text
+msgctxt "03130600.xhp#par_id3154909.10.help.text"
+msgid "lTick = GetSystemTicks()"
+msgstr ""
+
+#: 03130600.xhp#par_id3151042.11.help.text
+msgctxt "03130600.xhp#par_id3151042.11.help.text"
+msgid "wait 2000"
+msgstr ""
+
+#: 03130600.xhp#par_id3154217.12.help.text
+msgctxt "03130600.xhp#par_id3154217.12.help.text"
+msgid "lTick = (GetSystemTicks() - lTick)"
+msgstr ""
+
+#: 03130600.xhp#par_id3156214.13.help.text
+msgctxt "03130600.xhp#par_id3156214.13.help.text"
+msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
+msgstr ""
+
+#: 03130600.xhp#par_id3148922.14.help.text
+msgctxt "03130600.xhp#par_id3148922.14.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03020403.xhp#tit.help.text
+msgid "CurDir Function [Runtime]"
+msgstr ""
+
+#: 03020403.xhp#bm_id3153126.help.text
+msgid "<bookmark_value>CurDir function</bookmark_value>"
+msgstr ""
+
+#: 03020403.xhp#hd_id3153126.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020403.xhp\">CurDir Function [Runtime]</link>"
+msgstr ""
+
+#: 03020403.xhp#par_id3156343.2.help.text
+msgid "Returns a variant string that represents the current path of the specified drive."
+msgstr ""
+
+#: 03020403.xhp#hd_id3149457.3.help.text
+msgctxt "03020403.xhp#hd_id3149457.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020403.xhp#par_id3153381.4.help.text
+msgid "CurDir [(Text As String)]"
+msgstr ""
+
+#: 03020403.xhp#hd_id3154366.5.help.text
+msgctxt "03020403.xhp#hd_id3154366.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03020403.xhp#par_id3156281.6.help.text
+msgctxt "03020403.xhp#par_id3156281.6.help.text"
+msgid "String"
+msgstr ""
+
+#: 03020403.xhp#hd_id3156423.7.help.text
+msgctxt "03020403.xhp#hd_id3156423.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020403.xhp#par_id3150010.10.help.text
+msgid "This function is not case-sensitive."
+msgstr ""
+
+#: 03020403.xhp#hd_id3155411.11.help.text
+msgctxt "03020403.xhp#hd_id3155411.11.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020403.xhp#par_id3151113.12.help.text
+msgid "Sub ExampleCurDir"
+msgstr ""
+
+#: 03020403.xhp#par_id3155306.13.help.text
+msgctxt "03020403.xhp#par_id3155306.13.help.text"
+msgid "Dim sDir1 as String , sDir2 as String"
+msgstr ""
+
+#: 03020403.xhp#par_id3156444.14.help.text
+msgctxt "03020403.xhp#par_id3156444.14.help.text"
+msgid "sDir1 = \"c:\\Test\""
+msgstr ""
+
+#: 03020403.xhp#par_id3147318.15.help.text
+msgctxt "03020403.xhp#par_id3147318.15.help.text"
+msgid "sDir2 = \"d:\\private\""
+msgstr ""
+
+#: 03020403.xhp#par_id3154013.16.help.text
+msgctxt "03020403.xhp#par_id3154013.16.help.text"
+msgid "ChDir( sDir1 )"
+msgstr ""
+
+#: 03020403.xhp#par_id3153877.17.help.text
+msgctxt "03020403.xhp#par_id3153877.17.help.text"
+msgid "msgbox CurDir"
+msgstr ""
+
+#: 03020403.xhp#par_id3144764.18.help.text
+msgctxt "03020403.xhp#par_id3144764.18.help.text"
+msgid "ChDir( sDir2 )"
+msgstr ""
+
+#: 03020403.xhp#par_id3147125.19.help.text
+msgctxt "03020403.xhp#par_id3147125.19.help.text"
+msgid "msgbox CurDir"
+msgstr ""
+
+#: 03020403.xhp#par_id3149581.20.help.text
+msgctxt "03020403.xhp#par_id3149581.20.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03120201.xhp#tit.help.text
+msgid "Space Function [Runtime]"
+msgstr ""
+
+#: 03120201.xhp#bm_id3150499.help.text
+msgid "<bookmark_value>Space function</bookmark_value>"
+msgstr ""
+
+#: 03120201.xhp#hd_id3150499.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120201.xhp\" name=\"Space Function [Runtime]\">Space Function [Runtime]</link>"
+msgstr ""
+
+#: 03120201.xhp#par_id3154927.2.help.text
+msgid "Returns a string that consists of a specified amount of spaces."
+msgstr ""
+
+#: 03120201.xhp#hd_id3153394.3.help.text
+msgctxt "03120201.xhp#hd_id3153394.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03120201.xhp#par_id3143267.4.help.text
+msgid "Space (n As Long)"
+msgstr ""
+
+#: 03120201.xhp#hd_id3147242.5.help.text
+msgctxt "03120201.xhp#hd_id3147242.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03120201.xhp#par_id3149233.6.help.text
+msgctxt "03120201.xhp#par_id3149233.6.help.text"
+msgid "String"
+msgstr ""
+
+#: 03120201.xhp#hd_id3156152.7.help.text
+msgctxt "03120201.xhp#hd_id3156152.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03120201.xhp#hd_id3154760.9.help.text
+msgctxt "03120201.xhp#hd_id3154760.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03120201.xhp#par_id3147560.10.help.text
+msgid "Sub ExampleSpace"
+msgstr ""
+
+#: 03120201.xhp#par_id3149670.11.help.text
+msgid "Dim sText As String,sOut As String"
+msgstr ""
+
+#: 03120201.xhp#par_id3154938.12.help.text
+msgid "DIm iLen As Integer"
+msgstr ""
+
+#: 03120201.xhp#par_id3153525.13.help.text
+msgid "iLen = 10"
+msgstr ""
+
+#: 03120201.xhp#par_id3151211.14.help.text
+msgctxt "03120201.xhp#par_id3151211.14.help.text"
+msgid "sText = \"Las Vegas\""
+msgstr ""
+
+#: 03120201.xhp#par_id3156282.15.help.text
+msgid "sOut = sText & Space(iLen) & sText & Chr(13) &_"
+msgstr ""
+
+#: 03120201.xhp#par_id3144760.16.help.text
+msgid "sText & Space(iLen*2) & sText & Chr(13) &_"
+msgstr ""
+
+#: 03120201.xhp#par_id3159149.17.help.text
+msgid "sText & Space(iLen*4) & sText & Chr(13)"
+msgstr ""
+
+#: 03120201.xhp#par_id3154216.18.help.text
+msgid "msgBox sOut,0,\"Info:\""
+msgstr ""
+
+#: 03120201.xhp#par_id3158409.19.help.text
+msgctxt "03120201.xhp#par_id3158409.19.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03030130.xhp#tit.help.text
+msgid "DatePart Function [Runtime]"
+msgstr ""
+
+#: 03030130.xhp#bm_id249946.help.text
+msgid "<bookmark_value>DatePart function</bookmark_value>"
+msgstr ""
+
+#: 03030130.xhp#par_idN10542.help.text
+msgid "<link href=\"text/sbasic/shared/03030130.xhp\">DatePart Function [Runtime]</link>"
+msgstr ""
+
+#: 03030130.xhp#par_idN10546.help.text
+msgid "The DatePart function returns a specified part of a date."
+msgstr ""
+
+#: 03030130.xhp#par_idN10549.help.text
+msgctxt "03030130.xhp#par_idN10549.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03030130.xhp#par_idN105E8.help.text
+msgid "DatePart (Add, Date [, Week_start [, Year_start]])"
+msgstr ""
+
+#: 03030130.xhp#par_idN105EB.help.text
+msgctxt "03030130.xhp#par_idN105EB.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03030130.xhp#par_idN105EF.help.text
+msgctxt "03030130.xhp#par_idN105EF.help.text"
+msgid "A Variant containing a date."
+msgstr ""
+
+#: 03030130.xhp#par_idN105F2.help.text
+msgctxt "03030130.xhp#par_idN105F2.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03030130.xhp#par_idN10604.help.text
+msgid "<emph>Date</emph> - The date from which the result is calculated."
+msgstr ""
+
+#: 03030130.xhp#par_idN10611.help.text
+msgctxt "03030130.xhp#par_idN10611.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03030130.xhp#par_idN10615.help.text
+msgid "Sub example_datepart"
+msgstr ""
+
+#: 03030130.xhp#par_idN10618.help.text
+msgid "msgbox DatePart(\"ww\", \"12/31/2005\")"
+msgstr ""
+
+#: 03030130.xhp#par_idN1061B.help.text
+msgctxt "03030130.xhp#par_idN1061B.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03090405.xhp#tit.help.text
+msgid "FreeLibrary Function [Runtime]"
+msgstr ""
+
+#: 03090405.xhp#bm_id3143270.help.text
+msgid "<bookmark_value>FreeLibrary function</bookmark_value>"
+msgstr ""
+
+#: 03090405.xhp#hd_id3143270.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary Function [Runtime]\">FreeLibrary Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03090405.xhp#hd_id3148550.3.help.text
+msgctxt "03090405.xhp#hd_id3148550.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03090405.xhp#par_id3153361.4.help.text
+msgid "FreeLibrary (LibName As String)"
+msgstr ""
+
+#: 03090405.xhp#hd_id3153380.5.help.text
+msgctxt "03090405.xhp#hd_id3153380.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03090405.xhp#par_id3154138.6.help.text
+msgid "<emph>LibName:</emph> String expression that specifies the name of the DLL."
+msgstr ""
+
+#: 03090405.xhp#par_id3146923.7.help.text
+msgid "FreeLibrary can only release DLLs that are loaded during Basic runtime."
+msgstr ""
+
+#: 03090405.xhp#hd_id3153363.8.help.text
+msgctxt "03090405.xhp#hd_id3153363.8.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 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 ""
+
+#: 03090405.xhp#par_id3149664.11.help.text
+msgctxt "03090405.xhp#par_id3149664.11.help.text"
+msgid "Sub ExampleDeclare"
+msgstr ""
+
+#: 03090405.xhp#par_id3148618.12.help.text
+msgctxt "03090405.xhp#par_id3148618.12.help.text"
+msgid "Dim lValue As Long"
+msgstr ""
+
+#: 03090405.xhp#par_id3147350.13.help.text
+msgctxt "03090405.xhp#par_id3147350.13.help.text"
+msgid "lValue = 5000"
+msgstr ""
+
+#: 03090405.xhp#par_id3148648.14.help.text
+msgctxt "03090405.xhp#par_id3148648.14.help.text"
+msgid "MyMessageBeep( lValue )"
+msgstr ""
+
+#: 03090405.xhp#par_id3145750.15.help.text
+msgctxt "03090405.xhp#par_id3145750.15.help.text"
+msgid "FreeLibrary(\"user32.dll\" )"
+msgstr ""
+
+#: 03090405.xhp#par_id3149412.16.help.text
+msgctxt "03090405.xhp#par_id3149412.16.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03080502.xhp#tit.help.text
+msgid "Int Function [Runtime]"
+msgstr ""
+
+#: 03080502.xhp#bm_id3153345.help.text
+msgid "<bookmark_value>Int function</bookmark_value>"
+msgstr ""
+
+#: 03080502.xhp#hd_id3153345.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Int Function [Runtime]\">Int Function [Runtime]</link>"
+msgstr ""
+
+#: 03080502.xhp#par_id3155420.2.help.text
+msgid "Returns the integer portion of a number."
+msgstr ""
+
+#: 03080502.xhp#hd_id3147559.3.help.text
+msgctxt "03080502.xhp#hd_id3147559.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03080502.xhp#par_id3146795.4.help.text
+msgid "Int (Number)"
+msgstr ""
+
+#: 03080502.xhp#hd_id3149670.5.help.text
+msgctxt "03080502.xhp#hd_id3149670.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03080502.xhp#par_id3150400.6.help.text
+msgctxt "03080502.xhp#par_id3150400.6.help.text"
+msgid "Double"
+msgstr ""
+
+#: 03080502.xhp#hd_id3149656.7.help.text
+msgctxt "03080502.xhp#hd_id3149656.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03080502.xhp#par_id3148797.8.help.text
+msgid "<emph>Number:</emph> Any valid numeric expression."
+msgstr ""
+
+#: 03080502.xhp#hd_id3148672.9.help.text
+msgctxt "03080502.xhp#hd_id3148672.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03080502.xhp#par_id3156214.10.help.text
+msgid "sub ExampleINT"
+msgstr ""
+
+#: 03080502.xhp#par_id3125864.11.help.text
+msgid "Print Int(3.99) REM returns the value 3"
+msgstr ""
+
+#: 03080502.xhp#par_id3145787.12.help.text
+msgid "Print Int(0) REM returns the value 0"
+msgstr ""
+
+#: 03080502.xhp#par_id3153143.13.help.text
+msgid "Print Int(-3.14159) REM returns the value -4"
+msgstr ""
+
+#: 03080502.xhp#par_id3152578.14.help.text
+msgctxt "03080502.xhp#par_id3152578.14.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03020409.xhp#tit.help.text
+msgid "GetAttr Function [Runtime]"
+msgstr ""
+
+#: 03020409.xhp#bm_id3150984.help.text
+msgid "<bookmark_value>GetAttr function</bookmark_value>"
+msgstr ""
+
+#: 03020409.xhp#hd_id3150984.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020409.xhp\" name=\"GetAttr Function [Runtime]\">GetAttr Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03020409.xhp#hd_id3149457.3.help.text
+msgctxt "03020409.xhp#hd_id3149457.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020409.xhp#par_id3150359.4.help.text
+msgid "GetAttr (Text As String)"
+msgstr ""
+
+#: 03020409.xhp#hd_id3151211.5.help.text
+msgctxt "03020409.xhp#hd_id3151211.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03020409.xhp#par_id3154909.6.help.text
+msgctxt "03020409.xhp#par_id3154909.6.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03020409.xhp#hd_id3145172.7.help.text
+msgctxt "03020409.xhp#hd_id3145172.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020409.xhp#hd_id3145364.10.help.text
+msgctxt "03020409.xhp#hd_id3145364.10.help.text"
+msgid "Value"
+msgstr ""
+
+#: 03020409.xhp#par_id3147349.11.help.text
+msgctxt "03020409.xhp#par_id3147349.11.help.text"
+msgid "0 : Normal files."
+msgstr ""
+
+#: 03020409.xhp#par_id3147434.12.help.text
+msgctxt "03020409.xhp#par_id3147434.12.help.text"
+msgid "1 : Read-only files."
+msgstr ""
+
+#: 03020409.xhp#par_id3159154.15.help.text
+msgid "8 : Returns the name of the volume"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020409.xhp#hd_id3153094.19.help.text
+msgctxt "03020409.xhp#hd_id3153094.19.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020409.xhp#par_id3154491.20.help.text
+msgctxt "03020409.xhp#par_id3154491.20.help.text"
+msgid "Sub ExampleSetGetAttr"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020409.xhp#par_id3149959.24.help.text
+msgctxt "03020409.xhp#par_id3149959.24.help.text"
+msgid "SetAttr \"c:\\test\\autoexec.sav\" ,0"
+msgstr ""
+
+#: 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 ""
+
+#: 03020409.xhp#par_id3149122.26.help.text
+msgctxt "03020409.xhp#par_id3149122.26.help.text"
+msgid "SetAttr \"c:\\test\\autoexec.sav\" ,1"
+msgstr ""
+
+#: 03020409.xhp#par_id3154480.27.help.text
+msgctxt "03020409.xhp#par_id3154480.27.help.text"
+msgid "print GetAttr( \"c:\\test\\autoexec.sav\" )"
+msgstr ""
+
+#: 03020409.xhp#par_id3150753.28.help.text
+msgctxt "03020409.xhp#par_id3150753.28.help.text"
+msgid "end"
+msgstr ""
+
+#: 03020409.xhp#par_id3150323.29.help.text
+msgctxt "03020409.xhp#par_id3150323.29.help.text"
+msgid "ErrorHandler:"
+msgstr ""
+
+#: 03020409.xhp#par_id3154754.30.help.text
+msgctxt "03020409.xhp#par_id3154754.30.help.text"
+msgid "Print Error"
+msgstr ""
+
+#: 03020409.xhp#par_id3155764.31.help.text
+msgctxt "03020409.xhp#par_id3155764.31.help.text"
+msgid "end"
+msgstr ""
+
+#: 03020409.xhp#par_id3156382.32.help.text
+msgctxt "03020409.xhp#par_id3156382.32.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03090203.xhp#tit.help.text
+msgid "While...Wend Statement[Runtime]"
+msgstr ""
+
+#: 03090203.xhp#bm_id3150400.help.text
+msgid "<bookmark_value>While;While...Wend loop</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03090203.xhp#par_id3145172.4.help.text
+msgid "A Do...Loop is more flexible than a While...Wend."
+msgstr ""
+
+#: 03090203.xhp#hd_id3155133.5.help.text
+msgctxt "03090203.xhp#hd_id3155133.5.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03090203.xhp#par_id3147288.6.help.text
+msgid "While Condition [Statement] Wend"
+msgstr ""
+
+#: 03090203.xhp#hd_id3153139.7.help.text
+msgctxt "03090203.xhp#hd_id3153139.7.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03090203.xhp#par_id3159153.8.help.text
+msgid "Sub ExampleWhileWend"
+msgstr ""
+
+#: 03090203.xhp#par_id3151114.9.help.text
+msgid "Dim stext As String"
+msgstr ""
+
+#: 03090203.xhp#par_id3153143.10.help.text
+msgid "Dim iRun As Integer"
+msgstr ""
+
+#: 03090203.xhp#par_id3155306.11.help.text
+msgid "sText =\"This is a short text\""
+msgstr ""
+
+#: 03090203.xhp#par_id3154011.12.help.text
+msgid "iRun = 1"
+msgstr ""
+
+#: 03090203.xhp#par_id3147215.13.help.text
+msgid "while iRun < Len(sText)"
+msgstr ""
+
+#: 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 ""
+
+#: 03090203.xhp#par_id3149665.15.help.text
+msgid "iRun = iRun + 1"
+msgstr ""
+
+#: 03090203.xhp#par_id3152939.16.help.text
+msgid "Wend"
+msgstr ""
+
+#: 03090203.xhp#par_id3153189.17.help.text
+msgid "MsgBox sText,0,\"Text encoded\""
+msgstr ""
+
+#: 03090203.xhp#par_id3145251.18.help.text
+msgctxt "03090203.xhp#par_id3145251.18.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03090201.xhp#tit.help.text
+msgid "Do...Loop Statement [Runtime]"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03090201.xhp#hd_id3149119.3.help.text
+msgctxt "03090201.xhp#hd_id3149119.3.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 03090201.xhp#par_id3155150.4.help.text
+msgid "Do [{While | Until} condition = True]"
+msgstr ""
+
+#: 03090201.xhp#par_id3154422.5.help.text
+msgctxt "03090201.xhp#par_id3154422.5.help.text"
+msgid "statement block"
+msgstr ""
+
+#: 03090201.xhp#par_id3150789.6.help.text
+msgctxt "03090201.xhp#par_id3150789.6.help.text"
+msgid "[Exit Do]"
+msgstr ""
+
+#: 03090201.xhp#par_id3155805.7.help.text
+msgctxt "03090201.xhp#par_id3155805.7.help.text"
+msgid "statement block"
+msgstr ""
+
+#: 03090201.xhp#par_id3145090.8.help.text
+msgctxt "03090201.xhp#par_id3145090.8.help.text"
+msgid "Loop"
+msgstr ""
+
+#: 03090201.xhp#par_id3154749.9.help.text
+msgid "or"
+msgstr "або"
+
+#: 03090201.xhp#par_id3150503.10.help.text
+msgctxt "03090201.xhp#par_id3150503.10.help.text"
+msgid "Do"
+msgstr ""
+
+#: 03090201.xhp#par_id3149762.11.help.text
+msgctxt "03090201.xhp#par_id3149762.11.help.text"
+msgid "statement block"
+msgstr ""
+
+#: 03090201.xhp#par_id3150984.12.help.text
+msgctxt "03090201.xhp#par_id3150984.12.help.text"
+msgid "[Exit Do]"
+msgstr ""
+
+#: 03090201.xhp#par_id3143228.13.help.text
+msgctxt "03090201.xhp#par_id3143228.13.help.text"
+msgid "statement block"
+msgstr ""
+
+#: 03090201.xhp#par_id3149235.14.help.text
+msgid "Loop [{While | Until} condition = True]"
+msgstr ""
+
+#: 03090201.xhp#hd_id3156024.15.help.text
+msgid "Parameters/Elements"
+msgstr ""
+
+#: 03090201.xhp#par_id3156344.16.help.text
+msgid "<emph>Condition:</emph> A comparison, numeric or string expression, that evaluates either True or False."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03090201.xhp#hd_id3154366.19.help.text
+msgctxt "03090201.xhp#hd_id3154366.19.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 03090201.xhp#par_id3145171.20.help.text
+msgid "Do While condition = True"
+msgstr ""
+
+#: 03090201.xhp#par_id3149203.21.help.text
+msgctxt "03090201.xhp#par_id3149203.21.help.text"
+msgid "...statement block"
+msgstr ""
+
+#: 03090201.xhp#par_id3125864.22.help.text
+msgctxt "03090201.xhp#par_id3125864.22.help.text"
+msgid "Loop"
+msgstr ""
+
+#: 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 ""
+
+#: 03090201.xhp#par_id3153968.25.help.text
+msgid "Do Until condition = True"
+msgstr ""
+
+#: 03090201.xhp#par_id3154909.26.help.text
+msgctxt "03090201.xhp#par_id3154909.26.help.text"
+msgid "...statement block"
+msgstr ""
+
+#: 03090201.xhp#par_id3159151.27.help.text
+msgctxt "03090201.xhp#par_id3159151.27.help.text"
+msgid "Loop"
+msgstr ""
+
+#: 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 ""
+
+#: 03090201.xhp#par_id3153952.30.help.text
+msgctxt "03090201.xhp#par_id3153952.30.help.text"
+msgid "Do"
+msgstr ""
+
+#: 03090201.xhp#par_id3147349.31.help.text
+msgctxt "03090201.xhp#par_id3147349.31.help.text"
+msgid "...statement block"
+msgstr ""
+
+#: 03090201.xhp#par_id3159153.32.help.text
+msgid "Loop While condition = True"
+msgstr ""
+
+#: 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 ""
+
+#: 03090201.xhp#par_id3150488.35.help.text
+msgctxt "03090201.xhp#par_id3150488.35.help.text"
+msgid "Do"
+msgstr ""
+
+#: 03090201.xhp#par_id3153189.36.help.text
+msgctxt "03090201.xhp#par_id3153189.36.help.text"
+msgid "...statement block"
+msgstr ""
+
+#: 03090201.xhp#par_id3155411.37.help.text
+msgid "Loop Until condition = True"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03090201.xhp#par_id3149262.42.help.text
+msgid "Do..."
+msgstr ""
+
+#: 03090201.xhp#par_id3149298.43.help.text
+msgctxt "03090201.xhp#par_id3149298.43.help.text"
+msgid "statements"
+msgstr ""
+
+#: 03090201.xhp#par_id3145646.44.help.text
+msgid "If condition = True Then Exit Do"
+msgstr ""
+
+#: 03090201.xhp#par_id3154490.45.help.text
+msgctxt "03090201.xhp#par_id3154490.45.help.text"
+msgid "statements"
+msgstr ""
+
+#: 03090201.xhp#par_id3153159.46.help.text
+msgid "Loop..."
+msgstr ""
+
+#: 03090201.xhp#hd_id3147396.47.help.text
+msgctxt "03090201.xhp#hd_id3147396.47.help.text"
+msgid "Example"
+msgstr ""
+
+#: 03090201.xhp#par_id3144764.49.help.text
+msgid "Sub ExampleDoLoop"
+msgstr ""
+
+#: 03090201.xhp#par_id3154791.50.help.text
+msgid "Dim sFile As String"
+msgstr ""
+
+#: 03090201.xhp#par_id3149401.51.help.text
+msgctxt "03090201.xhp#par_id3149401.51.help.text"
+msgid "Dim sPath As String"
+msgstr ""
+
+#: 03090201.xhp#par_id3155600.52.help.text
+msgid "sPath = \"c:\\\""
+msgstr ""
+
+#: 03090201.xhp#par_id3150717.53.help.text
+msgid "sFile = Dir$( sPath ,22)"
+msgstr ""
+
+#: 03090201.xhp#par_id3146898.54.help.text
+msgctxt "03090201.xhp#par_id3146898.54.help.text"
+msgid "If sFile <> \"\" Then"
+msgstr ""
+
+#: 03090201.xhp#par_id3156333.55.help.text
+msgctxt "03090201.xhp#par_id3156333.55.help.text"
+msgid "Do"
+msgstr ""
+
+#: 03090201.xhp#par_id3153947.56.help.text
+msgid "MsgBox sFile"
+msgstr ""
+
+#: 03090201.xhp#par_id3150327.57.help.text
+msgctxt "03090201.xhp#par_id3150327.57.help.text"
+msgid "sFile = Dir$"
+msgstr ""
+
+#: 03090201.xhp#par_id3150749.58.help.text
+msgctxt "03090201.xhp#par_id3150749.58.help.text"
+msgid "Loop Until sFile = \"\""
+msgstr ""
+
+#: 03090201.xhp#par_id3153765.59.help.text
+msgctxt "03090201.xhp#par_id3153765.59.help.text"
+msgid "End If"
+msgstr ""
+
+#: 03090201.xhp#par_id3148914.60.help.text
+msgctxt "03090201.xhp#par_id3148914.60.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 01030400.xhp#tit.help.text
+msgid "Organizing Libraries and Modules"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01030400.xhp#hd_id3150868.4.help.text
+msgid "Organizing Libraries"
+msgstr ""
+
+#: 01030400.xhp#hd_id3125864.5.help.text
+msgid "Creating a New Library"
+msgstr ""
+
+#: 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 ""
+
+#: 01030400.xhp#par_id3153726.8.help.text
+msgctxt "01030400.xhp#par_id3153726.8.help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr ""
+
+#: 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 ""
+
+#: 01030400.xhp#par_id3153365.10.help.text
+msgid "Click <emph>New</emph> and insert a name to create a new library."
+msgstr ""
+
+#: 01030400.xhp#hd_id3147394.48.help.text
+msgid "Appending a Library"
+msgstr ""
+
+#: 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 ""
+
+#: 01030400.xhp#par_id3146972.50.help.text
+msgctxt "01030400.xhp#par_id3146972.50.help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr ""
+
+#: 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 ""
+
+#: 01030400.xhp#par_id3154253.52.help.text
+msgid "Click <emph>Append</emph> and select an external library to append."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01030400.xhp#par_id3147004.56.help.text
+msgid "Click <emph>OK</emph> to append the library."
+msgstr "Натисніть <emph>Гаразд</emph>, щоб приєднати бібліотеку."
+
+#: 01030400.xhp#hd_id3159100.17.help.text
+msgid "Deleting a Library"
+msgstr ""
+
+#: 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 ""
+
+#: 01030400.xhp#par_id3146808.57.help.text
+msgctxt "01030400.xhp#par_id3146808.57.help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr ""
+
+#: 01030400.xhp#par_id3158212.58.help.text
+msgid "Select the library to be deleted from the list."
+msgstr ""
+
+#: 01030400.xhp#par_id3150361.20.help.text
+#, fuzzy
+msgctxt "01030400.xhp#par_id3150361.20.help.text"
+msgid "Click <emph>Delete</emph>."
+msgstr "Натисніть <emph>Гаразд</emph>."
+
+#: 01030400.xhp#par_id3152986.19.help.text
+msgid "Deleting a library permanently deletes all existing modules and corresponding procedures and functions."
+msgstr ""
+
+#: 01030400.xhp#par_id3148868.59.help.text
+msgid "You cannot delete the default library named \"Standard\"."
+msgstr ""
+
+#: 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 ""
+
+#: 01030400.xhp#hd_id3147070.21.help.text
+msgid "Organizing Modules and Dialogs"
+msgstr ""
+
+#: 01030400.xhp#hd_id3155265.61.help.text
+msgid "Creating a New Module or Dialog"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01030400.xhp#par_id3159206.64.help.text
+msgid "Select the library where the module will be inserted and click <emph>New</emph>."
+msgstr ""
+
+#: 01030400.xhp#par_id3152389.65.help.text
+msgid "Enter a name for the module or the dialog and click <emph>OK</emph>."
+msgstr ""
+
+#: 01030400.xhp#hd_id3152872.25.help.text
+msgid "Renaming a Module or Dialog"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01030400.xhp#par_id3155526.28.help.text
+msgid "Press Enter to confirm your changes."
+msgstr ""
+
+#: 01030400.xhp#hd_id3146963.29.help.text
+msgid "Deleting a Module or Dialog"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01030400.xhp#par_id3147248.32.help.text
+#, fuzzy
+msgctxt "01030400.xhp#par_id3147248.32.help.text"
+msgid "Click <emph>Delete</emph>."
+msgstr "Натисніть <emph>Гаразд</emph>."
+
+#: 01030400.xhp#par_id3151339.31.help.text
+msgid "Deleting a module permanently deletes all existing procedures and functions in that module."
+msgstr ""
+
+#: 01030400.xhp#hd_id3151392.33.help.text
+msgid "Organizing Projects among Documents or Templates"
+msgstr ""
+
+#: 01030400.xhp#hd_id3156400.36.help.text
+msgid "Moving or copying modules between documents, templates and the application."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03080103.xhp#tit.help.text
+msgid "Sin Function [Runtime]"
+msgstr ""
+
+#: 03080103.xhp#bm_id3153896.help.text
+msgid "<bookmark_value>Sin function</bookmark_value>"
+msgstr ""
+
+#: 03080103.xhp#hd_id3153896.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080103.xhp\" name=\"Sin Function [Runtime]\">Sin Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03080103.xhp#par_id3148798.4.help.text
+msgid "Sin(Alpha) = side opposite the angle/hypotenuse"
+msgstr ""
+
+#: 03080103.xhp#hd_id3147230.5.help.text
+msgctxt "03080103.xhp#hd_id3147230.5.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03080103.xhp#par_id3154909.6.help.text
+msgid "Sin (Number)"
+msgstr ""
+
+#: 03080103.xhp#hd_id3156214.7.help.text
+msgctxt "03080103.xhp#hd_id3156214.7.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03080103.xhp#par_id3150870.8.help.text
+msgctxt "03080103.xhp#par_id3150870.8.help.text"
+msgid "Double"
+msgstr ""
+
+#: 03080103.xhp#hd_id3155132.9.help.text
+msgctxt "03080103.xhp#hd_id3155132.9.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03080103.xhp#par_id3149664.12.help.text
+msgid "grad=(radiant*180)/pi"
+msgstr ""
+
+#: 03080103.xhp#par_id3153143.13.help.text
+msgid "radiant=(grad*pi)/180"
+msgstr ""
+
+#: 03080103.xhp#par_id3151112.14.help.text
+msgctxt "03080103.xhp#par_id3151112.14.help.text"
+msgid "Pi is approximately 3.141593."
+msgstr ""
+
+#: 03080103.xhp#hd_id3163712.15.help.text
+msgctxt "03080103.xhp#hd_id3163712.15.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03080103.xhp#par_id3152941.18.help.text
+msgid "Sub ExampleSine"
+msgstr ""
+
+#: 03080103.xhp#par_id3150011.19.help.text
+msgid "REM Pi = 3.1415926 is a predefined variable"
+msgstr ""
+
+#: 03080103.xhp#par_id3153159.20.help.text
+msgctxt "03080103.xhp#par_id3153159.20.help.text"
+msgid "Dim d1 as Double"
+msgstr ""
+
+#: 03080103.xhp#par_id3154491.21.help.text
+msgctxt "03080103.xhp#par_id3154491.21.help.text"
+msgid "Dim dAlpha as Double"
+msgstr ""
+
+#: 03080103.xhp#par_id3145251.22.help.text
+msgid "d1 = InputBox$ (\"Enter the length of the opposite side: \",\"Opposite Side\")"
+msgstr ""
+
+#: 03080103.xhp#par_id3148456.23.help.text
+msgid "dAlpha = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
+msgstr ""
+
+#: 03080103.xhp#par_id3153877.24.help.text
+msgid "Print \"The length of the hypotenuse is\"; (d1 / sin (dAlpha * Pi / 180))"
+msgstr ""
+
+#: 03080103.xhp#par_id3150717.25.help.text
+msgctxt "03080103.xhp#par_id3150717.25.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03090409.xhp#tit.help.text
+msgid "Sub Statement [Runtime]"
+msgstr ""
+
+#: 03090409.xhp#bm_id3147226.help.text
+msgid "<bookmark_value>Sub statement</bookmark_value>"
+msgstr ""
+
+#: 03090409.xhp#hd_id3147226.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090409.xhp\" name=\"Sub Statement [Runtime]\">Sub Statement [Runtime]</link>"
+msgstr ""
+
+#: 03090409.xhp#par_id3153311.2.help.text
+msgid "Defines a subroutine."
+msgstr ""
+
+#: 03090409.xhp#hd_id3149416.3.help.text
+msgctxt "03090409.xhp#hd_id3149416.3.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 03090409.xhp#par_idN105E7.help.text
+msgid "Sub Name[(VarName1 [As Type][, VarName2 [As Type][,...]])]"
+msgstr ""
+
+#: 03090409.xhp#par_id3147530.5.help.text
+msgctxt "03090409.xhp#par_id3147530.5.help.text"
+msgid "statement block"
+msgstr ""
+
+#: 03090409.xhp#par_id3146795.8.help.text
+msgctxt "03090409.xhp#par_id3146795.8.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03090409.xhp#hd_id3153525.9.help.text
+msgctxt "03090409.xhp#hd_id3153525.9.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03090409.xhp#par_id3150792.10.help.text
+msgid "<emph>Name:</emph> Name of the subroutine ."
+msgstr ""
+
+#: 03090409.xhp#par_id3154138.11.help.text
+msgid "<emph>VarName: </emph>Parameter that you want to pass to the subroutine."
+msgstr ""
+
+#: 03090409.xhp#par_id3154908.12.help.text
+msgid "<emph>Type:</emph> Type-declaration key word."
+msgstr ""
+
+#: 03090409.xhp#hd_id3153770.16.help.text
+msgctxt "03090409.xhp#hd_id3153770.16.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03090409.xhp#par_id3151113.17.help.text
+msgctxt "03090409.xhp#par_id3151113.17.help.text"
+msgid "Sub Example"
+msgstr ""
+
+#: 03090409.xhp#par_idN1063F.help.text
+msgid "REM some statements"
+msgstr ""
+
+#: 03090409.xhp#par_id3154319.19.help.text
+msgctxt "03090409.xhp#par_id3154319.19.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03060400.xhp#tit.help.text
+msgid "Not-Operator [Runtime]"
+msgstr ""
+
+#: 03060400.xhp#bm_id3156024.help.text
+msgid "<bookmark_value>Not operator (logical)</bookmark_value>"
+msgstr ""
+
+#: 03060400.xhp#hd_id3156024.1.help.text
+msgid "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not-Operator [Runtime]\">Not-Operator [Runtime]</link>"
+msgstr ""
+
+#: 03060400.xhp#par_id3159414.2.help.text
+msgid "Negates an expression by inverting the bit values."
+msgstr ""
+
+#: 03060400.xhp#hd_id3149457.3.help.text
+msgctxt "03060400.xhp#hd_id3149457.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03060400.xhp#par_id3150360.4.help.text
+msgid "Result = Not Expression"
+msgstr ""
+
+#: 03060400.xhp#hd_id3151211.5.help.text
+msgctxt "03060400.xhp#hd_id3151211.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03060400.xhp#par_id3147228.6.help.text
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the negation."
+msgstr ""
+
+#: 03060400.xhp#par_id3154124.7.help.text
+msgid "<emph>Expression:</emph> Any expression that you want to negate."
+msgstr ""
+
+#: 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 ""
+
+#: 03060400.xhp#par_id3145785.9.help.text
+msgid "In a bitwise negation each individual bit is inverted."
+msgstr ""
+
+#: 03060400.xhp#hd_id3153093.10.help.text
+msgctxt "03060400.xhp#hd_id3153093.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03060400.xhp#par_id3153143.11.help.text
+msgid "Sub ExampleNot"
+msgstr ""
+
+#: 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 ""
+
+#: 03060400.xhp#par_id3145274.13.help.text
+msgctxt "03060400.xhp#par_id3145274.13.help.text"
+msgid "Dim vOut as Variant"
+msgstr ""
+
+#: 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 ""
+
+#: 03060400.xhp#par_id3145749.15.help.text
+msgid "vOut = Not vA REM Returns -11"
+msgstr ""
+
+#: 03060400.xhp#par_id3148645.16.help.text
+msgid "vOut = Not(vC > vD) REM Returns -1"
+msgstr ""
+
+#: 03060400.xhp#par_id3156441.17.help.text
+msgid "vOut = Not(vB > vA) REM Returns -1"
+msgstr ""
+
+#: 03060400.xhp#par_id3152596.18.help.text
+msgid "vOut = Not(vA > vB) REM Returns 0"
+msgstr ""
+
+#: 03060400.xhp#par_id3154319.19.help.text
+msgctxt "03060400.xhp#par_id3154319.19.help.text"
+msgid "end Sub"
+msgstr ""
+
+#: 03103300.xhp#tit.help.text
+msgid "Option Explicit Statement [Runtime]"
+msgstr ""
+
+#: 03103300.xhp#bm_id3145090.help.text
+msgid "<bookmark_value>Option Explicit statement</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03103300.xhp#hd_id3149763.3.help.text
+msgctxt "03103300.xhp#hd_id3149763.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03103300.xhp#par_id3149514.4.help.text
+msgctxt "03103300.xhp#par_id3149514.4.help.text"
+msgid "Option Explicit"
+msgstr ""
+
+#: 03103300.xhp#hd_id3145315.5.help.text
+msgctxt "03103300.xhp#hd_id3145315.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03103300.xhp#hd_id3125864.7.help.text
+msgctxt "03103300.xhp#hd_id3125864.7.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03103300.xhp#par_id3154217.8.help.text
+msgctxt "03103300.xhp#par_id3154217.8.help.text"
+msgid "Option Explicit"
+msgstr ""
+
+#: 03103300.xhp#par_id3156214.9.help.text
+msgid "Sub ExampleExplicit"
+msgstr ""
+
+#: 03103300.xhp#par_id3153193.10.help.text
+msgctxt "03103300.xhp#par_id3153193.10.help.text"
+msgid "Dim sVar As String"
+msgstr ""
+
+#: 03103300.xhp#par_id3159252.11.help.text
+msgctxt "03103300.xhp#par_id3159252.11.help.text"
+msgid "sVar = \"Las Vegas\""
+msgstr ""
+
+#: 03103300.xhp#par_id3145787.12.help.text
+msgid "For i% = 1 to 10 REM This results in a run-time error"
+msgstr ""
+
+#: 03103300.xhp#par_id3152598.13.help.text
+msgid "REM"
+msgstr ""
+
+#: 03103300.xhp#par_id3145749.14.help.text
+msgid "Next i%"
+msgstr ""
+
+#: 03103300.xhp#par_id3150010.15.help.text
+msgctxt "03103300.xhp#par_id3150010.15.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03100900.xhp#tit.help.text
+msgid "CSng Function[Runtime]"
+msgstr ""
+
+#: 03100900.xhp#bm_id3153753.help.text
+msgid "<bookmark_value>CSng function</bookmark_value>"
+msgstr ""
+
+#: 03100900.xhp#hd_id3153753.1.help.text
+msgid "<link href=\"text/sbasic/shared/03100900.xhp\" name=\"CSng Function[Runtime]\">CSng Function[Runtime]</link>"
+msgstr ""
+
+#: 03100900.xhp#par_id3149748.2.help.text
+msgid "Converts any string or numeric expression to data type Single."
+msgstr ""
+
+#: 03100900.xhp#hd_id3153255.3.help.text
+msgctxt "03100900.xhp#hd_id3153255.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03100900.xhp#par_id3148983.4.help.text
+msgid "CSng (Expression)"
+msgstr ""
+
+#: 03100900.xhp#hd_id3152347.5.help.text
+msgctxt "03100900.xhp#hd_id3152347.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03100900.xhp#par_id3153750.6.help.text
+msgctxt "03100900.xhp#par_id3153750.6.help.text"
+msgid "Single"
+msgstr ""
+
+#: 03100900.xhp#hd_id3146957.7.help.text
+msgctxt "03100900.xhp#hd_id3146957.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03100900.xhp#hd_id3149514.9.help.text
+msgctxt "03100900.xhp#hd_id3149514.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03100900.xhp#par_id3154142.10.help.text
+msgid "Sub ExampleCSNG"
+msgstr ""
+
+#: 03100900.xhp#par_id3147573.11.help.text
+msgctxt "03100900.xhp#par_id3147573.11.help.text"
+msgid "Msgbox CDbl(1234.5678)"
+msgstr ""
+
+#: 03100900.xhp#par_id3150772.12.help.text
+msgctxt "03100900.xhp#par_id3150772.12.help.text"
+msgid "Msgbox CInt(1234.5678)"
+msgstr ""
+
+#: 03100900.xhp#par_id3147531.13.help.text
+msgctxt "03100900.xhp#par_id3147531.13.help.text"
+msgid "Msgbox CLng(1234.5678)"
+msgstr ""
+
+#: 03100900.xhp#par_id3147265.14.help.text
+msgctxt "03100900.xhp#par_id3147265.14.help.text"
+msgid "Msgbox CSng(1234.5678)"
+msgstr ""
+
+#: 03100900.xhp#par_id3159414.15.help.text
+msgctxt "03100900.xhp#par_id3159414.15.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 01020200.xhp#tit.help.text
+msgid "Using Objects"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01020200.xhp#par_id3153266.81.help.text
+msgid "Click the (X) icon in the title bar to close the object catalog."
+msgstr ""
+
+#: 03030203.xhp#tit.help.text
+msgid "Now Function [Runtime]"
+msgstr ""
+
+#: 03030203.xhp#bm_id3149416.help.text
+msgid "<bookmark_value>Now function</bookmark_value>"
+msgstr ""
+
+#: 03030203.xhp#hd_id3149416.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030203.xhp\" name=\"Now Function [Runtime]\">Now Function [Runtime]</link>"
+msgstr ""
+
+#: 03030203.xhp#par_id3149670.2.help.text
+msgid "Returns the current system date and time as a <emph>Date</emph> value."
+msgstr ""
+
+#: 03030203.xhp#hd_id3149456.3.help.text
+msgctxt "03030203.xhp#hd_id3149456.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03030203.xhp#par_id3149655.4.help.text
+msgid "Now"
+msgstr ""
+
+#: 03030203.xhp#hd_id3154366.5.help.text
+msgctxt "03030203.xhp#hd_id3154366.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03030203.xhp#par_id3154909.6.help.text
+msgctxt "03030203.xhp#par_id3154909.6.help.text"
+msgid "Date"
+msgstr ""
+
+#: 03030203.xhp#hd_id3147229.7.help.text
+msgctxt "03030203.xhp#hd_id3147229.7.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03030203.xhp#par_id3145172.8.help.text
+msgid "Sub ExampleNow"
+msgstr ""
+
+#: 03030203.xhp#par_id3150870.9.help.text
+msgid "msgbox \"It is now \" & Now"
+msgstr ""
+
+#: 03030203.xhp#par_id3145787.10.help.text
+msgctxt "03030203.xhp#par_id3145787.10.help.text"
+msgid "End sub"
+msgstr ""
+
+#: 03131400.xhp#tit.help.text
+msgid "TwipsPerPixelY Function [Runtime]"
+msgstr ""
+
+#: 03131400.xhp#bm_id3150040.help.text
+msgid "<bookmark_value>TwipsPerPixelY function</bookmark_value>"
+msgstr ""
+
+#: 03131400.xhp#hd_id3150040.1.help.text
+msgid "<link href=\"text/sbasic/shared/03131400.xhp\" name=\"TwipsPerPixelY Function [Runtime]\">TwipsPerPixelY Function [Runtime]</link>"
+msgstr ""
+
+#: 03131400.xhp#par_id3154186.2.help.text
+msgid "Returns the number of twips that represent the height of a pixel."
+msgstr ""
+
+#: 03131400.xhp#hd_id3145090.3.help.text
+msgctxt "03131400.xhp#hd_id3145090.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03131400.xhp#par_id3153681.4.help.text
+msgid "n = TwipsPerPixelY"
+msgstr ""
+
+#: 03131400.xhp#hd_id3148473.5.help.text
+msgctxt "03131400.xhp#hd_id3148473.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03131400.xhp#par_id3154306.6.help.text
+msgctxt "03131400.xhp#par_id3154306.6.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03131400.xhp#hd_id3149235.7.help.text
+msgctxt "03131400.xhp#hd_id3149235.7.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03131400.xhp#par_id3150503.8.help.text
+msgctxt "03131400.xhp#par_id3150503.8.help.text"
+msgid "Sub ExamplePixelTwips"
+msgstr ""
+
+#: 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 ""
+
+#: 03131400.xhp#par_id3148944.10.help.text
+msgctxt "03131400.xhp#par_id3148944.10.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03020414.xhp#tit.help.text
+msgid "SetAttr Statement [Runtime]"
+msgstr ""
+
+#: 03020414.xhp#bm_id3147559.help.text
+msgid "<bookmark_value>SetAttr statement</bookmark_value>"
+msgstr ""
+
+#: 03020414.xhp#hd_id3147559.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020414.xhp\" name=\"SetAttr Statement [Runtime]\">SetAttr Statement [Runtime]</link>"
+msgstr ""
+
+#: 03020414.xhp#par_id3147264.2.help.text
+msgid "Sets the attribute information for a specified file."
+msgstr ""
+
+#: 03020414.xhp#hd_id3150359.3.help.text
+msgctxt "03020414.xhp#hd_id3150359.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020414.xhp#par_id3154365.4.help.text
+msgid "SetAttr FileName As String, Attribute As Integer"
+msgstr ""
+
+#: 03020414.xhp#hd_id3125863.5.help.text
+msgctxt "03020414.xhp#hd_id3125863.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020414.xhp#par_id3145786.8.help.text
+msgid "<emph>Value</emph>"
+msgstr ""
+
+#: 03020414.xhp#par_id3152596.9.help.text
+msgctxt "03020414.xhp#par_id3152596.9.help.text"
+msgid "0 : Normal files."
+msgstr ""
+
+#: 03020414.xhp#par_id3149262.10.help.text
+msgctxt "03020414.xhp#par_id3149262.10.help.text"
+msgid "1 : Read-only files."
+msgstr ""
+
+#: 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 ""
+
+#: 03020414.xhp#par_id3153093.14.help.text
+msgid "You can set multiple attributes by combining the respective values with a logic OR statement."
+msgstr ""
+
+#: 03020414.xhp#hd_id3147434.15.help.text
+msgctxt "03020414.xhp#hd_id3147434.15.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020414.xhp#par_id3154012.16.help.text
+msgctxt "03020414.xhp#par_id3154012.16.help.text"
+msgid "Sub ExampleSetGetAttr"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020414.xhp#par_id3151074.20.help.text
+msgctxt "03020414.xhp#par_id3151074.20.help.text"
+msgid "SetAttr \"c:\\test\\autoexec.sav\" ,0"
+msgstr ""
+
+#: 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 ""
+
+#: 03020414.xhp#par_id3149378.22.help.text
+msgctxt "03020414.xhp#par_id3149378.22.help.text"
+msgid "SetAttr \"c:\\test\\autoexec.sav\" ,1"
+msgstr ""
+
+#: 03020414.xhp#par_id3150716.23.help.text
+msgctxt "03020414.xhp#par_id3150716.23.help.text"
+msgid "print GetAttr( \"c:\\test\\autoexec.sav\" )"
+msgstr ""
+
+#: 03020414.xhp#par_id3154018.24.help.text
+msgctxt "03020414.xhp#par_id3154018.24.help.text"
+msgid "end"
+msgstr ""
+
+#: 03020414.xhp#par_id3149121.25.help.text
+msgctxt "03020414.xhp#par_id3149121.25.help.text"
+msgid "ErrorHandler:"
+msgstr ""
+
+#: 03020414.xhp#par_id3156275.26.help.text
+msgctxt "03020414.xhp#par_id3156275.26.help.text"
+msgid "Print Error"
+msgstr ""
+
+#: 03020414.xhp#par_id3153707.27.help.text
+msgctxt "03020414.xhp#par_id3153707.27.help.text"
+msgid "end"
+msgstr ""
+
+#: 03020414.xhp#par_id3145640.28.help.text
+msgctxt "03020414.xhp#par_id3145640.28.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03020200.xhp#tit.help.text
+msgid "File Input/Output Functions"
+msgstr ""
+
+#: 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 ""
+
+#: 03060500.xhp#tit.help.text
+msgid "Or-Operator [Runtime]"
+msgstr ""
+
+#: 03060500.xhp#bm_id3150986.help.text
+msgid "<bookmark_value>Or operator (logical)</bookmark_value>"
+msgstr ""
+
+#: 03060500.xhp#hd_id3150986.1.help.text
+msgid "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or-Operator [Runtime]\">Or Operator [Runtime]</link>"
+msgstr ""
+
+#: 03060500.xhp#par_id3148552.2.help.text
+msgid "Performs a logical OR disjunction on two expressions."
+msgstr ""
+
+#: 03060500.xhp#hd_id3148664.3.help.text
+msgctxt "03060500.xhp#hd_id3148664.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03060500.xhp#par_id3150358.4.help.text
+msgid "Result = Expression1 Or Expression2"
+msgstr ""
+
+#: 03060500.xhp#hd_id3151211.5.help.text
+msgctxt "03060500.xhp#hd_id3151211.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03060500.xhp#par_id3153192.6.help.text
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the disjunction."
+msgstr ""
+
+#: 03060500.xhp#par_id3147229.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to compare."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03060500.xhp#hd_id3161831.10.help.text
+msgctxt "03060500.xhp#hd_id3161831.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03060500.xhp#par_id3147427.11.help.text
+msgid "Sub ExampleOr"
+msgstr ""
+
+#: 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 ""
+
+#: 03060500.xhp#par_id3154014.13.help.text
+msgctxt "03060500.xhp#par_id3154014.13.help.text"
+msgid "Dim vOut as Variant"
+msgstr ""
+
+#: 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 ""
+
+#: 03060500.xhp#par_id3152460.15.help.text
+msgid "vOut = vA > vB Or vB > vC REM -1"
+msgstr ""
+
+#: 03060500.xhp#par_id3147349.16.help.text
+msgid "vOut = vB > vA Or vB > vC REM -1"
+msgstr ""
+
+#: 03060500.xhp#par_id3151114.17.help.text
+msgid "vOut = vA > vB Or vB > vD REM -1"
+msgstr ""
+
+#: 03060500.xhp#par_id3153726.18.help.text
+msgid "vOut = (vB > vD Or vB > vA) REM 0"
+msgstr ""
+
+#: 03060500.xhp#par_id3152598.19.help.text
+msgid "vOut = vB Or vA REM 10"
+msgstr ""
+
+#: 03060500.xhp#par_id3150420.20.help.text
+msgctxt "03060500.xhp#par_id3150420.20.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03120102.xhp#tit.help.text
+msgid "Chr Function [Runtime]"
+msgstr ""
+
+#: 03120102.xhp#bm_id3149205.help.text
+msgid "<bookmark_value>Chr function</bookmark_value>"
+msgstr ""
+
+#: 03120102.xhp#hd_id3149205.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120102.xhp\" name=\"Chr Function [Runtime]\">Chr Function [Runtime]</link>"
+msgstr ""
+
+#: 03120102.xhp#par_id3153311.2.help.text
+msgid "Returns the character that corresponds to the specified character code."
+msgstr ""
+
+#: 03120102.xhp#hd_id3149514.3.help.text
+msgctxt "03120102.xhp#hd_id3149514.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03120102.xhp#par_id3150669.4.help.text
+msgid "Chr(Expression As Integer)"
+msgstr ""
+
+#: 03120102.xhp#hd_id3143228.5.help.text
+msgctxt "03120102.xhp#hd_id3143228.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03120102.xhp#par_id3153824.6.help.text
+msgctxt "03120102.xhp#par_id3153824.6.help.text"
+msgid "String"
+msgstr ""
+
+#: 03120102.xhp#hd_id3148944.7.help.text
+msgctxt "03120102.xhp#hd_id3148944.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03120102.xhp#hd_id3154366.10.help.text
+msgctxt "03120102.xhp#hd_id3154366.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03120102.xhp#par_id3144502.11.help.text
+msgid "sub ExampleChr"
+msgstr ""
+
+#: 03120102.xhp#par_id3154909.12.help.text
+msgid "REM This example inserts quotation marks (ASCII value 34) in a string."
+msgstr ""
+
+#: 03120102.xhp#par_id3151380.13.help.text
+msgid "MsgBox \"A \"+ Chr$(34)+\"short\" + Chr$(34)+\" trip.\""
+msgstr ""
+
+#: 03120102.xhp#par_id3145174.14.help.text
+msgid "REM The printout appears in the dialog as: A \"short\" trip."
+msgstr ""
+
+#: 03120102.xhp#par_id3154685.15.help.text
+msgctxt "03120102.xhp#par_id3154685.15.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03120102.xhp#par_idN10668.help.text
+msgid "<link href=\"text/sbasic/shared/03120101.xhp\">ASC</link>"
+msgstr ""
+
+#: 01000000.xhp#tit.help.text
+msgid "Programming with $[officename] Basic "
+msgstr ""
+
+#: 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 ""
+
+#: 01000000.xhp#par_id3153708.2.help.text
+msgid "This is where you find general information about working with macros and $[officename] Basic."
+msgstr ""
+
+#: 03030302.xhp#tit.help.text
+msgid "Time Statement [Runtime]"
+msgstr ""
+
+#: 03030302.xhp#bm_id3145090.help.text
+msgid "<bookmark_value>Time statement</bookmark_value>"
+msgstr ""
+
+#: 03030302.xhp#hd_id3145090.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030302.xhp\">Time Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03030302.xhp#hd_id3154346.3.help.text
+msgctxt "03030302.xhp#hd_id3154346.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03030302.xhp#par_id3149670.4.help.text
+msgid "Time"
+msgstr "Час"
+
+#: 03030302.xhp#hd_id3150792.5.help.text
+msgctxt "03030302.xhp#hd_id3150792.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03030302.xhp#hd_id3145173.7.help.text
+msgctxt "03030302.xhp#hd_id3145173.7.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03030302.xhp#par_id3156281.8.help.text
+msgid "Sub ExampleTime"
+msgstr ""
+
+#: 03030302.xhp#par_id3150870.9.help.text
+msgid "MsgBox Time,0,\"The time is\""
+msgstr ""
+
+#: 03030302.xhp#par_id3154123.10.help.text
+msgctxt "03030302.xhp#par_id3154123.10.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03090404.xhp#tit.help.text
+msgid "End Statement [Runtime]"
+msgstr ""
+
+#: 03090404.xhp#bm_id3150771.help.text
+msgid "<bookmark_value>End statement</bookmark_value>"
+msgstr ""
+
+#: 03090404.xhp#hd_id3150771.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"End Statement [Runtime]\">End Statement [Runtime]</link>"
+msgstr ""
+
+#: 03090404.xhp#par_id3153126.2.help.text
+msgid "Ends a procedure or block."
+msgstr ""
+
+#: 03090404.xhp#hd_id3147264.3.help.text
+msgctxt "03090404.xhp#hd_id3147264.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03090404.xhp#par_id3148552.4.help.text
+msgid "End, End Function, End If, End Select, End Sub"
+msgstr ""
+
+#: 03090404.xhp#hd_id3149456.5.help.text
+msgctxt "03090404.xhp#hd_id3149456.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03090404.xhp#par_id3150398.6.help.text
+msgid "Use the End statement as follows:"
+msgstr ""
+
+#: 03090404.xhp#hd_id3154366.7.help.text
+msgid "Statement"
+msgstr ""
+
+#: 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 ""
+
+#: 03090404.xhp#par_id3145171.9.help.text
+msgid "End Function: Ends a <emph>Function</emph> statement."
+msgstr ""
+
+#: 03090404.xhp#par_id3153192.10.help.text
+msgid "End If: Marks the end of a <emph>If...Then...Else</emph> block."
+msgstr ""
+
+#: 03090404.xhp#par_id3148451.11.help.text
+msgid "End Select: Marks the end of a <emph>Select Case</emph> block."
+msgstr ""
+
+#: 03090404.xhp#par_id3155131.12.help.text
+msgid "End Sub: Ends a <emph>Sub</emph> statement."
+msgstr ""
+
+#: 03090404.xhp#hd_id3146120.13.help.text
+msgctxt "03090404.xhp#hd_id3146120.13.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03090404.xhp#par_id3146985.14.help.text
+msgctxt "03090404.xhp#par_id3146985.14.help.text"
+msgid "Sub ExampleRandomSelect"
+msgstr ""
+
+#: 03090404.xhp#par_id3153363.15.help.text
+msgctxt "03090404.xhp#par_id3153363.15.help.text"
+msgid "Dim iVar As Integer"
+msgstr ""
+
+#: 03090404.xhp#par_id3153727.16.help.text
+msgctxt "03090404.xhp#par_id3153727.16.help.text"
+msgid "iVar = Int((15 * Rnd) -2)"
+msgstr ""
+
+#: 03090404.xhp#par_id3150011.17.help.text
+msgctxt "03090404.xhp#par_id3150011.17.help.text"
+msgid "Select Case iVar"
+msgstr ""
+
+#: 03090404.xhp#par_id3149481.18.help.text
+msgctxt "03090404.xhp#par_id3149481.18.help.text"
+msgid "Case 1 To 5"
+msgstr ""
+
+#: 03090404.xhp#par_id3152887.19.help.text
+msgctxt "03090404.xhp#par_id3152887.19.help.text"
+msgid "Print \"Number from 1 to 5\""
+msgstr ""
+
+#: 03090404.xhp#par_id3163713.20.help.text
+msgctxt "03090404.xhp#par_id3163713.20.help.text"
+msgid "Case 6, 7, 8"
+msgstr ""
+
+#: 03090404.xhp#par_id3148618.21.help.text
+msgctxt "03090404.xhp#par_id3148618.21.help.text"
+msgid "Print \"Number from 6 to 8\""
+msgstr ""
+
+#: 03090404.xhp#par_id3153144.22.help.text
+msgctxt "03090404.xhp#par_id3153144.22.help.text"
+msgid "Case Is > 8 And iVar < 11"
+msgstr ""
+
+#: 03090404.xhp#par_id3147436.23.help.text
+msgctxt "03090404.xhp#par_id3147436.23.help.text"
+msgid "Print \"Greater than 8\""
+msgstr ""
+
+#: 03090404.xhp#par_id3155418.24.help.text
+msgctxt "03090404.xhp#par_id3155418.24.help.text"
+msgid "Case Else"
+msgstr ""
+
+#: 03090404.xhp#par_id3150418.25.help.text
+msgctxt "03090404.xhp#par_id3150418.25.help.text"
+msgid "Print \"Outside range 1 to 10\""
+msgstr ""
+
+#: 03090404.xhp#par_id3156285.26.help.text
+msgctxt "03090404.xhp#par_id3156285.26.help.text"
+msgid "End Select"
+msgstr ""
+
+#: 03090404.xhp#par_id3149582.27.help.text
+msgctxt "03090404.xhp#par_id3149582.27.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03090000.xhp#tit.help.text
+msgid "Controlling Program Execution"
+msgstr ""
+
+#: 03090000.xhp#hd_id3145136.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090000.xhp\" name=\"Controlling Program Execution\">Controlling Program Execution</link>"
+msgstr ""
+
+#: 03090000.xhp#par_id3143268.2.help.text
+msgid "The following statements control the execution of a program."
+msgstr ""
+
+#: 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 ""
+
+#: 03090202.xhp#tit.help.text
+msgid "For...Next Statement [Runtime]"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03090202.xhp#par_id3143267.2.help.text
+msgid "Repeats the statements between the For...Next block a specified number of times."
+msgstr ""
+
+#: 03090202.xhp#hd_id3156153.3.help.text
+msgctxt "03090202.xhp#hd_id3156153.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03090202.xhp#par_id3148473.4.help.text
+msgid "For counter=start To end [Step step]"
+msgstr ""
+
+#: 03090202.xhp#par_id3156024.5.help.text
+msgctxt "03090202.xhp#par_id3156024.5.help.text"
+msgid "statement block"
+msgstr ""
+
+#: 03090202.xhp#par_id3146796.6.help.text
+msgid "[Exit For]"
+msgstr ""
+
+#: 03090202.xhp#par_id3159414.7.help.text
+msgctxt "03090202.xhp#par_id3159414.7.help.text"
+msgid "statement block"
+msgstr ""
+
+#: 03090202.xhp#par_id3153897.8.help.text
+msgid "Next [counter]"
+msgstr ""
+
+#: 03090202.xhp#hd_id3150400.9.help.text
+#, fuzzy
+msgid "Variables:"
+msgstr "Змінні"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03090202.xhp#par_id3153190.20.help.text
+msgid "For..."
+msgstr ""
+
+#: 03090202.xhp#par_id3149482.21.help.text
+msgctxt "03090202.xhp#par_id3149482.21.help.text"
+msgid "statements"
+msgstr ""
+
+#: 03090202.xhp#par_id3147124.22.help.text
+msgid "If condition = True Then Exit For"
+msgstr ""
+
+#: 03090202.xhp#par_id3153159.23.help.text
+msgctxt "03090202.xhp#par_id3153159.23.help.text"
+msgid "statements"
+msgstr ""
+
+#: 03090202.xhp#par_id3154096.24.help.text
+msgid "Next"
+msgstr "Далі"
+
+#: 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 ""
+
+#: 03090202.xhp#hd_id3148457.26.help.text
+msgctxt "03090202.xhp#hd_id3148457.26.help.text"
+msgid "Example"
+msgstr ""
+
+#: 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 ""
+
+#: 03090202.xhp#par_id3155603.28.help.text
+msgid "Sub ExampleSort"
+msgstr ""
+
+#: 03090202.xhp#par_id3156275.29.help.text
+msgid "Dim sEntry(9) As String"
+msgstr ""
+
+#: 03090202.xhp#par_id3155066.30.help.text
+msgctxt "03090202.xhp#par_id3155066.30.help.text"
+msgid "Dim iCount As Integer"
+msgstr ""
+
+#: 03090202.xhp#par_id3150751.31.help.text
+msgid "Dim iCount2 As Integer"
+msgstr ""
+
+#: 03090202.xhp#par_id3155446.32.help.text
+msgctxt "03090202.xhp#par_id3155446.32.help.text"
+msgid "Dim sTemp As String"
+msgstr ""
+
+#: 03090202.xhp#par_id3155767.42.help.text
+msgid "sEntry(0) = \"Jerry\""
+msgstr ""
+
+#: 03090202.xhp#par_id3153711.33.help.text
+msgid "sEntry(1) = \"Patty\""
+msgstr ""
+
+#: 03090202.xhp#par_id3148993.34.help.text
+msgid "sEntry(2) = \"Kurt\""
+msgstr ""
+
+#: 03090202.xhp#par_id3156382.35.help.text
+msgid "sEntry(3) = \"Thomas\""
+msgstr ""
+
+#: 03090202.xhp#par_id3155174.36.help.text
+msgid "sEntry(4) = \"Michael\""
+msgstr ""
+
+#: 03090202.xhp#par_id3166448.37.help.text
+msgid "sEntry(5) = \"David\""
+msgstr ""
+
+#: 03090202.xhp#par_id3149255.38.help.text
+msgid "sEntry(6) = \"Cathy\""
+msgstr ""
+
+#: 03090202.xhp#par_id3149565.39.help.text
+msgid "sEntry(7) = \"Susie\""
+msgstr ""
+
+#: 03090202.xhp#par_id3145148.40.help.text
+msgid "sEntry(8) = \"Edward\""
+msgstr ""
+
+#: 03090202.xhp#par_id3145229.41.help.text
+msgid "sEntry(9) = \"Christine\""
+msgstr ""
+
+#: 03090202.xhp#par_id3149107.44.help.text
+msgctxt "03090202.xhp#par_id3149107.44.help.text"
+msgid "For iCount = 0 To 9"
+msgstr ""
+
+#: 03090202.xhp#par_id3148485.45.help.text
+msgid "For iCount2 = iCount + 1 To 9"
+msgstr ""
+
+#: 03090202.xhp#par_id3155608.46.help.text
+msgid "If sEntry(iCount) > sEntry(iCount2) Then"
+msgstr ""
+
+#: 03090202.xhp#par_id3150938.47.help.text
+msgid "sTemp = sEntry(iCount)"
+msgstr ""
+
+#: 03090202.xhp#par_id3153790.48.help.text
+msgid "sEntry(iCount) = sEntry(iCount2)"
+msgstr ""
+
+#: 03090202.xhp#par_id3149210.49.help.text
+msgid "sEntry(iCount2) = sTemp"
+msgstr ""
+
+#: 03090202.xhp#par_id3153781.50.help.text
+msgctxt "03090202.xhp#par_id3153781.50.help.text"
+msgid "End If"
+msgstr ""
+
+#: 03090202.xhp#par_id3158446.51.help.text
+msgid "Next iCount2"
+msgstr ""
+
+#: 03090202.xhp#par_id3150783.52.help.text
+msgctxt "03090202.xhp#par_id3150783.52.help.text"
+msgid "Next iCount"
+msgstr ""
+
+#: 03090202.xhp#par_id3151278.57.help.text
+msgctxt "03090202.xhp#par_id3151278.57.help.text"
+msgid "For iCount = 0 To 9"
+msgstr ""
+
+#: 03090202.xhp#par_id3148462.58.help.text
+msgid "Print sEntry(iCount)"
+msgstr ""
+
+#: 03090202.xhp#par_id3149528.59.help.text
+msgctxt "03090202.xhp#par_id3149528.59.help.text"
+msgid "Next iCount"
+msgstr ""
+
+#: 03090202.xhp#par_id3152580.60.help.text
+msgctxt "03090202.xhp#par_id3152580.60.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03010101.xhp#tit.help.text
+msgid "MsgBox Statement [Runtime]"
+msgstr ""
+
+#: 03010101.xhp#bm_id1807916.help.text
+msgid "<bookmark_value>MsgBox statement</bookmark_value>"
+msgstr ""
+
+#: 03010101.xhp#hd_id3154927.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010101.xhp\">MsgBox Statement [Runtime]</link>"
+msgstr ""
+
+#: 03010101.xhp#par_id3148947.2.help.text
+msgid "Displays a dialog box containing a message."
+msgstr ""
+
+#: 03010101.xhp#hd_id3153897.3.help.text
+msgctxt "03010101.xhp#hd_id3153897.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 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 ""
+
+#: 03010101.xhp#hd_id3153361.5.help.text
+msgctxt "03010101.xhp#hd_id3153361.5.help.text"
+msgid "Parameter:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03010101.xhp#par_id3161832.9.help.text
+msgctxt "03010101.xhp#par_id3161832.9.help.text"
+msgid "0 : Display OK button only."
+msgstr ""
+
+#: 03010101.xhp#par_id3153726.10.help.text
+msgctxt "03010101.xhp#par_id3153726.10.help.text"
+msgid "1 : Display OK and Cancel buttons."
+msgstr ""
+
+#: 03010101.xhp#par_id3149665.11.help.text
+msgctxt "03010101.xhp#par_id3149665.11.help.text"
+msgid "2 : Display Abort, Retry, and Ignore buttons."
+msgstr ""
+
+#: 03010101.xhp#par_id3147318.12.help.text
+msgid "3 : Display Yes, No and Cancel buttons."
+msgstr ""
+
+#: 03010101.xhp#par_id3155412.13.help.text
+msgctxt "03010101.xhp#par_id3155412.13.help.text"
+msgid "4 : Display Yes and No buttons."
+msgstr ""
+
+#: 03010101.xhp#par_id3146119.14.help.text
+msgctxt "03010101.xhp#par_id3146119.14.help.text"
+msgid "5 : Display Retry and Cancel buttons."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03010101.xhp#par_id3147350.17.help.text
+msgid "48 : Add the Exclamation icon to the dialog."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03010101.xhp#hd_id3150715.22.help.text
+msgctxt "03010101.xhp#hd_id3150715.22.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03010101.xhp#par_id3154511.23.help.text
+msgctxt "03010101.xhp#par_id3154511.23.help.text"
+msgid "Sub ExampleMsgBox"
+msgstr ""
+
+#: 03010101.xhp#par_id3150327.24.help.text
+msgid "Const sText1 = \"An unexpected error occurred.\""
+msgstr ""
+
+#: 03010101.xhp#par_id3146912.25.help.text
+msgid "Const sText2 = \"The program execution will continue, however.\""
+msgstr ""
+
+#: 03010101.xhp#par_id3154757.26.help.text
+msgid "Const sText3 = \"Error\""
+msgstr ""
+
+#: 03010101.xhp#par_id3155445.27.help.text
+msgid "MsgBox(sText1 + Chr(13) + sText2,16,sText3)"
+msgstr ""
+
+#: 03010101.xhp#par_id3155768.28.help.text
+msgctxt "03010101.xhp#par_id3155768.28.help.text"
+msgid "End sub"
+msgstr ""
+
+#: 03132200.xhp#tit.help.text
+msgid "ThisComponent Statement [Runtime]"
+msgstr ""
+
+#: 03132200.xhp#bm_id3155342.help.text
+msgid "<bookmark_value>ThisComponent property</bookmark_value><bookmark_value>components;addressing</bookmark_value>"
+msgstr ""
+
+#: 03132200.xhp#hd_id3155342.1.help.text
+msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent [Runtime]\">ThisComponent [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03132200.xhp#hd_id3154346.3.help.text
+msgctxt "03132200.xhp#hd_id3154346.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03132200.xhp#par_id3151056.4.help.text
+msgid "ThisComponent"
+msgstr ""
+
+#: 03132200.xhp#hd_id3154940.5.help.text
+msgctxt "03132200.xhp#hd_id3154940.5.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03132200.xhp#par_id3151211.6.help.text
+msgctxt "03132200.xhp#par_id3151211.6.help.text"
+msgid "Sub Main"
+msgstr ""
+
+#: 03132200.xhp#par_id3154123.7.help.text
+msgid " REM updates the \"Table of Contents\" in a text doc"
+msgstr ""
+
+#: 03132200.xhp#par_id3151381.8.help.text
+msgid " Dim allindexes, index As Object"
+msgstr ""
+
+#: 03132200.xhp#par_id3150769.9.help.text
+msgid " allindexes = ThisComponent.getDocumentIndexes()"
+msgstr ""
+
+#: 03132200.xhp#par_id3153194.10.help.text
+msgid " index = allindexes.getByName(\"Table of Contents1\")"
+msgstr ""
+
+#: 03132200.xhp#par_id3156422.11.help.text
+msgid " REM use the default name for Table of Contents and a 1"
+msgstr ""
+
+#: 03132200.xhp#par_id3153368.12.help.text
+msgid " index.update()"
+msgstr ""
+
+#: 03132200.xhp#par_id3161832.13.help.text
+msgctxt "03132200.xhp#par_id3161832.13.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03102200.xhp#tit.help.text
+msgid "IsArray Function [Runtime]"
+msgstr ""
+
+#: 03102200.xhp#bm_id3154346.help.text
+msgid "<bookmark_value>IsArray function</bookmark_value>"
+msgstr ""
+
+#: 03102200.xhp#hd_id3154346.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102200.xhp\" name=\"IsArray Function [Runtime]\">IsArray Function [Runtime]</link>"
+msgstr ""
+
+#: 03102200.xhp#par_id3159413.2.help.text
+msgid "Determines if a variable is a data field in an array."
+msgstr ""
+
+#: 03102200.xhp#hd_id3150792.3.help.text
+msgctxt "03102200.xhp#hd_id3150792.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03102200.xhp#par_id3153379.4.help.text
+msgid "IsArray (Var)"
+msgstr ""
+
+#: 03102200.xhp#hd_id3154365.5.help.text
+msgctxt "03102200.xhp#hd_id3154365.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03102200.xhp#par_id3154685.6.help.text
+msgctxt "03102200.xhp#par_id3154685.6.help.text"
+msgid "Bool"
+msgstr ""
+
+#: 03102200.xhp#hd_id3153969.7.help.text
+msgctxt "03102200.xhp#hd_id3153969.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03102200.xhp#hd_id3155131.9.help.text
+msgctxt "03102200.xhp#hd_id3155131.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03102200.xhp#par_id3153365.10.help.text
+msgid "Sub ExampleIsArray"
+msgstr ""
+
+#: 03102200.xhp#par_id3150487.11.help.text
+msgid "Dim sDatf(10) as String"
+msgstr ""
+
+#: 03102200.xhp#par_id3155414.12.help.text
+msgid "print isarray(sdatf())"
+msgstr ""
+
+#: 03102200.xhp#par_id3153727.13.help.text
+msgctxt "03102200.xhp#par_id3153727.13.help.text"
+msgid "end Sub"
+msgstr ""
+
+#: 03080802.xhp#tit.help.text
+msgid "Oct Function [Runtime]"
+msgstr ""
+
+#: 03080802.xhp#bm_id3155420.help.text
+msgid "<bookmark_value>Oct function</bookmark_value>"
+msgstr ""
+
+#: 03080802.xhp#hd_id3155420.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080802.xhp\" name=\"Oct Function [Runtime]\">Oct Function [Runtime]</link>"
+msgstr ""
+
+#: 03080802.xhp#par_id3154924.2.help.text
+msgid "Returns the octal value of a number."
+msgstr ""
+
+#: 03080802.xhp#hd_id3148947.3.help.text
+msgctxt "03080802.xhp#hd_id3148947.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03080802.xhp#par_id3150543.4.help.text
+msgid "Oct (Number)"
+msgstr ""
+
+#: 03080802.xhp#hd_id3153360.5.help.text
+msgctxt "03080802.xhp#hd_id3153360.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03080802.xhp#par_id3154138.6.help.text
+msgctxt "03080802.xhp#par_id3154138.6.help.text"
+msgid "String"
+msgstr ""
+
+#: 03080802.xhp#hd_id3156422.7.help.text
+msgctxt "03080802.xhp#hd_id3156422.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03080802.xhp#par_id3150768.8.help.text
+msgid "<emph>Number:</emph> Any numeric expression that you want to convert to an octal value."
+msgstr ""
+
+#: 03080802.xhp#hd_id3148672.9.help.text
+msgctxt "03080802.xhp#hd_id3148672.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03080802.xhp#par_id3147287.10.help.text
+msgid "Sub ExampleOkt"
+msgstr ""
+
+#: 03080802.xhp#par_id3161831.11.help.text
+msgid "Msgbox Oct(255)"
+msgstr ""
+
+#: 03080802.xhp#par_id3147318.12.help.text
+msgctxt "03080802.xhp#par_id3147318.12.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03120308.xhp#tit.help.text
+msgid "RSet Statement [Runtime]"
+msgstr ""
+
+#: 03120308.xhp#bm_id3153345.help.text
+msgid "<bookmark_value>RSet statement</bookmark_value>"
+msgstr ""
+
+#: 03120308.xhp#hd_id3153345.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03120308.xhp#hd_id3149234.3.help.text
+msgctxt "03120308.xhp#hd_id3149234.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03120308.xhp#par_id3150669.4.help.text
+msgid "RSet Text As String = Text or RSet Variable1 = Variable2"
+msgstr ""
+
+#: 03120308.xhp#hd_id3156024.5.help.text
+msgctxt "03120308.xhp#hd_id3156024.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03120308.xhp#par_id3148552.6.help.text
+msgid "<emph>Text:</emph> Any string variable."
+msgstr ""
+
+#: 03120308.xhp#par_id3154924.7.help.text
+msgid "<emph>Text</emph>: String that you want to right-align in the string variable."
+msgstr ""
+
+#: 03120308.xhp#par_id3149456.8.help.text
+msgid "<emph>Variable1:</emph> User-defined variable that is the target for the copied variable."
+msgstr ""
+
+#: 03120308.xhp#par_id3153381.9.help.text
+msgid "<emph>Variable2:</emph> User-defined variable that you want to copy to another variable."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03120308.xhp#hd_id3154909.13.help.text
+msgctxt "03120308.xhp#hd_id3154909.13.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03120308.xhp#par_id3154218.14.help.text
+msgctxt "03120308.xhp#par_id3154218.14.help.text"
+msgid "Sub ExampleRLSet"
+msgstr ""
+
+#: 03120308.xhp#par_id3147288.15.help.text
+msgid "Dim sVar as string"
+msgstr ""
+
+#: 03120308.xhp#par_id3153367.16.help.text
+msgid "Dim sExpr as string"
+msgstr ""
+
+#: 03120308.xhp#par_id3153952.18.help.text
+msgctxt "03120308.xhp#par_id3153952.18.help.text"
+msgid "sVar = String(40,\"*\")"
+msgstr ""
+
+#: 03120308.xhp#par_id3154013.19.help.text
+msgctxt "03120308.xhp#par_id3154013.19.help.text"
+msgid "sExpr = \"SBX\""
+msgstr ""
+
+#: 03120308.xhp#par_id3155856.20.help.text
+msgid "REM Right-align \"SBX\" in a 40-character string"
+msgstr ""
+
+#: 03120308.xhp#par_id3152577.21.help.text
+msgctxt "03120308.xhp#par_id3152577.21.help.text"
+msgid "REM Replace asterisks with spaces"
+msgstr ""
+
+#: 03120308.xhp#par_id3149260.22.help.text
+msgctxt "03120308.xhp#par_id3149260.22.help.text"
+msgid "RSet sVar = sExpr"
+msgstr ""
+
+#: 03120308.xhp#par_id3156444.23.help.text
+msgctxt "03120308.xhp#par_id3156444.23.help.text"
+msgid "Print \">\"; sVar; \"<\""
+msgstr ""
+
+#: 03120308.xhp#par_id3148575.25.help.text
+msgctxt "03120308.xhp#par_id3148575.25.help.text"
+msgid "sVar = String(5,\"*\")"
+msgstr ""
+
+#: 03120308.xhp#par_id3153140.26.help.text
+msgctxt "03120308.xhp#par_id3153140.26.help.text"
+msgid "sExpr = \"123457896\""
+msgstr ""
+
+#: 03120308.xhp#par_id3153144.27.help.text
+msgctxt "03120308.xhp#par_id3153144.27.help.text"
+msgid "RSet sVar = sExpr"
+msgstr ""
+
+#: 03120308.xhp#par_id3150116.28.help.text
+msgctxt "03120308.xhp#par_id3150116.28.help.text"
+msgid "Print \">\"; sVar; \"<\""
+msgstr ""
+
+#: 03120308.xhp#par_id3154491.30.help.text
+msgctxt "03120308.xhp#par_id3154491.30.help.text"
+msgid "sVar = String(40,\"*\")"
+msgstr ""
+
+#: 03120308.xhp#par_id3149412.31.help.text
+msgctxt "03120308.xhp#par_id3149412.31.help.text"
+msgid "sExpr = \"SBX\""
+msgstr ""
+
+#: 03120308.xhp#par_id3145801.32.help.text
+msgid "REM Left-align \"SBX\" in a 40-character string"
+msgstr ""
+
+#: 03120308.xhp#par_id3145646.33.help.text
+msgctxt "03120308.xhp#par_id3145646.33.help.text"
+msgid "LSet sVar = sExpr"
+msgstr ""
+
+#: 03120308.xhp#par_id3154511.34.help.text
+msgctxt "03120308.xhp#par_id3154511.34.help.text"
+msgid "Print \">\"; sVar; \"<\""
+msgstr ""
+
+#: 03120308.xhp#par_id3153839.36.help.text
+msgctxt "03120308.xhp#par_id3153839.36.help.text"
+msgid "sVar = String(5,\"*\")"
+msgstr ""
+
+#: 03120308.xhp#par_id3149122.37.help.text
+msgctxt "03120308.xhp#par_id3149122.37.help.text"
+msgid "sExpr = \"123456789\""
+msgstr ""
+
+#: 03120308.xhp#par_id3150330.38.help.text
+msgctxt "03120308.xhp#par_id3150330.38.help.text"
+msgid "LSet sVar = sExpr"
+msgstr ""
+
+#: 03120308.xhp#par_id3154480.39.help.text
+msgctxt "03120308.xhp#par_id3154480.39.help.text"
+msgid "Print \">\"; sVar; \"<\""
+msgstr ""
+
+#: 03120308.xhp#par_id3148914.40.help.text
+msgctxt "03120308.xhp#par_id3148914.40.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03020405.xhp#tit.help.text
+msgid "FileAttr-Function [Runtime]"
+msgstr ""
+
+#: 03020405.xhp#bm_id3153380.help.text
+msgid "<bookmark_value>FileAttr function</bookmark_value>"
+msgstr ""
+
+#: 03020405.xhp#hd_id3153380.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"FileAttr-Function [Runtime]\">FileAttr Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020405.xhp#par_id3163713.4.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
+msgstr ""
+
+#: 03020405.xhp#hd_id3151116.5.help.text
+msgctxt "03020405.xhp#hd_id3151116.5.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020405.xhp#par_id3154012.6.help.text
+msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
+msgstr ""
+
+#: 03020405.xhp#hd_id3147349.7.help.text
+msgctxt "03020405.xhp#hd_id3147349.7.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03020405.xhp#par_id3146974.8.help.text
+msgctxt "03020405.xhp#par_id3146974.8.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03020405.xhp#hd_id3153728.9.help.text
+msgctxt "03020405.xhp#hd_id3153728.9.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03020405.xhp#par_id3151074.10.help.text
+msgid "<emph>FileNumber:</emph> The number of the file that was opened with the Open statement."
+msgstr ""
+
+#: 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 ""
+
+#: 03020405.xhp#par_id3147396.12.help.text
+msgid "1: The FileAttr-Function indicates the access mode of the file."
+msgstr ""
+
+#: 03020405.xhp#par_id3149959.13.help.text
+msgid "2: The FileAttr-Function returns the file access number of the operating system."
+msgstr ""
+
+#: 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 ""
+
+#: 03020405.xhp#par_id3149124.15.help.text
+msgid "1 - INPUT (file open for input)"
+msgstr ""
+
+#: 03020405.xhp#par_id3156275.16.help.text
+msgid "2 - OUTPUT (file open for output)"
+msgstr ""
+
+#: 03020405.xhp#par_id3155066.17.help.text
+msgid "4 - RANDOM (file open for random access)"
+msgstr ""
+
+#: 03020405.xhp#par_id3148406.18.help.text
+msgid "8 - APPEND (file open for appending)"
+msgstr ""
+
+#: 03020405.xhp#par_id3154757.19.help.text
+msgid "32 - BINARY (file open in binary mode)."
+msgstr ""
+
+#: 03020405.xhp#hd_id3147339.20.help.text
+msgctxt "03020405.xhp#hd_id3147339.20.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020405.xhp#par_id3155959.21.help.text
+msgid "Sub ExampleFileAttr"
+msgstr ""
+
+#: 03020405.xhp#par_id3145147.22.help.text
+msgctxt "03020405.xhp#par_id3145147.22.help.text"
+msgid "Dim iNumber As Integer"
+msgstr ""
+
+#: 03020405.xhp#par_id3153966.23.help.text
+msgctxt "03020405.xhp#par_id3153966.23.help.text"
+msgid "Dim sLine As String"
+msgstr ""
+
+#: 03020405.xhp#par_id3155336.24.help.text
+msgctxt "03020405.xhp#par_id3155336.24.help.text"
+msgid "Dim aFile As String"
+msgstr ""
+
+#: 03020405.xhp#par_id3163807.25.help.text
+msgctxt "03020405.xhp#par_id3163807.25.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr ""
+
+#: 03020405.xhp#par_id3154021.27.help.text
+msgctxt "03020405.xhp#par_id3154021.27.help.text"
+msgid "iNumber = Freefile"
+msgstr ""
+
+#: 03020405.xhp#par_id3153786.28.help.text
+msgctxt "03020405.xhp#par_id3153786.28.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr ""
+
+#: 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 ""
+
+#: 03020405.xhp#par_id3150361.30.help.text
+msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
+msgstr ""
+
+#: 03020405.xhp#par_id3149817.31.help.text
+msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
+msgstr ""
+
+#: 03020405.xhp#par_id3155115.32.help.text
+msgctxt "03020405.xhp#par_id3155115.32.help.text"
+msgid "Close #iNumber"
+msgstr ""
+
+#: 03020405.xhp#par_id3147130.33.help.text
+msgctxt "03020405.xhp#par_id3147130.33.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 01030100.xhp#tit.help.text
+msgid "IDE Overview"
+msgstr ""
+
+#: 01030100.xhp#hd_id3147291.1.help.text
+msgid "<link href=\"text/sbasic/shared/01030100.xhp\" name=\"IDE Overview\">IDE Overview</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03010201.xhp#tit.help.text
+msgid "InputBox Function [Runtime]"
+msgstr ""
+
+#: 03010201.xhp#bm_id3148932.help.text
+msgid "<bookmark_value>InputBox function</bookmark_value>"
+msgstr ""
+
+#: 03010201.xhp#hd_id3148932.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010201.xhp\" name=\"InputBox Function [Runtime]\">InputBox Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03010201.xhp#hd_id3152347.4.help.text
+msgctxt "03010201.xhp#hd_id3152347.4.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 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 ""
+
+#: 03010201.xhp#hd_id3150713.6.help.text
+msgctxt "03010201.xhp#hd_id3150713.6.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03010201.xhp#par_id3145090.7.help.text
+msgctxt "03010201.xhp#par_id3145090.7.help.text"
+msgid "String"
+msgstr ""
+
+#: 03010201.xhp#hd_id3149346.8.help.text
+msgctxt "03010201.xhp#hd_id3149346.8.help.text"
+msgid "Parameter:"
+msgstr ""
+
+#: 03010201.xhp#par_id3153311.9.help.text
+msgid "<emph>Msg</emph>: String expression displayed as the message in the dialog box."
+msgstr ""
+
+#: 03010201.xhp#par_id3145315.10.help.text
+msgid "<emph>Title</emph>: String expression displayed in the title bar of the dialog box."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03010201.xhp#hd_id3149456.15.help.text
+msgctxt "03010201.xhp#hd_id3149456.15.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03010201.xhp#par_id3153379.16.help.text
+msgid "Sub ExampleInputBox"
+msgstr ""
+
+#: 03010201.xhp#par_id3149656.17.help.text
+msgctxt "03010201.xhp#par_id3149656.17.help.text"
+msgid "Dim sText As String"
+msgstr ""
+
+#: 03010201.xhp#par_id3154367.18.help.text
+msgid "sText = InputBox (\"Please enter a phrase:\",\"Dear User\")"
+msgstr ""
+
+#: 03010201.xhp#par_id3151042.19.help.text
+msgid "MsgBox ( sText , 64, \"Confirmation of phrase\")"
+msgstr ""
+
+#: 03010201.xhp#par_id3150768.20.help.text
+msgctxt "03010201.xhp#par_id3150768.20.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03070400.xhp#tit.help.text
+msgid "\"/\" Operator [Runtime]"
+msgstr ""
+
+#: 03070400.xhp#bm_id3150669.help.text
+msgid "<bookmark_value>\"/\" operator (mathematical)</bookmark_value>"
+msgstr ""
+
+#: 03070400.xhp#hd_id3150669.1.help.text
+msgid "<link href=\"text/sbasic/shared/03070400.xhp\">\"/\" Operator [Runtime]</link>"
+msgstr ""
+
+#: 03070400.xhp#par_id3149670.2.help.text
+msgid "Divides two values."
+msgstr ""
+
+#: 03070400.xhp#hd_id3148946.3.help.text
+msgctxt "03070400.xhp#hd_id3148946.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03070400.xhp#par_id3153360.4.help.text
+msgid "Result = Expression1 / Expression2 "
+msgstr ""
+
+#: 03070400.xhp#hd_id3150359.5.help.text
+msgctxt "03070400.xhp#hd_id3150359.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03070400.xhp#par_id3154141.6.help.text
+msgid "<emph>Result:</emph> Any numerical value that contains the result of the division."
+msgstr ""
+
+#: 03070400.xhp#par_id3150448.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to divide."
+msgstr ""
+
+#: 03070400.xhp#hd_id3154684.8.help.text
+msgctxt "03070400.xhp#hd_id3154684.8.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03070400.xhp#par_id3145786.9.help.text
+msgid "Sub ExampleDivision1"
+msgstr ""
+
+#: 03070400.xhp#par_id3153768.10.help.text
+msgid "Print 5 / 5"
+msgstr ""
+
+#: 03070400.xhp#par_id3161832.11.help.text
+msgctxt "03070400.xhp#par_id3161832.11.help.text"
+msgid "End sub"
+msgstr ""
+
+#: 03070400.xhp#par_id3149484.13.help.text
+msgid "Sub ExampleDivision2"
+msgstr ""
+
+#: 03070400.xhp#par_id3145365.14.help.text
+msgctxt "03070400.xhp#par_id3145365.14.help.text"
+msgid "Dim iValue1 as Integer"
+msgstr ""
+
+#: 03070400.xhp#par_id3146119.15.help.text
+msgctxt "03070400.xhp#par_id3146119.15.help.text"
+msgid "Dim iValue2 as Integer"
+msgstr ""
+
+#: 03070400.xhp#par_id3150011.16.help.text
+msgctxt "03070400.xhp#par_id3150011.16.help.text"
+msgid "iValue1 = 5"
+msgstr ""
+
+#: 03070400.xhp#par_id3153726.17.help.text
+msgctxt "03070400.xhp#par_id3153726.17.help.text"
+msgid "iValue2 = 10"
+msgstr ""
+
+#: 03070400.xhp#par_id3151117.18.help.text
+msgid "Print iValue1 / iValue2"
+msgstr ""
+
+#: 03070400.xhp#par_id3146975.19.help.text
+msgctxt "03070400.xhp#par_id3146975.19.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03060300.xhp#tit.help.text
+msgid "Imp-Operator [Runtime]"
+msgstr ""
+
+#: 03060300.xhp#bm_id3156024.help.text
+msgid "<bookmark_value>Imp operator (logical)</bookmark_value>"
+msgstr ""
+
+#: 03060300.xhp#hd_id3156024.1.help.text
+msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp-Operator [Runtime]\">Imp Operator [Runtime]</link>"
+msgstr ""
+
+#: 03060300.xhp#par_id3148947.2.help.text
+msgid "Performs a logical implication on two expressions."
+msgstr ""
+
+#: 03060300.xhp#hd_id3148664.3.help.text
+msgctxt "03060300.xhp#hd_id3148664.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03060300.xhp#par_id3149656.4.help.text
+msgid "Result = Expression1 Imp Expression2"
+msgstr ""
+
+#: 03060300.xhp#hd_id3151212.5.help.text
+msgctxt "03060300.xhp#hd_id3151212.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03060300.xhp#par_id3154910.6.help.text
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the implication."
+msgstr ""
+
+#: 03060300.xhp#par_id3156281.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to evaluate with the Imp operator."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03060300.xhp#hd_id3147318.10.help.text
+msgctxt "03060300.xhp#hd_id3147318.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03060300.xhp#par_id3155854.11.help.text
+msgid "Sub ExampleImp"
+msgstr ""
+
+#: 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 ""
+
+#: 03060300.xhp#par_id3159156.13.help.text
+msgctxt "03060300.xhp#par_id3159156.13.help.text"
+msgid "Dim vOut as Variant"
+msgstr ""
+
+#: 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 ""
+
+#: 03060300.xhp#par_id3145750.15.help.text
+msgid "vOut = A > B Imp B > C REM returns -1"
+msgstr ""
+
+#: 03060300.xhp#par_id3156441.16.help.text
+msgid "vOut = B > A Imp B > C REM returns -1"
+msgstr ""
+
+#: 03060300.xhp#par_id3152596.17.help.text
+msgid "vOut = A > B Imp B > D REM returns 0"
+msgstr ""
+
+#: 03060300.xhp#par_id3154942.18.help.text
+msgid "vOut = (B > D Imp B > A) REM returns -1"
+msgstr ""
+
+#: 03060300.xhp#par_id3154492.19.help.text
+msgid "vOut = B Imp A REM returns -1"
+msgstr ""
+
+#: 03060300.xhp#par_id3147394.20.help.text
+msgctxt "03060300.xhp#par_id3147394.20.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 00000003.xhp#tit.help.text
+msgctxt "00000003.xhp#tit.help.text"
+msgid "Information"
+msgstr ""
+
+#: 00000003.xhp#hd_id3148550.1.help.text
+msgctxt "00000003.xhp#hd_id3148550.1.help.text"
+msgid "Information"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 00000003.xhp#par_id3156424.2.help.text
+msgid "The color values of the 16 basic colors are as follows:"
+msgstr ""
+
+#: 00000003.xhp#par_id3153091.3.help.text
+msgid "<emph>Color Value</emph>"
+msgstr ""
+
+#: 00000003.xhp#par_id3154319.4.help.text
+msgid "<emph>Color Name</emph>"
+msgstr ""
+
+#: 00000003.xhp#par_id3151112.5.help.text
+msgctxt "00000003.xhp#par_id3151112.5.help.text"
+msgid "0"
+msgstr ""
+
+#: 00000003.xhp#par_id3155854.6.help.text
+msgid "Black"
+msgstr ""
+
+#: 00000003.xhp#par_id3154942.7.help.text
+msgid "128"
+msgstr ""
+
+#: 00000003.xhp#par_id3154731.8.help.text
+msgid "Blue"
+msgstr ""
+
+#: 00000003.xhp#par_id3145645.9.help.text
+msgid "32768"
+msgstr ""
+
+#: 00000003.xhp#par_id3149400.10.help.text
+msgid "Green"
+msgstr ""
+
+#: 00000003.xhp#par_id3150753.11.help.text
+msgid "32896"
+msgstr ""
+
+#: 00000003.xhp#par_id3153765.12.help.text
+msgid "Cyan"
+msgstr ""
+
+#: 00000003.xhp#par_id3154756.13.help.text
+msgid "8388608"
+msgstr ""
+
+#: 00000003.xhp#par_id3159266.14.help.text
+msgid "Red"
+msgstr ""
+
+#: 00000003.xhp#par_id3163807.15.help.text
+msgid "8388736"
+msgstr ""
+
+#: 00000003.xhp#par_id3145150.16.help.text
+msgid "Magenta"
+msgstr ""
+
+#: 00000003.xhp#par_id3147002.17.help.text
+msgid "8421376"
+msgstr ""
+
+#: 00000003.xhp#par_id3152778.18.help.text
+msgid "Yellow"
+msgstr ""
+
+#: 00000003.xhp#par_id3150088.19.help.text
+msgid "8421504"
+msgstr ""
+
+#: 00000003.xhp#par_id3159239.20.help.text
+msgid "White"
+msgstr ""
+
+#: 00000003.xhp#par_id3150206.21.help.text
+msgid "12632256"
+msgstr ""
+
+#: 00000003.xhp#par_id3149817.22.help.text
+msgid "Gray"
+msgstr ""
+
+#: 00000003.xhp#par_id3150363.23.help.text
+msgid "255"
+msgstr ""
+
+#: 00000003.xhp#par_id3154576.24.help.text
+msgid "Light blue"
+msgstr ""
+
+#: 00000003.xhp#par_id3150367.25.help.text
+msgid "65280"
+msgstr ""
+
+#: 00000003.xhp#par_id3150202.26.help.text
+msgid "Light green"
+msgstr ""
+
+#: 00000003.xhp#par_id3154487.27.help.text
+msgid "65535"
+msgstr ""
+
+#: 00000003.xhp#par_id3151332.28.help.text
+msgid "Light cyan"
+msgstr ""
+
+#: 00000003.xhp#par_id3148702.29.help.text
+msgid "16711680"
+msgstr ""
+
+#: 00000003.xhp#par_id3153067.30.help.text
+msgid "Light red"
+msgstr ""
+
+#: 00000003.xhp#par_id3153912.31.help.text
+msgid "16711935"
+msgstr ""
+
+#: 00000003.xhp#par_id3159097.32.help.text
+msgid "Light magenta"
+msgstr ""
+
+#: 00000003.xhp#par_id3155266.33.help.text
+msgid "16776960"
+msgstr ""
+
+#: 00000003.xhp#par_id3157978.34.help.text
+msgid "Light yellow"
+msgstr ""
+
+#: 00000003.xhp#par_id3153286.35.help.text
+msgid "16777215"
+msgstr ""
+
+#: 00000003.xhp#par_id3151302.36.help.text
+msgid "Transparent white"
+msgstr ""
+
+#: 00000003.xhp#hd_id3152869.37.help.text
+#, fuzzy
+msgid "<variable id=\"errorcode\">Error Codes</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id315509599.help.text
+#, fuzzy
+msgid "<variable id=\"err1\">1 An exception occurred</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000003.xhp#par_id3155095.38.help.text
+#, fuzzy
+msgid "<variable id=\"err2\">2 Syntax error</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3149126.39.help.text
+#, fuzzy
+msgid "<variable id=\"err3\">3 Return without Gosub</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3153976.40.help.text
+#, fuzzy
+msgid "<variable id=\"err4\">4 Incorrect entry; please retry</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3150891.41.help.text
+#, fuzzy
+msgid "<variable id=\"err5\">5 Invalid procedure call</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3159227.42.help.text
+#, fuzzy
+msgid "<variable id=\"err6\">6 Overflow</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3154649.43.help.text
+#, fuzzy
+msgid "<variable id=\"err7\">7 Not enough memory</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3150050.44.help.text
+#, fuzzy
+msgid "<variable id=\"err8\">8 Array already dimensioned</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3148900.45.help.text
+#, fuzzy
+msgid "<variable id=\"err9\">9 Index out of defined range</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000003.xhp#par_id3153806.46.help.text
+#, fuzzy
+msgid "<variable id=\"err10\">10 Duplicate definition</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3146963.47.help.text
+#, fuzzy
+msgid "<variable id=\"err11\">11 Division by zero</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000003.xhp#par_id3153013.48.help.text
+#, fuzzy
+msgid "<variable id=\"err12\">12 Variable not defined</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3155593.49.help.text
+#, fuzzy
+msgid "<variable id=\"err13\">13 Data type mismatch</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3151197.50.help.text
+#, fuzzy
+msgid "<variable id=\"err14\">14 Invalid parameter</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3154710.51.help.text
+#, fuzzy
+msgid "<variable id=\"err18\">18 Process interrupted by user</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000003.xhp#par_id3147504.52.help.text
+#, fuzzy
+msgid "<variable id=\"err20\">20 Resume without error</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3145319.53.help.text
+#, fuzzy
+msgid "<variable id=\"err28\">28 Not enough stack memory</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3146110.54.help.text
+#, fuzzy
+msgid "<variable id=\"err35\">35 Sub-procedure or function procedure not defined</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000003.xhp#par_id3147246.55.help.text
+#, fuzzy
+msgid "<variable id=\"err48\">48 Error loading DLL file</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3146101.56.help.text
+#, fuzzy
+msgid "<variable id=\"err49\">49 Wrong DLL call convention</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3153957.57.help.text
+#, fuzzy
+msgid "<variable id=\"err51\">51 Internal error</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000003.xhp#par_id3154404.58.help.text
+#, fuzzy
+msgid "<variable id=\"err52\">52 Invalid file name or file number</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000003.xhp#par_id3151338.59.help.text
+#, fuzzy
+msgid "<variable id=\"err53\">53 File not found</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3147298.60.help.text
+#, fuzzy
+msgid "<variable id=\"err54\">54 Incorrect file mode</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3148747.61.help.text
+#, fuzzy
+msgid "<variable id=\"err55\">55 File already open</variable>"
+msgstr "<variable id=\"exportdoc\">Меню <emph>Файл - Експорт</emph></variable>"
+
+#: 00000003.xhp#par_id3145233.62.help.text
+#, fuzzy
+msgid "<variable id=\"err57\">57 Device I/O error</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3156399.63.help.text
+#, fuzzy
+msgid "<variable id=\"err58\">58 File already exists</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3149324.64.help.text
+#, fuzzy
+msgid "<variable id=\"err59\">59 Incorrect record length</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3147409.65.help.text
+#, fuzzy
+msgid "<variable id=\"err61\">61 Disk or hard drive full</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3149146.66.help.text
+#, fuzzy
+msgid "<variable id=\"err62\">62 Reading exceeds EOF</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3150456.67.help.text
+#, fuzzy
+msgid "<variable id=\"err63\">63 Incorrect record number</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3146883.68.help.text
+#, fuzzy
+msgid "<variable id=\"err67\">67 Too many files</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3146818.69.help.text
+#, fuzzy
+msgid "<variable id=\"err68\">68 Device not available</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3145225.70.help.text
+#, fuzzy
+msgid "<variable id=\"err70\">70 Access denied</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3150372.71.help.text
+#, fuzzy
+msgid "<variable id=\"err71\">71 Disk not ready</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000003.xhp#par_id3148894.72.help.text
+#, fuzzy
+msgid "<variable id=\"err73\">73 Not implemented</variable>"
+msgstr "<variable id=\"fmtarg\">Виберіть пункт меню <emph>Формат - Вирівнювання</emph></variable>"
+
+#: 00000003.xhp#par_id3152981.73.help.text
+msgid "<variable id=\"err74\">74 Renaming on different drives impossible</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3149355.74.help.text
+#, fuzzy
+msgid "<variable id=\"err75\">75 Path/file access error</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3150477.75.help.text
+#, fuzzy
+msgid "<variable id=\"err76\">76 Path not found</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3154678.76.help.text
+#, fuzzy
+msgid "<variable id=\"err91\">91 Object variable not set</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000003.xhp#par_id3149890.77.help.text
+#, fuzzy
+msgid "<variable id=\"err93\">93 Invalid string pattern</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3146942.78.help.text
+#, fuzzy
+msgid "<variable id=\"err94\">94 Use of zero not permitted</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31469429.help.text
+#, fuzzy
+msgid "<variable id=\"err250\">250 DDE Error</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31469428.help.text
+#, fuzzy
+msgid "<variable id=\"err280\">280 Awaiting response to DDE connection</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31469427.help.text
+#, fuzzy
+msgid "<variable id=\"err281\">281 No DDE channels available</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000003.xhp#par_id31469426.help.text
+#, fuzzy
+msgid "<variable id=\"err282\">282 No application responded to DDE connect initiation</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31469425.help.text
+#, fuzzy
+msgid "<variable id=\"err283\">283 Too many applications responded to DDE connect initiation</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31469424.help.text
+#, fuzzy
+msgid "<variable id=\"err284\">284 DDE channel locked</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000003.xhp#par_id31469423.help.text
+msgid "<variable id=\"err285\">285 External application cannot execute DDE operation</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469422.help.text
+msgid "<variable id=\"err286\">286 Timeout while waiting for DDE response</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469421.help.text
+#, fuzzy
+msgid "<variable id=\"err287\">287 user pressed ESCAPE during DDE operation</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31469420.help.text
+#, fuzzy
+msgid "<variable id=\"err288\">288 External application busy</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000003.xhp#par_id31469419.help.text
+#, fuzzy
+msgid "<variable id=\"err289\">289 DDE operation without data</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000003.xhp#par_id31469418.help.text
+#, fuzzy
+msgid "<variable id=\"err290\">290 Data are in wrong format</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000003.xhp#par_id31469417.help.text
+msgid "<variable id=\"err291\">291 External application has been terminated</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469416.help.text
+msgid "<variable id=\"err292\">292 DDE connection interrupted or modified</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469415.help.text
+msgid "<variable id=\"err293\">293 DDE method invoked with no channel open</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469414.help.text
+#, fuzzy
+msgid "<variable id=\"err294\">294 Invalid DDE link format</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31469413.help.text
+#, fuzzy
+msgid "<variable id=\"err295\">295 DDE message has been lost</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31469412.help.text
+msgid "<variable id=\"err296\">296 Paste link already performed</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469411.help.text
+msgid "<variable id=\"err297\">297 Link mode cannot be set due to invalid link topic</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469410.help.text
+msgid "<variable id=\"err298\">298 DDE requires the DDEML.DLL file</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3150028.79.help.text
+msgid "<variable id=\"err323\">323 Module cannot be loaded; invalid format</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3148434.80.help.text
+#, fuzzy
+msgid "<variable id=\"err341\">341 Invalid object index</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3143219.81.help.text
+#, fuzzy
+msgid "<variable id=\"err366\">366 Object is not available</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3144744.82.help.text
+msgid "<variable id=\"err380\">380 Incorrect property value</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3147420.83.help.text
+#, fuzzy
+msgid "<variable id=\"err382\">382 This property is read-only</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3147472.84.help.text
+#, fuzzy
+msgid "<variable id=\"err394\">394 This property is write-only</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3148583.85.help.text
+#, fuzzy
+msgid "<variable id=\"err420\">420 Invalid object reference</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3153329.86.help.text
+#, fuzzy
+msgid "<variable id=\"err423\">423 Property or method not found</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3148738.87.help.text
+#, fuzzy
+msgid "<variable id=\"err424\">424 Object required</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3159084.88.help.text
+#, fuzzy
+msgid "<variable id=\"err425\">425 Invalid use of an object</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3146806.89.help.text
+msgid "<variable id=\"err430\">430 OLE Automation is not supported by this object</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3146130.90.help.text
+msgid "<variable id=\"err438\">438 This property or method is not supported by the object</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3154374.91.help.text
+#, fuzzy
+msgid "<variable id=\"err440\">440 OLE automation error</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000003.xhp#par_id3149685.92.help.text
+msgid "<variable id=\"err445\">445 This action is not supported by given object</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3150282.93.help.text
+msgid "<variable id=\"err446\">446 Named arguments are not supported by given object</variable>"
+msgstr ""
+
+#: 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 ""
+
+#: 00000003.xhp#par_id3152771.95.help.text
+#, fuzzy
+msgid "<variable id=\"err448\">448 Named argument not found</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3145145.96.help.text
+#, fuzzy
+msgid "<variable id=\"err449\">449 Argument is not optional</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3154399.97.help.text
+#, fuzzy
+msgid "<variable id=\"err450\">450 Invalid number of arguments</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3146137.98.help.text
+#, fuzzy
+msgid "<variable id=\"err451\">451 Object is not a list</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id3149507.99.help.text
+#, fuzzy
+msgid "<variable id=\"err452\">452 Invalid ordinal number</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000003.xhp#par_id3154566.100.help.text
+#, fuzzy
+msgid "<variable id=\"err453\">453 Specified DLL function not found</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000003.xhp#par_id3145595.101.help.text
+#, fuzzy
+msgid "<variable id=\"err460\">460 Invalid clipboard format</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000003.xhp#par_id31455951.help.text
+#, fuzzy
+msgid "<variable id=\"err951\">951 Unexpected symbol:</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455952.help.text
+#, fuzzy
+msgid "<variable id=\"err952\">952 Expected:</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455953.help.text
+#, fuzzy
+msgid "<variable id=\"err953\">953 Symbol expected</variable>"
+msgstr "<variable id=\"exportdoc\">Меню <emph>Файл - Експорт</emph></variable>"
+
+#: 00000003.xhp#par_id31455954.help.text
+#, fuzzy
+msgid "<variable id=\"err954\">954 Variable expected</variable>"
+msgstr "<variable id=\"exportdoc\">Меню <emph>Файл - Експорт</emph></variable>"
+
+#: 00000003.xhp#par_id31455955.help.text
+#, fuzzy
+msgid "<variable id=\"err955\">955 Label expected</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455956.help.text
+#, fuzzy
+msgid "<variable id=\"err956\">956 Value cannot be applied</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455957.help.text
+#, fuzzy
+msgid "<variable id=\"err957\">957 Variable already defined</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455958.help.text
+#, fuzzy
+msgid "<variable id=\"err958\">958 Sub procedure or function procedure already defined</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000003.xhp#par_id31455959.help.text
+#, fuzzy
+msgid "<variable id=\"err959\">959 Label already defined</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455960.help.text
+#, fuzzy
+msgid "<variable id=\"err960\">960 Variable not found</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455961.help.text
+#, fuzzy
+msgid "<variable id=\"err961\">961 Array or procedure not found</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455962.help.text
+#, fuzzy
+msgid "<variable id=\"err962\">962 Procedure not found</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455963.help.text
+#, fuzzy
+msgid "<variable id=\"err963\">963 Label undefined</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455964.help.text
+#, fuzzy
+msgid "<variable id=\"err964\">964 Unknown data type</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455965.help.text
+#, fuzzy
+msgid "<variable id=\"err965\">965 Exit expected</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455966.help.text
+#, fuzzy
+msgid "<variable id=\"err966\">966 Statement block still open: missing</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000003.xhp#par_id31455967.help.text
+#, fuzzy
+msgid "<variable id=\"err967\">967 Parentheses do not match</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000003.xhp#par_id31455968.help.text
+msgid "<variable id=\"err968\">968 Symbol already defined differently</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455969.help.text
+msgid "<variable id=\"err969\">969 Parameters do not correspond to procedure</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455970.help.text
+#, fuzzy
+msgid "<variable id=\"err970\">970 Invalid character in number</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455971.help.text
+#, fuzzy
+msgid "<variable id=\"err971\">971 Array must be dimensioned</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455972.help.text
+#, fuzzy
+msgid "<variable id=\"err972\">972 Else/Endif without If</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000003.xhp#par_id31455973.help.text
+#, fuzzy
+msgid "<variable id=\"err973\">973 not allowed within a procedure</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455974.help.text
+#, fuzzy
+msgid "<variable id=\"err974\">974 not allowed outside a procedure</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455975.help.text
+#, fuzzy
+msgid "<variable id=\"err975\">975 Dimension specifications do not match</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000003.xhp#par_id31455976.help.text
+#, fuzzy
+msgid "<variable id=\"err976\">976 Unknown option:</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455977.help.text
+#, fuzzy
+msgid "<variable id=\"err977\">977 Constant redefined</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455978.help.text
+#, fuzzy
+msgid "<variable id=\"err978\">978 Program too large</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000003.xhp#par_id31455979.help.text
+#, fuzzy
+msgid "<variable id=\"err979\">979 Strings or arrays not permitted</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455980.help.text
+#, fuzzy
+msgid "<variable id=\"err1000\">1000 Object does not have this property</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455981.help.text
+#, fuzzy
+msgid "<variable id=\"err1001\">1001 Object does not have this method</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455982.help.text
+#, fuzzy
+msgid "<variable id=\"err1002\">1002 Required argument lacking</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455983.help.text
+#, fuzzy
+msgid "<variable id=\"err1003\">1003 Invalid number of arguments</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455984.help.text
+#, fuzzy
+msgid "<variable id=\"err1004\">1004 Error executing a method</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455985.help.text
+#, fuzzy
+msgid "<variable id=\"err1005\">1005 Unable to set property</variable>"
+msgstr "<variable id=\"wie\">Для доступу до цієї функцції...</variable>"
+
+#: 00000003.xhp#par_id31455986.help.text
+#, fuzzy
+msgid "<variable id=\"err1006\">1006 Unable to determine property</variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 05060700.xhp#tit.help.text
+#, fuzzy
+msgid "Macro"
+msgstr "Макроси"
+
+#: 05060700.xhp#bm_id3153894.help.text
+msgid "<bookmark_value>events;linked to objects</bookmark_value>"
+msgstr ""
+
+#: 05060700.xhp#hd_id3153894.1.help.text
+msgid "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Macro\">Macro</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 05060700.xhp#hd_id3150503.3.help.text
+msgctxt "05060700.xhp#hd_id3150503.3.help.text"
+msgid "Event"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 05060700.xhp#par_id3153360.24.help.text
+msgctxt "05060700.xhp#par_id3153360.24.help.text"
+msgid "Event"
+msgstr ""
+
+#: 05060700.xhp#par_id3154365.25.help.text
+msgid "Event trigger"
+msgstr ""
+
+#: 05060700.xhp#par_id3159149.26.help.text
+msgid "OLE object"
+msgstr "OLE-об'єкт"
+
+#: 05060700.xhp#par_id3148451.27.help.text
+msgctxt "05060700.xhp#par_id3148451.27.help.text"
+msgid "Graphics"
+msgstr ""
+
+#: 05060700.xhp#par_id3125863.28.help.text
+msgid "Frame"
+msgstr ""
+
+#: 05060700.xhp#par_id3154216.29.help.text
+msgid "AutoText"
+msgstr "Автотекст"
+
+#: 05060700.xhp#par_id3145785.30.help.text
+msgid "ImageMap area"
+msgstr ""
+
+#: 05060700.xhp#par_id3153138.31.help.text
+msgid "Hyperlink"
+msgstr ""
+
+#: 05060700.xhp#par_id3155306.32.help.text
+msgid "Click object"
+msgstr ""
+
+#: 05060700.xhp#par_id3152460.33.help.text
+msgid "Object is selected."
+msgstr ""
+
+#: 05060700.xhp#par_id3147348.34.help.text
+msgctxt "05060700.xhp#par_id3147348.34.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3147426.35.help.text
+msgctxt "05060700.xhp#par_id3147426.35.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3153951.36.help.text
+msgctxt "05060700.xhp#par_id3153951.36.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3150116.37.help.text
+msgid "Mouse over object"
+msgstr "Курсор над об'єктом"
+
+#: 05060700.xhp#par_id3145253.38.help.text
+msgid "Mouse moves over the object."
+msgstr ""
+
+#: 05060700.xhp#par_id3144765.39.help.text
+msgctxt "05060700.xhp#par_id3144765.39.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3153418.40.help.text
+msgctxt "05060700.xhp#par_id3153418.40.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3153948.41.help.text
+msgctxt "05060700.xhp#par_id3153948.41.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3145652.42.help.text
+msgctxt "05060700.xhp#par_id3145652.42.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3155066.43.help.text
+msgctxt "05060700.xhp#par_id3155066.43.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3155446.44.help.text
+msgid "Trigger Hyperlink"
+msgstr ""
+
+#: 05060700.xhp#par_id3154756.45.help.text
+msgid "Hyperlink assigned to the object is clicked."
+msgstr ""
+
+#: 05060700.xhp#par_id3150042.46.help.text
+msgctxt "05060700.xhp#par_id3150042.46.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3151252.47.help.text
+msgctxt "05060700.xhp#par_id3151252.47.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3147344.48.help.text
+msgctxt "05060700.xhp#par_id3147344.48.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3146920.49.help.text
+msgctxt "05060700.xhp#par_id3146920.49.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3159333.50.help.text
+msgid "Mouse leaves object "
+msgstr "Курсор над об'єктом"
+
+#: 05060700.xhp#par_id3147003.51.help.text
+msgid "Mouse moves off of the object."
+msgstr ""
+
+#: 05060700.xhp#par_id3151278.52.help.text
+msgctxt "05060700.xhp#par_id3151278.52.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3145257.53.help.text
+msgctxt "05060700.xhp#par_id3145257.53.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3154122.54.help.text
+msgctxt "05060700.xhp#par_id3154122.54.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3156139.55.help.text
+msgctxt "05060700.xhp#par_id3156139.55.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3149036.56.help.text
+msgctxt "05060700.xhp#par_id3149036.56.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3150785.57.help.text
+msgid "Graphics load successful "
+msgstr "графічний об'єкт успішно завантажений"
+
+#: 05060700.xhp#par_id3153705.58.help.text
+msgid "Graphics are loaded successfully."
+msgstr ""
+
+#: 05060700.xhp#par_id3150343.59.help.text
+msgctxt "05060700.xhp#par_id3150343.59.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3150202.60.help.text
+msgid "Graphics load terminated"
+msgstr ""
+
+#: 05060700.xhp#par_id3145584.61.help.text
+msgid "Loading of graphics is stopped by the user (for example, when downloading the page)."
+msgstr ""
+
+#: 05060700.xhp#par_id3154259.62.help.text
+msgctxt "05060700.xhp#par_id3154259.62.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3155089.63.help.text
+msgid "Graphics load faulty"
+msgstr ""
+
+#: 05060700.xhp#par_id3153307.64.help.text
+msgid "Graphics not successfully loaded, for example, if a graphic was not found."
+msgstr ""
+
+#: 05060700.xhp#par_id3148840.65.help.text
+msgctxt "05060700.xhp#par_id3148840.65.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3154533.66.help.text
+msgid "Input of alpha characters "
+msgstr "Введення символів алфавіту"
+
+#: 05060700.xhp#par_id3155266.67.help.text
+msgid "Text is entered from the keyboard."
+msgstr ""
+
+#: 05060700.xhp#par_id3144768.68.help.text
+msgctxt "05060700.xhp#par_id3144768.68.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3145659.69.help.text
+msgid "Input of non-alpha characters "
+msgstr "Введення символів алфавіту"
+
+#: 05060700.xhp#par_id3151131.70.help.text
+msgid "Nonprinting characters are entered from the keyboard, for example, tabs and line breaks."
+msgstr ""
+
+#: 05060700.xhp#par_id3159206.71.help.text
+msgctxt "05060700.xhp#par_id3159206.71.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3150405.72.help.text
+msgid "Resize frame"
+msgstr "Зміна розміру рамки"
+
+#: 05060700.xhp#par_id3153972.73.help.text
+msgid "Frame is resized with the mouse."
+msgstr ""
+
+#: 05060700.xhp#par_id3152873.74.help.text
+msgctxt "05060700.xhp#par_id3152873.74.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3148900.75.help.text
+msgid "Move frame"
+msgstr "Переміщення рамки"
+
+#: 05060700.xhp#par_id3154767.76.help.text
+msgid "Frame is moved with the mouse."
+msgstr ""
+
+#: 05060700.xhp#par_id3155914.77.help.text
+msgctxt "05060700.xhp#par_id3155914.77.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3153010.78.help.text
+msgid "Before inserting AutoText"
+msgstr "Після вставки автотексту"
+
+#: 05060700.xhp#par_id3147515.79.help.text
+msgid "Before a text block is inserted."
+msgstr ""
+
+#: 05060700.xhp#par_id3151191.80.help.text
+msgctxt "05060700.xhp#par_id3151191.80.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#par_id3150956.81.help.text
+msgid "After inserting AutoText"
+msgstr "Після вставки автотексту"
+
+#: 05060700.xhp#par_id3147502.82.help.text
+msgid "After a text block is inserted."
+msgstr ""
+
+#: 05060700.xhp#par_id3147555.83.help.text
+msgctxt "05060700.xhp#par_id3147555.83.help.text"
+msgid "x"
+msgstr ""
+
+#: 05060700.xhp#hd_id3153958.5.help.text
+msgid "Macros"
+msgstr "Макроси"
+
+#: 05060700.xhp#par_id3150432.6.help.text
+msgid "Choose the macro that you want to execute when the selected event occurs."
+msgstr ""
+
+#: 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 ""
+
+#: 05060700.xhp#hd_id3155587.7.help.text
+msgid "Category"
+msgstr "Категорія"
+
+#: 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 ""
+
+#: 05060700.xhp#hd_id3149744.9.help.text
+msgid "Macro name"
+msgstr ""
+
+#: 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 ""
+
+#: 05060700.xhp#hd_id3159260.11.help.text
+msgid "Assign"
+msgstr ""
+
+#: 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 ""
+
+#: 05060700.xhp#hd_id3150533.15.help.text
+msgid "Remove"
+msgstr ""
+
+#: 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 ""
+
+#: 05060700.xhp#hd_id3159126.85.help.text
+msgid "Macro selection"
+msgstr ""
+
+#: 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 ""
+
+#: 03101110.xhp#tit.help.text
+msgid "DefCur Statement [Runtime]"
+msgstr ""
+
+#: 03101110.xhp#bm_id9555345.help.text
+msgid "<bookmark_value>DefCur statement</bookmark_value>"
+msgstr ""
+
+#: 03101110.xhp#par_idN1057D.help.text
+msgid "<link href=\"text/sbasic/shared/03101110.xhp\">DefCur Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03101110.xhp#par_idN10590.help.text
+msgctxt "03101110.xhp#par_idN10590.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03101110.xhp#par_idN10594.help.text
+msgctxt "03101110.xhp#par_idN10594.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr ""
+
+#: 03101110.xhp#par_idN10597.help.text
+msgctxt "03101110.xhp#par_idN10597.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03101110.xhp#par_idN105A9.help.text
+msgctxt "03101110.xhp#par_idN105A9.help.text"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr ""
+
+#: 03101110.xhp#par_idN105B0.help.text
+msgid "<emph>DefCur:</emph> Currency"
+msgstr ""
+
+#: 03101110.xhp#par_idN105B7.help.text
+msgctxt "03101110.xhp#par_idN105B7.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03101110.xhp#par_idN105BB.help.text
+msgctxt "03101110.xhp#par_idN105BB.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr ""
+
+#: 03101110.xhp#par_idN105BE.help.text
+msgctxt "03101110.xhp#par_idN105BE.help.text"
+msgid "DefBool b"
+msgstr ""
+
+#: 03101110.xhp#par_idN105C1.help.text
+msgctxt "03101110.xhp#par_idN105C1.help.text"
+msgid "DefDate t"
+msgstr ""
+
+#: 03101110.xhp#par_idN105C4.help.text
+msgctxt "03101110.xhp#par_idN105C4.help.text"
+msgid "DefDbL d"
+msgstr ""
+
+#: 03101110.xhp#par_idN105C7.help.text
+msgctxt "03101110.xhp#par_idN105C7.help.text"
+msgid "DefInt i"
+msgstr ""
+
+#: 03101110.xhp#par_idN105CA.help.text
+msgctxt "03101110.xhp#par_idN105CA.help.text"
+msgid "DefLng l"
+msgstr ""
+
+#: 03101110.xhp#par_idN105CD.help.text
+msgctxt "03101110.xhp#par_idN105CD.help.text"
+msgid "DefObj o"
+msgstr ""
+
+#: 03101110.xhp#par_idN105D0.help.text
+msgctxt "03101110.xhp#par_idN105D0.help.text"
+msgid "DefVar v"
+msgstr ""
+
+#: 03101110.xhp#par_idN105D3.help.text
+msgid "DefCur c"
+msgstr ""
+
+#: 03101110.xhp#par_idN105D6.help.text
+msgid "Sub ExampleDefCur"
+msgstr ""
+
+#: 03101110.xhp#par_idN105D9.help.text
+msgid "cCur=Currency REM cCur is an implicit currency variable"
+msgstr ""
+
+#: 03101110.xhp#par_idN105DC.help.text
+msgctxt "03101110.xhp#par_idN105DC.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03090408.xhp#tit.help.text
+msgid "Stop Statement [Runtime]"
+msgstr ""
+
+#: 03090408.xhp#bm_id3153311.help.text
+msgid "<bookmark_value>Stop statement</bookmark_value>"
+msgstr ""
+
+#: 03090408.xhp#hd_id3153311.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090408.xhp\" name=\"Stop Statement [Runtime]\">Stop Statement [Runtime]</link>"
+msgstr ""
+
+#: 03090408.xhp#par_id3154142.2.help.text
+msgid "Stops the execution of the Basic program."
+msgstr ""
+
+#: 03090408.xhp#hd_id3153126.3.help.text
+msgctxt "03090408.xhp#hd_id3153126.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03090408.xhp#par_id3156023.4.help.text
+msgctxt "03090408.xhp#par_id3156023.4.help.text"
+msgid "Stop"
+msgstr ""
+
+#: 03090408.xhp#hd_id3156344.5.help.text
+msgctxt "03090408.xhp#hd_id3156344.5.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03090408.xhp#par_id3148552.6.help.text
+msgid "Sub ExampleStop"
+msgstr ""
+
+#: 03090408.xhp#par_id3153897.7.help.text
+msgctxt "03090408.xhp#par_id3153897.7.help.text"
+msgid "Dim iVar As Single"
+msgstr ""
+
+#: 03090408.xhp#par_id3153380.8.help.text
+msgctxt "03090408.xhp#par_id3153380.8.help.text"
+msgid "iVar = 36"
+msgstr ""
+
+#: 03090408.xhp#par_id3150400.9.help.text
+msgctxt "03090408.xhp#par_id3150400.9.help.text"
+msgid "Stop"
+msgstr ""
+
+#: 03090408.xhp#par_id3148799.10.help.text
+msgctxt "03090408.xhp#par_id3148799.10.help.text"
+msgid "Msgbox Sqr(iVar)"
+msgstr ""
+
+#: 03090408.xhp#par_id3151043.11.help.text
+msgctxt "03090408.xhp#par_id3151043.11.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03101100.xhp#tit.help.text
+msgid "DefBool Statement [Runtime]"
+msgstr ""
+
+#: 03101100.xhp#bm_id3145759.help.text
+msgid "<bookmark_value>DefBool statement</bookmark_value>"
+msgstr ""
+
+#: 03101100.xhp#hd_id3145759.1.help.text
+msgid "<link href=\"text/sbasic/shared/03101100.xhp\" name=\"DefBool Statement [Runtime]\">DefBool Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03101100.xhp#hd_id3149495.3.help.text
+msgctxt "03101100.xhp#hd_id3149495.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03101100.xhp#par_id3150682.4.help.text
+msgctxt "03101100.xhp#par_id3150682.4.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr ""
+
+#: 03101100.xhp#hd_id3159201.5.help.text
+msgctxt "03101100.xhp#hd_id3159201.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03101100.xhp#par_id3150669.8.help.text
+msgctxt "03101100.xhp#par_id3150669.8.help.text"
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr ""
+
+#: 03101100.xhp#par_id3149233.9.help.text
+msgid "<emph>DefBool:</emph> Boolean"
+msgstr ""
+
+#: 03101100.xhp#hd_id3149762.10.help.text
+msgctxt "03101100.xhp#hd_id3149762.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03101100.xhp#par_id3156152.12.help.text
+msgid "REM Prefix definition for variable types:"
+msgstr ""
+
+#: 03101100.xhp#par_id3153627.13.help.text
+msgctxt "03101100.xhp#par_id3153627.13.help.text"
+msgid "DefBool b"
+msgstr ""
+
+#: 03101100.xhp#par_id3145610.14.help.text
+msgctxt "03101100.xhp#par_id3145610.14.help.text"
+msgid "DefDate t"
+msgstr ""
+
+#: 03101100.xhp#par_id3154760.15.help.text
+msgctxt "03101100.xhp#par_id3154760.15.help.text"
+msgid "DefDbL d"
+msgstr ""
+
+#: 03101100.xhp#par_id3148552.16.help.text
+msgctxt "03101100.xhp#par_id3148552.16.help.text"
+msgid "DefInt i"
+msgstr ""
+
+#: 03101100.xhp#par_id3152812.17.help.text
+msgctxt "03101100.xhp#par_id3152812.17.help.text"
+msgid "DefLng l"
+msgstr ""
+
+#: 03101100.xhp#par_id3153524.18.help.text
+msgctxt "03101100.xhp#par_id3153524.18.help.text"
+msgid "DefObj o"
+msgstr ""
+
+#: 03101100.xhp#par_id3150541.19.help.text
+msgctxt "03101100.xhp#par_id3150541.19.help.text"
+msgid "DefVar v"
+msgstr ""
+
+#: 03101100.xhp#par_id3153193.21.help.text
+msgid "Sub ExampleDefBool"
+msgstr ""
+
+#: 03101100.xhp#par_id3151381.22.help.text
+msgid "bOK=TRUE REM bOK is an implicit Boolean variable"
+msgstr ""
+
+#: 03101100.xhp#par_id3145421.23.help.text
+msgctxt "03101100.xhp#par_id3145421.23.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03120100.xhp#tit.help.text
+msgid "ASCII/ANSI Conversion in Strings"
+msgstr ""
+
+#: 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 ""
+
+#: 03120100.xhp#par_id3159201.2.help.text
+msgid "The following functions convert strings to and from ASCII or ANSI code."
+msgstr ""
+
+#: 03030106.xhp#tit.help.text
+msgid "Year Function [Runtime]"
+msgstr ""
+
+#: 03030106.xhp#bm_id3148664.help.text
+msgid "<bookmark_value>Year function</bookmark_value>"
+msgstr ""
+
+#: 03030106.xhp#hd_id3148664.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function [Runtime]\">Year Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03030106.xhp#hd_id3154125.3.help.text
+msgctxt "03030106.xhp#hd_id3154125.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03030106.xhp#par_id3147229.4.help.text
+msgid "Year (Number)"
+msgstr ""
+
+#: 03030106.xhp#hd_id3154685.5.help.text
+msgctxt "03030106.xhp#hd_id3154685.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03030106.xhp#par_id3153970.6.help.text
+msgctxt "03030106.xhp#par_id3153970.6.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03030106.xhp#hd_id3150440.7.help.text
+msgctxt "03030106.xhp#hd_id3150440.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03030106.xhp#par_id3154319.10.help.text
+msgid "Print Year(DateSerial(1994, 12, 20))"
+msgstr ""
+
+#: 03030106.xhp#par_id3149483.11.help.text
+msgid "returns the value 1994."
+msgstr ""
+
+#: 03030106.xhp#hd_id3146985.12.help.text
+msgctxt "03030106.xhp#hd_id3146985.12.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03030106.xhp#par_id3153952.13.help.text
+msgid "Sub ExampleYear"
+msgstr ""
+
+#: 03030106.xhp#par_id3153363.14.help.text
+msgid "MsgBox \"\" & Year(Now) ,64,\"Current year\""
+msgstr ""
+
+#: 03030106.xhp#par_id3145274.15.help.text
+msgctxt "03030106.xhp#par_id3145274.15.help.text"
+msgid "End sub"
+msgstr ""
+
+#: 03090411.xhp#tit.help.text
+msgid "With Statement [Runtime]"
+msgstr ""
+
+#: 03090411.xhp#bm_id3153311.help.text
+msgid "<bookmark_value>With statement</bookmark_value>"
+msgstr ""
+
+#: 03090411.xhp#hd_id3153311.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement [Runtime]\">With Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03090411.xhp#hd_id3156153.3.help.text
+msgctxt "03090411.xhp#hd_id3156153.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03090411.xhp#par_id3145609.4.help.text
+msgid "With Object Statement block End With"
+msgstr ""
+
+#: 03090411.xhp#hd_id3154924.5.help.text
+msgctxt "03090411.xhp#hd_id3154924.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03010200.xhp#tit.help.text
+msgid "Functions for Screen Input"
+msgstr ""
+
+#: 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 ""
+
+#: 03010200.xhp#par_id3150398.2.help.text
+msgid "This section describes Runtime functions used to control screen input."
+msgstr ""
+
+#: 03131900.xhp#tit.help.text
+msgid "GlobalScope [Runtime]"
+msgstr ""
+
+#: 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 ""
+
+#: 03131900.xhp#hd_id3150682.1.help.text
+msgid "<link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope [Runtime]\">GlobalScope [Runtime]</link>"
+msgstr ""
+
+#: 03131900.xhp#par_id3153345.2.help.text
+msgid "Basic source code and dialogs are organized in a library system."
+msgstr ""
+
+#: 03131900.xhp#par_id3145315.3.help.text
+msgid "The LibraryContainer contains libraries"
+msgstr ""
+
+#: 03131900.xhp#par_id3149514.4.help.text
+msgid "Libraries can contain modules and dialogs"
+msgstr ""
+
+#: 03131900.xhp#hd_id3143271.5.help.text
+msgid "In Basic:"
+msgstr ""
+
+#: 03131900.xhp#par_id3153061.6.help.text
+msgid "The LibraryContainer is called <emph>BasicLibraries</emph>."
+msgstr ""
+
+#: 03131900.xhp#hd_id3154346.7.help.text
+msgid "In dialogs:"
+msgstr ""
+
+#: 03131900.xhp#par_id3148663.8.help.text
+msgid "The LibraryContainer is called <emph>DialogLibraries</emph>."
+msgstr ""
+
+#: 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 ""
+
+#: 03131900.xhp#hd_id3148920.10.help.text
+msgctxt "03131900.xhp#hd_id3148920.10.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03131900.xhp#par_id3149203.11.help.text
+msgid "GlobalScope"
+msgstr ""
+
+#: 03131900.xhp#hd_id3154685.12.help.text
+msgctxt "03131900.xhp#hd_id3154685.12.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03131900.xhp#par_id3154124.13.help.text
+msgid "Example in the document Basic"
+msgstr ""
+
+#: 03131900.xhp#par_id3158408.14.help.text
+msgid "' calling Dialog1 in the document library Standard"
+msgstr ""
+
+#: 03131900.xhp#par_id3125865.15.help.text
+msgctxt "03131900.xhp#par_id3125865.15.help.text"
+msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
+msgstr ""
+
+#: 03131900.xhp#par_id3154910.16.help.text
+msgid "' calling Dialog2 in the application library Library1"
+msgstr ""
+
+#: 03131900.xhp#par_id3156424.17.help.text
+msgid "oDlgDesc = GlobalScope.DialogLibraries.Library1.Dialog2"
+msgstr ""
+
+#: 03070000.xhp#tit.help.text
+msgid "Mathematical Operators"
+msgstr ""
+
+#: 03070000.xhp#hd_id3149234.1.help.text
+msgid "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Mathematical Operators\">Mathematical Operators</link>"
+msgstr ""
+
+#: 03070000.xhp#par_id3145068.2.help.text
+msgid "The following mathematical operators are supported in $[officename] Basic."
+msgstr ""
+
+#: 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 ""
+
+#: 03010303.xhp#tit.help.text
+msgid "Red Function [Runtime]"
+msgstr ""
+
+#: 03010303.xhp#bm_id3148947.help.text
+msgid "<bookmark_value>Red function</bookmark_value>"
+msgstr ""
+
+#: 03010303.xhp#hd_id3148947.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010303.xhp\" name=\"Red Function [Runtime]\">Red Function [Runtime]</link>"
+msgstr ""
+
+#: 03010303.xhp#par_id3149656.2.help.text
+msgid "Returns the Red component of the specified color code."
+msgstr ""
+
+#: 03010303.xhp#hd_id3148799.3.help.text
+msgctxt "03010303.xhp#hd_id3148799.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03010303.xhp#par_id3150448.4.help.text
+msgid "Red (ColorNumber As Long)"
+msgstr ""
+
+#: 03010303.xhp#hd_id3151042.5.help.text
+msgctxt "03010303.xhp#hd_id3151042.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03010303.xhp#par_id3145173.6.help.text
+msgctxt "03010303.xhp#par_id3145173.6.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03010303.xhp#hd_id3154685.7.help.text
+msgctxt "03010303.xhp#hd_id3154685.7.help.text"
+msgid "Parameter:"
+msgstr ""
+
+#: 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 ""
+
+#: 03010303.xhp#hd_id3148575.9.help.text
+msgctxt "03010303.xhp#hd_id3148575.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03010303.xhp#par_id3145365.10.help.text
+msgctxt "03010303.xhp#par_id3145365.10.help.text"
+msgid "Sub ExampleColor"
+msgstr ""
+
+#: 03010303.xhp#par_id3147348.11.help.text
+msgctxt "03010303.xhp#par_id3147348.11.help.text"
+msgid "Dim lVar As Long"
+msgstr ""
+
+#: 03010303.xhp#par_id3145750.12.help.text
+msgctxt "03010303.xhp#par_id3145750.12.help.text"
+msgid "lVar = rgb(128,0,200)"
+msgstr ""
+
+#: 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 ""
+
+#: 03010303.xhp#par_id3155306.14.help.text
+msgctxt "03010303.xhp#par_id3155306.14.help.text"
+msgid "\"red= \" & red(lVar) & Chr(13)&_"
+msgstr ""
+
+#: 03010303.xhp#par_id3149262.15.help.text
+msgctxt "03010303.xhp#par_id3149262.15.help.text"
+msgid "\"green= \" & green(lVar) & Chr(13)&_"
+msgstr ""
+
+#: 03010303.xhp#par_id3147397.16.help.text
+msgctxt "03010303.xhp#par_id3147397.16.help.text"
+msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr ""
+
+#: 03010303.xhp#par_id3156286.17.help.text
+msgctxt "03010303.xhp#par_id3156286.17.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03102450.xhp#tit.help.text
+msgid "IsError Function [Runtime]"
+msgstr ""
+
+#: 03102450.xhp#bm_id4954680.help.text
+msgid "<bookmark_value>IsError function</bookmark_value>"
+msgstr ""
+
+#: 03102450.xhp#par_idN1054E.help.text
+msgid "<link href=\"text/sbasic/shared/03102450.xhp\">IsError Function [Runtime]</link>"
+msgstr ""
+
+#: 03102450.xhp#par_idN1055E.help.text
+msgid "Tests if a variable contains an error value."
+msgstr ""
+
+#: 03102450.xhp#par_idN10561.help.text
+msgctxt "03102450.xhp#par_idN10561.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03102450.xhp#par_idN10565.help.text
+msgid "IsError (Var)"
+msgstr ""
+
+#: 03102450.xhp#par_idN10568.help.text
+msgctxt "03102450.xhp#par_idN10568.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03102450.xhp#par_idN1056C.help.text
+msgctxt "03102450.xhp#par_idN1056C.help.text"
+msgid "Bool"
+msgstr ""
+
+#: 03102450.xhp#par_idN1056F.help.text
+msgctxt "03102450.xhp#par_idN1056F.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03100000.xhp#tit.help.text
+msgid "Variables"
+msgstr "Змінні"
+
+#: 03100000.xhp#hd_id3149669.1.help.text
+msgid "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Variables\">Variables</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03120313.xhp#tit.help.text
+msgid "ConvertFromURL Function [Runtime]"
+msgstr ""
+
+#: 03120313.xhp#bm_id3153894.help.text
+msgid "<bookmark_value>ConvertFromURL function</bookmark_value>"
+msgstr ""
+
+#: 03120313.xhp#hd_id3153894.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"ConvertFromURL Function [Runtime]\">ConvertFromURL Function [Runtime]</link>"
+msgstr ""
+
+#: 03120313.xhp#par_id3147226.2.help.text
+msgid "Converts a file URL to a system file name."
+msgstr ""
+
+#: 03120313.xhp#hd_id3143267.3.help.text
+msgctxt "03120313.xhp#hd_id3143267.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03120313.xhp#par_id3154142.4.help.text
+msgid "ConvertFromURL(filename)"
+msgstr ""
+
+#: 03120313.xhp#hd_id3159157.5.help.text
+msgctxt "03120313.xhp#hd_id3159157.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03120313.xhp#par_id3150669.6.help.text
+msgctxt "03120313.xhp#par_id3150669.6.help.text"
+msgid "String"
+msgstr ""
+
+#: 03120313.xhp#hd_id3143270.7.help.text
+msgctxt "03120313.xhp#hd_id3143270.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03120313.xhp#par_id3156023.8.help.text
+msgid "<emph>Filename:</emph> A file name as a string."
+msgstr ""
+
+#: 03120313.xhp#hd_id3154760.9.help.text
+msgctxt "03120313.xhp#hd_id3154760.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03120313.xhp#par_id3148664.10.help.text
+msgctxt "03120313.xhp#par_id3148664.10.help.text"
+msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
+msgstr ""
+
+#: 03120313.xhp#par_id3150541.11.help.text
+msgctxt "03120313.xhp#par_id3150541.11.help.text"
+msgid "url$ = ConvertToURL( systemFile$ )"
+msgstr ""
+
+#: 03120313.xhp#par_id3150792.12.help.text
+msgctxt "03120313.xhp#par_id3150792.12.help.text"
+msgid "print url$"
+msgstr ""
+
+#: 03120313.xhp#par_id3154367.13.help.text
+msgctxt "03120313.xhp#par_id3154367.13.help.text"
+msgid "systemFileAgain$ = ConvertFromURL( url$ )"
+msgstr ""
+
+#: 03120313.xhp#par_id3153194.14.help.text
+msgctxt "03120313.xhp#par_id3153194.14.help.text"
+msgid "print systemFileAgain$"
+msgstr ""
+
+#: 03020305.xhp#tit.help.text
+msgid "Seek Statement [Runtime]"
+msgstr ""
+
+#: 03020305.xhp#bm_id3159413.help.text
+msgid "<bookmark_value>Seek statement</bookmark_value>"
+msgstr ""
+
+#: 03020305.xhp#hd_id3159413.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek Statement [Runtime]\">Seek Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020305.xhp#hd_id3145785.6.help.text
+msgctxt "03020305.xhp#hd_id3145785.6.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020305.xhp#par_id3145273.7.help.text
+msgid "Seek[#FileNumber], Position (As Long)"
+msgstr ""
+
+#: 03020305.xhp#hd_id3154321.8.help.text
+msgctxt "03020305.xhp#hd_id3154321.8.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03020305.xhp#par_id3153952.9.help.text
+msgid "<emph>FileNumber: </emph>The data channel number used in the Open statement."
+msgstr ""
+
+#: 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 ""
+
+#: 03103500.xhp#tit.help.text
+msgid "Static Statement [Runtime]"
+msgstr ""
+
+#: 03103500.xhp#bm_id3149798.help.text
+msgid "<bookmark_value>Static statement</bookmark_value>"
+msgstr ""
+
+#: 03103500.xhp#hd_id3149798.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Static Statement [Runtime]\">Static Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03103500.xhp#hd_id3149657.4.help.text
+msgctxt "03103500.xhp#hd_id3149657.4.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03103500.xhp#par_id3150400.5.help.text
+msgid "Static VarName[(start To end)] [As VarType], VarName2[(start To end)] [As VarType], ..."
+msgstr ""
+
+#: 03103500.xhp#hd_id3148452.6.help.text
+msgctxt "03103500.xhp#hd_id3148452.6.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03103500.xhp#par_id3156214.7.help.text
+msgid "Sub ExampleStatic"
+msgstr ""
+
+#: 03103500.xhp#par_id1940061.help.text
+msgid "Dim iCount as Integer, iResult as Integer"
+msgstr ""
+
+#: 03103500.xhp#par_id878627.help.text
+msgid "For iCount = 0 to 2"
+msgstr ""
+
+#: 03103500.xhp#par_id7914059.help.text
+msgid "iResult = InitVar()"
+msgstr ""
+
+#: 03103500.xhp#par_id299691.help.text
+msgctxt "03103500.xhp#par_id299691.help.text"
+msgid "Next iCount"
+msgstr ""
+
+#: 03103500.xhp#par_id3150870.11.help.text
+msgid "MsgBox iResult,0,\"The answer is\""
+msgstr ""
+
+#: 03103500.xhp#par_id3153771.13.help.text
+msgctxt "03103500.xhp#par_id3153771.13.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03103500.xhp#par_id3151115.15.help.text
+msgid "REM Function for initialization of the static variable"
+msgstr ""
+
+#: 03103500.xhp#par_id3148618.16.help.text
+msgid "Function InitVar() As Integer"
+msgstr ""
+
+#: 03103500.xhp#par_id3154217.8.help.text
+msgid "Static iInit As Integer"
+msgstr ""
+
+#: 03103500.xhp#par_id1057161.help.text
+msgid "Const iMinimum as Integer = 40 REM minimum return value of this function"
+msgstr ""
+
+#: 03103500.xhp#par_id580462.help.text
+msgid "if iInit = 0 then REM check if initialized"
+msgstr ""
+
+#: 03103500.xhp#par_id7382732.help.text
+msgid "iInit = iMinimum"
+msgstr ""
+
+#: 03103500.xhp#par_id5779900.help.text
+msgid "else"
+msgstr ""
+
+#: 03103500.xhp#par_id3151041.10.help.text
+msgid "iInit = iInit + 1"
+msgstr ""
+
+#: 03103500.xhp#par_id5754264.help.text
+msgctxt "03103500.xhp#par_id5754264.help.text"
+msgid "end if"
+msgstr ""
+
+#: 03103500.xhp#par_id6529435.help.text
+msgid "InitVar = iInit"
+msgstr ""
+
+#: 03103500.xhp#par_id3150487.18.help.text
+msgctxt "03103500.xhp#par_id3150487.18.help.text"
+msgid "End Function"
+msgstr ""
+
+#: 03070500.xhp#tit.help.text
+msgid "\"^\" Operator [Runtime]"
+msgstr ""
+
+#: 03070500.xhp#bm_id3145315.help.text
+msgid "<bookmark_value>\"^\" operator (mathematical)</bookmark_value>"
+msgstr ""
+
+#: 03070500.xhp#hd_id3145315.1.help.text
+msgid "<link href=\"text/sbasic/shared/03070500.xhp\">\"^\" Operator [Runtime]</link>"
+msgstr ""
+
+#: 03070500.xhp#par_id3149670.2.help.text
+msgid "Raises a number to a power."
+msgstr ""
+
+#: 03070500.xhp#hd_id3147264.3.help.text
+msgctxt "03070500.xhp#hd_id3147264.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03070500.xhp#par_id3149656.4.help.text
+msgid "Result = Expression ^ Exponent"
+msgstr ""
+
+#: 03070500.xhp#hd_id3151211.5.help.text
+msgctxt "03070500.xhp#hd_id3151211.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03070500.xhp#par_id3150448.7.help.text
+msgid "<emph>Expression:</emph> Numerical value that you want to raise to a power."
+msgstr ""
+
+#: 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 ""
+
+#: 03070500.xhp#hd_id3147287.9.help.text
+msgctxt "03070500.xhp#hd_id3147287.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03070500.xhp#par_id3153770.10.help.text
+msgctxt "03070500.xhp#par_id3153770.10.help.text"
+msgid "Sub Example"
+msgstr ""
+
+#: 03070500.xhp#par_id3152886.11.help.text
+msgid "Print ( 12.345 ^ 23 )"
+msgstr ""
+
+#: 03070500.xhp#par_id3146984.12.help.text
+msgid "Print Exp ( 23 * Log( 12.345 ) ) REM Raises by forming a logarithm"
+msgstr ""
+
+#: 03070500.xhp#par_id3148618.13.help.text
+msgctxt "03070500.xhp#par_id3148618.13.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03080102.xhp#tit.help.text
+msgid "Cos Function [Runtime]"
+msgstr ""
+
+#: 03080102.xhp#bm_id3154923.help.text
+msgid "<bookmark_value>Cos function</bookmark_value>"
+msgstr ""
+
+#: 03080102.xhp#hd_id3154923.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080102.xhp\" name=\"Cos Function [Runtime]\">Cos Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03080102.xhp#par_id3154141.4.help.text
+msgid "Cos(Alpha) = Adjacent/Hypotenuse"
+msgstr ""
+
+#: 03080102.xhp#hd_id3154125.5.help.text
+msgctxt "03080102.xhp#hd_id3154125.5.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03080102.xhp#par_id3145172.6.help.text
+msgid "Cos (Number)"
+msgstr ""
+
+#: 03080102.xhp#hd_id3156214.7.help.text
+msgctxt "03080102.xhp#hd_id3156214.7.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03080102.xhp#par_id3150449.8.help.text
+msgctxt "03080102.xhp#par_id3150449.8.help.text"
+msgid "Double"
+msgstr ""
+
+#: 03080102.xhp#hd_id3153969.9.help.text
+msgctxt "03080102.xhp#hd_id3153969.9.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03080102.xhp#par_id3149664.12.help.text
+msgctxt "03080102.xhp#par_id3149664.12.help.text"
+msgid "degree=(radian*180)/pi"
+msgstr ""
+
+#: 03080102.xhp#par_id3146985.13.help.text
+msgctxt "03080102.xhp#par_id3146985.13.help.text"
+msgid "radian=(degree*pi)/180"
+msgstr ""
+
+#: 03080102.xhp#par_id3152885.14.help.text
+msgid "Pi is here the fixed circle constant with the rounded value 3.14159..."
+msgstr ""
+
+#: 03080102.xhp#hd_id3153951.15.help.text
+msgctxt "03080102.xhp#hd_id3153951.15.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03080102.xhp#par_id3155855.16.help.text
+msgid "REM The following example allows for a right-angled triangle the input of"
+msgstr ""
+
+#: 03080102.xhp#par_id3149484.17.help.text
+msgid "REM secant and angle (in degrees) and calculates the length of the hypotenuse:"
+msgstr ""
+
+#: 03080102.xhp#par_id3147428.18.help.text
+msgid "Sub ExampleCosinus"
+msgstr ""
+
+#: 03080102.xhp#par_id3150010.19.help.text
+msgid "REM rounded Pi = 3.14159"
+msgstr ""
+
+#: 03080102.xhp#par_id3149959.20.help.text
+msgid "Dim d1 as Double, dAngle as Double"
+msgstr ""
+
+#: 03080102.xhp#par_id3144764.21.help.text
+msgid "d1 = InputBox$ (\"\"Enter the length of the adjacent side: \",\"Adjacent\")"
+msgstr ""
+
+#: 03080102.xhp#par_id3154491.22.help.text
+msgid "dAngle = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
+msgstr ""
+
+#: 03080102.xhp#par_id3151074.23.help.text
+msgid "Print \"The length of the hypothenuse is\"; (d1 / cos (dAngle * Pi / 180))"
+msgstr ""
+
+#: 03080102.xhp#par_id3149583.24.help.text
+msgctxt "03080102.xhp#par_id3149583.24.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03102600.xhp#tit.help.text
+msgid "IsNull Function [Runtime]"
+msgstr ""
+
+#: 03102600.xhp#bm_id3155555.help.text
+msgid "<bookmark_value>IsNull function</bookmark_value><bookmark_value>Null value</bookmark_value>"
+msgstr ""
+
+#: 03102600.xhp#hd_id3155555.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102600.xhp\" name=\"IsNull Function [Runtime]\">IsNull Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03102600.xhp#hd_id3150670.3.help.text
+msgctxt "03102600.xhp#hd_id3150670.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03102600.xhp#par_id3150984.4.help.text
+msgid "IsNull (Var)"
+msgstr ""
+
+#: 03102600.xhp#hd_id3149514.5.help.text
+msgctxt "03102600.xhp#hd_id3149514.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03102600.xhp#par_id3145609.6.help.text
+msgctxt "03102600.xhp#par_id3145609.6.help.text"
+msgid "Bool"
+msgstr ""
+
+#: 03102600.xhp#hd_id3149669.7.help.text
+msgctxt "03102600.xhp#hd_id3149669.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03102600.xhp#par_idN1062A.help.text
+msgid "<emph>Null</emph> - This value is used for a variant data sub type without valid contents."
+msgstr ""
+
+#: 03102600.xhp#hd_id3153381.9.help.text
+msgctxt "03102600.xhp#hd_id3153381.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03102600.xhp#par_id3154140.10.help.text
+msgid "Sub ExampleIsNull"
+msgstr ""
+
+#: 03102600.xhp#par_id3145172.11.help.text
+msgid "Dim vVar As Variant"
+msgstr ""
+
+#: 03102600.xhp#par_id3144760.12.help.text
+msgid "msgbox IsNull(vVar)"
+msgstr ""
+
+#: 03102600.xhp#par_id3153970.13.help.text
+msgctxt "03102600.xhp#par_id3153970.13.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03030202.xhp#tit.help.text
+msgid "Minute Function [Runtime]"
+msgstr ""
+
+#: 03030202.xhp#bm_id3155419.help.text
+msgid "<bookmark_value>Minute function</bookmark_value>"
+msgstr ""
+
+#: 03030202.xhp#hd_id3155419.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute Function [Runtime]\">Minute Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03030202.xhp#hd_id3154758.3.help.text
+msgctxt "03030202.xhp#hd_id3154758.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03030202.xhp#par_id3149656.4.help.text
+msgid "Minute (Number)"
+msgstr ""
+
+#: 03030202.xhp#hd_id3148798.5.help.text
+msgctxt "03030202.xhp#hd_id3148798.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03030202.xhp#par_id3150449.6.help.text
+msgctxt "03030202.xhp#par_id3150449.6.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03030202.xhp#hd_id3153193.7.help.text
+msgctxt "03030202.xhp#hd_id3153193.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03030202.xhp#par_id3149262.10.help.text
+msgid "Print Minute(TimeSerial(12,30,41))"
+msgstr ""
+
+#: 03030202.xhp#par_id3148576.11.help.text
+msgid "returns the value 30."
+msgstr ""
+
+#: 03030202.xhp#hd_id3150010.12.help.text
+msgctxt "03030202.xhp#hd_id3150010.12.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03030202.xhp#par_id3159154.13.help.text
+msgid "Sub ExampleMinute"
+msgstr ""
+
+#: 03030202.xhp#par_id3146119.14.help.text
+msgid "MsgBox \"The current minute is \"& Minute(Now)& \".\""
+msgstr ""
+
+#: 03030202.xhp#par_id3153726.15.help.text
+msgctxt "03030202.xhp#par_id3153726.15.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03120403.xhp#tit.help.text
+msgid "StrComp Function [Runtime]"
+msgstr ""
+
+#: 03120403.xhp#bm_id3156027.help.text
+msgid "<bookmark_value>StrComp function</bookmark_value>"
+msgstr ""
+
+#: 03120403.xhp#hd_id3156027.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120403.xhp\" name=\"StrComp Function [Runtime]\">StrComp Function [Runtime]</link>"
+msgstr ""
+
+#: 03120403.xhp#par_id3155805.2.help.text
+msgid "Compares two strings and returns an integer value that represents the result of the comparison."
+msgstr ""
+
+#: 03120403.xhp#hd_id3153345.3.help.text
+msgctxt "03120403.xhp#hd_id3153345.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03120403.xhp#par_id3150503.4.help.text
+msgid "StrComp (Text1 As String, Text2 As String[, Compare])"
+msgstr ""
+
+#: 03120403.xhp#hd_id3147574.5.help.text
+msgctxt "03120403.xhp#hd_id3147574.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03120403.xhp#par_id3156152.6.help.text
+msgctxt "03120403.xhp#par_id3156152.6.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03120403.xhp#hd_id3150984.7.help.text
+msgctxt "03120403.xhp#hd_id3150984.7.help.text"
+msgid "Parameter:"
+msgstr ""
+
+#: 03120403.xhp#par_id3153061.8.help.text
+msgid "<emph>Text1:</emph> Any string expression"
+msgstr ""
+
+#: 03120403.xhp#par_id3147560.9.help.text
+msgid "<emph>Text2:</emph> Any string expression"
+msgstr ""
+
+#: 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 ""
+
+#: 03120403.xhp#hd_id3154940.13.help.text
+msgctxt "03120403.xhp#hd_id3154940.13.help.text"
+msgid "Return value"
+msgstr ""
+
+#: 03120403.xhp#par_id3150358.27.help.text
+msgid "If Text1 < Text2 the function returns -1"
+msgstr ""
+
+#: 03120403.xhp#par_id3151043.28.help.text
+msgid "If Text1 = Text2 the function returns 0"
+msgstr ""
+
+#: 03120403.xhp#par_id3158410.29.help.text
+msgid "If Text1 > Text2 the function returns 1"
+msgstr ""
+
+#: 03120403.xhp#hd_id3153968.18.help.text
+msgctxt "03120403.xhp#hd_id3153968.18.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03120403.xhp#par_id3151381.19.help.text
+msgid "Sub ExampleStrComp"
+msgstr ""
+
+#: 03120403.xhp#par_id3154685.20.help.text
+msgctxt "03120403.xhp#par_id3154685.20.help.text"
+msgid "Dim iVar As Single"
+msgstr ""
+
+#: 03120403.xhp#par_id3148453.21.help.text
+msgctxt "03120403.xhp#par_id3148453.21.help.text"
+msgid "Dim sVar As String"
+msgstr ""
+
+#: 03120403.xhp#par_id3153369.22.help.text
+msgctxt "03120403.xhp#par_id3153369.22.help.text"
+msgid "iVar = 123.123"
+msgstr ""
+
+#: 03120403.xhp#par_id3145786.23.help.text
+msgid "sVar = Str$(iVar)"
+msgstr ""
+
+#: 03120403.xhp#par_id3146975.24.help.text
+msgid "Msgbox strcomp(sVar , Str$(iVar),1)"
+msgstr ""
+
+#: 03120403.xhp#par_id3150487.25.help.text
+msgctxt "03120403.xhp#par_id3150487.25.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03120306.xhp#tit.help.text
+msgid "Mid Function, Mid Statement [Runtime]"
+msgstr ""
+
+#: 03120306.xhp#bm_id3143268.help.text
+msgid "<bookmark_value>Mid function</bookmark_value><bookmark_value>Mid statement</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03120306.xhp#hd_id3154285.3.help.text
+msgctxt "03120306.xhp#hd_id3154285.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 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 ""
+
+#: 03120306.xhp#hd_id3145068.5.help.text
+msgctxt "03120306.xhp#hd_id3145068.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03120306.xhp#par_id3149295.6.help.text
+msgid "String (only by Function)"
+msgstr ""
+
+#: 03120306.xhp#hd_id3154347.7.help.text
+msgctxt "03120306.xhp#hd_id3154347.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03120306.xhp#par_id3148664.8.help.text
+msgid "<emph>Text:</emph> Any string expression that you want to modify."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03120306.xhp#par_id3150769.13.help.text
+msgid "<emph>Text:</emph> The string to replace the string expression (<emph>Mid statement</emph>)."
+msgstr ""
+
+#: 03120306.xhp#hd_id3149560.14.help.text
+msgctxt "03120306.xhp#hd_id3149560.14.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03120306.xhp#par_id3150439.15.help.text
+msgctxt "03120306.xhp#par_id3150439.15.help.text"
+msgid "Sub ExampleUSDate"
+msgstr ""
+
+#: 03120306.xhp#par_id3147349.16.help.text
+msgctxt "03120306.xhp#par_id3147349.16.help.text"
+msgid "Dim sInput As String"
+msgstr ""
+
+#: 03120306.xhp#par_id3155854.17.help.text
+msgctxt "03120306.xhp#par_id3155854.17.help.text"
+msgid "Dim sUS_date As String"
+msgstr ""
+
+#: 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 ""
+
+#: 03120306.xhp#par_id3148645.19.help.text
+msgctxt "03120306.xhp#par_id3148645.19.help.text"
+msgid "sUS_date = Mid(sInput, 6, 2)"
+msgstr ""
+
+#: 03120306.xhp#par_id3153952.20.help.text
+msgctxt "03120306.xhp#par_id3153952.20.help.text"
+msgid "sUS_date = sUS_date & \"/\""
+msgstr ""
+
+#: 03120306.xhp#par_id3153364.21.help.text
+msgctxt "03120306.xhp#par_id3153364.21.help.text"
+msgid "sUS_date = sUS_date & Right(sInput, 2)"
+msgstr ""
+
+#: 03120306.xhp#par_id3146975.22.help.text
+msgctxt "03120306.xhp#par_id3146975.22.help.text"
+msgid "sUS_date = sUS_date & \"/\""
+msgstr ""
+
+#: 03120306.xhp#par_id3149665.23.help.text
+msgctxt "03120306.xhp#par_id3149665.23.help.text"
+msgid "sUS_date = sUS_date & Left(sInput, 4)"
+msgstr ""
+
+#: 03120306.xhp#par_id3150011.24.help.text
+msgctxt "03120306.xhp#par_id3150011.24.help.text"
+msgid "MsgBox sUS_date"
+msgstr ""
+
+#: 03120306.xhp#par_id3148618.25.help.text
+msgctxt "03120306.xhp#par_id3148618.25.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03030110.xhp#tit.help.text
+msgid "DateAdd Function [Runtime]"
+msgstr ""
+
+#: 03030110.xhp#bm_id6269417.help.text
+msgid "<bookmark_value>DateAdd function</bookmark_value>"
+msgstr ""
+
+#: 03030110.xhp#par_idN10548.help.text
+msgid "<link href=\"text/sbasic/shared/03030110.xhp\">DateAdd Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03030110.xhp#par_idN1055B.help.text
+msgctxt "03030110.xhp#par_idN1055B.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03030110.xhp#par_idN1055F.help.text
+msgid "DateAdd (Add, Count, Date)"
+msgstr ""
+
+#: 03030110.xhp#par_idN1061E.help.text
+msgctxt "03030110.xhp#par_idN1061E.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03030110.xhp#par_idN10622.help.text
+msgctxt "03030110.xhp#par_idN10622.help.text"
+msgid "A Variant containing a date."
+msgstr ""
+
+#: 03030110.xhp#par_idN10625.help.text
+msgctxt "03030110.xhp#par_idN10625.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03030110.xhp#par_idN10629.help.text
+msgid "Add - A string expression from the following table, specifying the date interval."
+msgstr ""
+
+#: 03030110.xhp#par_idN10636.help.text
+msgid "Add (string value)"
+msgstr ""
+
+#: 03030110.xhp#par_idN1063C.help.text
+msgctxt "03030110.xhp#par_idN1063C.help.text"
+msgid "Explanation"
+msgstr ""
+
+#: 03030110.xhp#par_idN10643.help.text
+msgid "yyyy"
+msgstr ""
+
+#: 03030110.xhp#par_idN10649.help.text
+msgid "Year"
+msgstr ""
+
+#: 03030110.xhp#par_idN10650.help.text
+msgid "q"
+msgstr ""
+
+#: 03030110.xhp#par_idN10656.help.text
+msgid "Quarter"
+msgstr ""
+
+#: 03030110.xhp#par_idN1065D.help.text
+msgid "m"
+msgstr ""
+
+#: 03030110.xhp#par_idN10663.help.text
+msgid "Month"
+msgstr ""
+
+#: 03030110.xhp#par_idN1066A.help.text
+msgid "y"
+msgstr ""
+
+#: 03030110.xhp#par_idN10670.help.text
+msgid "Day of year"
+msgstr ""
+
+#: 03030110.xhp#par_idN10677.help.text
+msgid "w"
+msgstr ""
+
+#: 03030110.xhp#par_idN1067D.help.text
+msgid "Weekday"
+msgstr ""
+
+#: 03030110.xhp#par_idN10684.help.text
+msgid "ww"
+msgstr ""
+
+#: 03030110.xhp#par_idN1068A.help.text
+msgid "Week of year"
+msgstr ""
+
+#: 03030110.xhp#par_idN10691.help.text
+msgid "d"
+msgstr ""
+
+#: 03030110.xhp#par_idN10697.help.text
+msgid "Day"
+msgstr ""
+
+#: 03030110.xhp#par_idN1069E.help.text
+msgid "h"
+msgstr ""
+
+#: 03030110.xhp#par_idN106A4.help.text
+msgid "Hour"
+msgstr ""
+
+#: 03030110.xhp#par_idN106AB.help.text
+msgid "n"
+msgstr "n"
+
+#: 03030110.xhp#par_idN106B1.help.text
+msgid "Minute"
+msgstr ""
+
+#: 03030110.xhp#par_idN106B8.help.text
+msgid "s"
+msgstr ""
+
+#: 03030110.xhp#par_idN106BE.help.text
+msgid "Second"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03030110.xhp#par_idN106C7.help.text
+msgctxt "03030110.xhp#par_idN106C7.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03030110.xhp#par_idN106CB.help.text
+msgid "Sub example_dateadd"
+msgstr ""
+
+#: 03030110.xhp#par_idN106CE.help.text
+msgid "msgbox DateAdd(\"m\", 1, \"1/31/2004\") &\" - \"& DateAdd(\"m\", 1, \"1/31/2005\")"
+msgstr ""
+
+#: 03030110.xhp#par_idN106D1.help.text
+msgctxt "03030110.xhp#par_idN106D1.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03030206.xhp#tit.help.text
+msgid "TimeValue Function [Runtime]"
+msgstr ""
+
+#: 03030206.xhp#bm_id3149670.help.text
+msgid "<bookmark_value>TimeValue function</bookmark_value>"
+msgstr ""
+
+#: 03030206.xhp#hd_id3149670.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030206.xhp\" name=\"TimeValue Function [Runtime]\">TimeValue Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03030206.xhp#hd_id3154138.3.help.text
+msgctxt "03030206.xhp#hd_id3154138.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03030206.xhp#par_id3156282.4.help.text
+msgid "TimeValue (Text As String)"
+msgstr ""
+
+#: 03030206.xhp#hd_id3153969.5.help.text
+msgctxt "03030206.xhp#hd_id3153969.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03030206.xhp#par_id3156424.6.help.text
+msgctxt "03030206.xhp#par_id3156424.6.help.text"
+msgid "Date"
+msgstr ""
+
+#: 03030206.xhp#hd_id3145172.7.help.text
+msgctxt "03030206.xhp#hd_id3145172.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03030206.xhp#hd_id3145271.13.help.text
+msgctxt "03030206.xhp#hd_id3145271.13.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03030206.xhp#par_id3152597.30.help.text
+msgid "Sub ExampleTimerValue"
+msgstr ""
+
+#: 03030206.xhp#par_id3147348.31.help.text
+msgid "Dim daDT as Date"
+msgstr ""
+
+#: 03030206.xhp#par_id3148576.32.help.text
+msgid "Dim a1, b1, c1, a2, b2, c2 as String"
+msgstr ""
+
+#: 03030206.xhp#par_id3149378.33.help.text
+msgid "a1 = \"start time\""
+msgstr ""
+
+#: 03030206.xhp#par_id3145800.34.help.text
+msgid "b1 = \"end time\""
+msgstr ""
+
+#: 03030206.xhp#par_id3151074.35.help.text
+msgid "c1 = \"total time\""
+msgstr ""
+
+#: 03030206.xhp#par_id3154492.37.help.text
+msgid "a2 = \"8:34\""
+msgstr ""
+
+#: 03030206.xhp#par_id3155602.38.help.text
+msgid "b2 = \"18:12\""
+msgstr ""
+
+#: 03030206.xhp#par_id3150715.39.help.text
+msgid "daDT = TimeValue(b2) - TimeValue(a2)"
+msgstr ""
+
+#: 03030206.xhp#par_id3153838.40.help.text
+msgid "c2 = a1 & \": \" & a2 & chr(13)"
+msgstr ""
+
+#: 03030206.xhp#par_id3150749.41.help.text
+msgid "c2 = c2 & b1 & \": \" & b2 & chr(13)"
+msgstr ""
+
+#: 03030206.xhp#par_id3154755.42.help.text
+msgid "c2 = c2 & c1 & \": \" & trim(Str(Hour(daDT))) & \":\" & trim(Str(Minute(daDT))) & \":\" & trim(Str(Second(daDT)))"
+msgstr ""
+
+#: 03030206.xhp#par_id3153714.43.help.text
+msgid "Msgbox c2"
+msgstr ""
+
+#: 03030206.xhp#par_id3155767.44.help.text
+msgctxt "03030206.xhp#par_id3155767.44.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03104000.xhp#tit.help.text
+msgid "IsMissing function [Runtime]"
+msgstr ""
+
+#: 03104000.xhp#bm_id3153527.help.text
+msgid "<bookmark_value>IsMissing function</bookmark_value>"
+msgstr ""
+
+#: 03104000.xhp#hd_id3153527.1.help.text
+msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">IsMissing function [Runtime]</link>"
+msgstr ""
+
+#: 03104000.xhp#par_id3153825.2.help.text
+msgid "Tests if a function is called with an optional parameter."
+msgstr ""
+
+#: 03104000.xhp#par_id3150669.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Optional</link>"
+msgstr ""
+
+#: 03104000.xhp#hd_id3145611.4.help.text
+msgctxt "03104000.xhp#hd_id3145611.4.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03104000.xhp#par_id3154924.5.help.text
+msgid "IsMissing( ArgumentName )"
+msgstr ""
+
+#: 03104000.xhp#hd_id3145069.6.help.text
+msgctxt "03104000.xhp#hd_id3145069.6.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03104000.xhp#par_id3149457.7.help.text
+msgid "<emph>ArgumentName:</emph> the name of an optional argument."
+msgstr ""
+
+#: 03104000.xhp#par_id3150398.8.help.text
+msgid "If the IsMissing function is called by the ArgumentName, then True is returned."
+msgstr ""
+
+#: 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 ""
+
+#: 03090410.xhp#tit.help.text
+msgid "Switch Function [Runtime]"
+msgstr ""
+
+#: 03090410.xhp#bm_id3148554.help.text
+msgid "<bookmark_value>Switch function</bookmark_value>"
+msgstr ""
+
+#: 03090410.xhp#hd_id3148554.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch Function [Runtime]\">Switch Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03090410.xhp#hd_id3154863.3.help.text
+msgctxt "03090410.xhp#hd_id3154863.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03090410.xhp#par_id3155934.4.help.text
+msgid "Switch (Expression1, Value1[, Expression2, Value2[..., Expression_n, Value_n]])"
+msgstr ""
+
+#: 03090410.xhp#hd_id3149119.5.help.text
+msgctxt "03090410.xhp#hd_id3149119.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03090410.xhp#par_id3153990.7.help.text
+msgid "<emph>Expression:</emph> The expression that you want to evaluate."
+msgstr ""
+
+#: 03090410.xhp#par_id3153394.8.help.text
+msgid "<emph>Value:</emph> The value that you want to return if the expression is True."
+msgstr ""
+
+#: 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 ""
+
+#: 03090410.xhp#hd_id3159157.10.help.text
+msgctxt "03090410.xhp#hd_id3159157.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03090410.xhp#par_id3147573.11.help.text
+msgid "Sub ExampleSwitch"
+msgstr ""
+
+#: 03090410.xhp#par_id3143270.12.help.text
+msgid "Dim sGender As String"
+msgstr ""
+
+#: 03090410.xhp#par_id3149579.13.help.text
+msgid "sGender = GetGenderIndex( \"John\" )"
+msgstr ""
+
+#: 03090410.xhp#par_id3153626.14.help.text
+msgid "MsgBox sGender"
+msgstr ""
+
+#: 03090410.xhp#par_id3147560.15.help.text
+msgctxt "03090410.xhp#par_id3147560.15.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03090410.xhp#par_id3154758.17.help.text
+msgid "Function GetGenderIndex (sName As String) As String"
+msgstr ""
+
+#: 03090410.xhp#par_id3153361.18.help.text
+msgid "GetGenderIndex = Switch(sName = \"Jane\", \"female\", sName = \"John\", \"male\")"
+msgstr ""
+
+#: 03090410.xhp#par_id3154939.19.help.text
+msgctxt "03090410.xhp#par_id3154939.19.help.text"
+msgid "End Function"
+msgstr ""
+
+#: 03101140.xhp#tit.help.text
+msgid "DefStr Statement [Runtime]"
+msgstr ""
+
+#: 03101140.xhp#bm_id6161381.help.text
+msgid "<bookmark_value>DefStr statement</bookmark_value>"
+msgstr ""
+
+#: 03101140.xhp#par_idN10577.help.text
+msgid "<link href=\"text/sbasic/shared/03101140.xhp\">DefStr Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03101140.xhp#par_idN1058A.help.text
+msgctxt "03101140.xhp#par_idN1058A.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03101140.xhp#par_idN1058E.help.text
+msgctxt "03101140.xhp#par_idN1058E.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr ""
+
+#: 03101140.xhp#par_idN10591.help.text
+msgctxt "03101140.xhp#par_idN10591.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03101140.xhp#par_idN105A3.help.text
+msgctxt "03101140.xhp#par_idN105A3.help.text"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr ""
+
+#: 03101140.xhp#par_idN105AA.help.text
+msgid "<emph>DefStr:</emph> String"
+msgstr ""
+
+#: 03101140.xhp#par_idN105B1.help.text
+msgctxt "03101140.xhp#par_idN105B1.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03101140.xhp#par_idN105B5.help.text
+msgctxt "03101140.xhp#par_idN105B5.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr ""
+
+#: 03101140.xhp#par_idN105B8.help.text
+msgctxt "03101140.xhp#par_idN105B8.help.text"
+msgid "DefBool b"
+msgstr ""
+
+#: 03101140.xhp#par_idN105BB.help.text
+msgctxt "03101140.xhp#par_idN105BB.help.text"
+msgid "DefDate t"
+msgstr ""
+
+#: 03101140.xhp#par_idN105BE.help.text
+msgctxt "03101140.xhp#par_idN105BE.help.text"
+msgid "DefDbL d"
+msgstr ""
+
+#: 03101140.xhp#par_idN105C1.help.text
+msgctxt "03101140.xhp#par_idN105C1.help.text"
+msgid "DefInt i"
+msgstr ""
+
+#: 03101140.xhp#par_idN105C4.help.text
+msgctxt "03101140.xhp#par_idN105C4.help.text"
+msgid "DefLng l"
+msgstr ""
+
+#: 03101140.xhp#par_idN105C7.help.text
+msgctxt "03101140.xhp#par_idN105C7.help.text"
+msgid "DefObj o"
+msgstr ""
+
+#: 03101140.xhp#par_idN105CA.help.text
+msgctxt "03101140.xhp#par_idN105CA.help.text"
+msgid "DefVar v"
+msgstr ""
+
+#: 03101140.xhp#par_idN105CD.help.text
+msgid "DefStr s"
+msgstr ""
+
+#: 03101140.xhp#par_idN105D0.help.text
+msgid "Sub ExampleDefStr"
+msgstr ""
+
+#: 03101140.xhp#par_idN105D3.help.text
+msgid "sStr=String REM sStr is an implicit string variable"
+msgstr ""
+
+#: 03101140.xhp#par_idN105D6.help.text
+msgctxt "03101140.xhp#par_idN105D6.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03130800.xhp#tit.help.text
+msgid "Environ Function [Runtime]"
+msgstr ""
+
+#: 03130800.xhp#bm_id3155364.help.text
+msgid "<bookmark_value>Environ function</bookmark_value>"
+msgstr ""
+
+#: 03130800.xhp#hd_id3155364.1.help.text
+msgid "<link href=\"text/sbasic/shared/03130800.xhp\" name=\"Environ Function [Runtime]\">Environ Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03130800.xhp#hd_id3150670.4.help.text
+msgctxt "03130800.xhp#hd_id3150670.4.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03130800.xhp#par_id3159176.5.help.text
+msgid "Environ (Environment As String)"
+msgstr ""
+
+#: 03130800.xhp#hd_id3159157.6.help.text
+msgctxt "03130800.xhp#hd_id3159157.6.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03130800.xhp#par_id3148473.7.help.text
+msgctxt "03130800.xhp#par_id3148473.7.help.text"
+msgid "String"
+msgstr ""
+
+#: 03130800.xhp#hd_id3145609.8.help.text
+msgctxt "03130800.xhp#hd_id3145609.8.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03130800.xhp#par_id3159414.9.help.text
+msgid "Environment: Environment variable that you want to return the value for."
+msgstr ""
+
+#: 03130800.xhp#hd_id3148663.10.help.text
+msgctxt "03130800.xhp#hd_id3148663.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03130800.xhp#par_id3149655.11.help.text
+msgid "Sub ExampleEnviron"
+msgstr ""
+
+#: 03130800.xhp#par_id3154940.12.help.text
+msgctxt "03130800.xhp#par_id3154940.12.help.text"
+msgid "Dim sTemp As String"
+msgstr ""
+
+#: 03130800.xhp#par_id3148920.13.help.text
+msgid "sTemp=Environ (\"TEMP\")"
+msgstr ""
+
+#: 03130800.xhp#par_id3150869.14.help.text
+msgid "If sTemp = \"\" Then sTemp=Environ(\"TMP\")"
+msgstr ""
+
+#: 03130800.xhp#par_id3145419.15.help.text
+msgid "MsgBox \"'\" & sTemp & \"'\" ,64,\"Directory of temporary files:\""
+msgstr ""
+
+#: 03130800.xhp#par_id3154124.16.help.text
+msgctxt "03130800.xhp#par_id3154124.16.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03020204.xhp#tit.help.text
+msgid "Put Statement [Runtime]"
+msgstr ""
+
+#: 03020204.xhp#bm_id3150360.help.text
+msgid "<bookmark_value>Put statement</bookmark_value>"
+msgstr ""
+
+#: 03020204.xhp#hd_id3150360.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020204.xhp\" name=\"Put Statement [Runtime]\">Put Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020204.xhp#hd_id3125863.4.help.text
+msgctxt "03020204.xhp#hd_id3125863.4.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020204.xhp#par_id3155132.5.help.text
+msgid "Put [#] FileNumber As Integer, [position], Variable"
+msgstr ""
+
+#: 03020204.xhp#hd_id3153190.6.help.text
+msgctxt "03020204.xhp#hd_id3153190.6.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020204.xhp#par_id3153729.10.help.text
+msgid "<emph>Variable:</emph> Name of the variable that you want to write to the file."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020204.xhp#hd_id3154491.13.help.text
+msgctxt "03020204.xhp#hd_id3154491.13.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020204.xhp#par_id3149410.14.help.text
+msgctxt "03020204.xhp#par_id3149410.14.help.text"
+msgid "Sub ExampleRandomAccess"
+msgstr ""
+
+#: 03020204.xhp#par_id3149959.15.help.text
+msgctxt "03020204.xhp#par_id3149959.15.help.text"
+msgid "Dim iNumber As Integer"
+msgstr ""
+
+#: 03020204.xhp#par_id3154729.16.help.text
+msgid "Dim sText As Variant REM Must be a variant type"
+msgstr ""
+
+#: 03020204.xhp#par_id3156286.17.help.text
+msgctxt "03020204.xhp#par_id3156286.17.help.text"
+msgid "Dim aFile As String"
+msgstr ""
+
+#: 03020204.xhp#par_id3149400.18.help.text
+msgctxt "03020204.xhp#par_id3149400.18.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr ""
+
+#: 03020204.xhp#par_id3149124.20.help.text
+msgctxt "03020204.xhp#par_id3149124.20.help.text"
+msgid "iNumber = Freefile"
+msgstr ""
+
+#: 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 ""
+
+#: 03020204.xhp#par_id3156278.22.help.text
+msgid "Seek #iNumber,1 REM Position to start writing"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020204.xhp#par_id3150045.26.help.text
+msgctxt "03020204.xhp#par_id3150045.26.help.text"
+msgid "Seek #iNumber,2"
+msgstr ""
+
+#: 03020204.xhp#par_id3145149.27.help.text
+msgctxt "03020204.xhp#par_id3145149.27.help.text"
+msgid "Get #iNumber,,sText"
+msgstr ""
+
+#: 03020204.xhp#par_id3147363.28.help.text
+msgctxt "03020204.xhp#par_id3147363.28.help.text"
+msgid "Print sText"
+msgstr ""
+
+#: 03020204.xhp#par_id3163806.29.help.text
+msgctxt "03020204.xhp#par_id3163806.29.help.text"
+msgid "Close #iNumber"
+msgstr ""
+
+#: 03020204.xhp#par_id3149568.31.help.text
+msgctxt "03020204.xhp#par_id3149568.31.help.text"
+msgid "iNumber = Freefile"
+msgstr ""
+
+#: 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 ""
+
+#: 03020204.xhp#par_id3154022.33.help.text
+msgctxt "03020204.xhp#par_id3154022.33.help.text"
+msgid "Get #iNumber,2,sText"
+msgstr ""
+
+#: 03020204.xhp#par_id3150940.34.help.text
+msgid "Put #iNumber,,\"This is new text\""
+msgstr ""
+
+#: 03020204.xhp#par_id3146132.35.help.text
+msgctxt "03020204.xhp#par_id3146132.35.help.text"
+msgid "Get #iNumber,1,sText"
+msgstr ""
+
+#: 03020204.xhp#par_id3154198.36.help.text
+msgctxt "03020204.xhp#par_id3154198.36.help.text"
+msgid "Get #iNumber,2,sText"
+msgstr ""
+
+#: 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 ""
+
+#: 03020204.xhp#par_id3153785.38.help.text
+msgctxt "03020204.xhp#par_id3153785.38.help.text"
+msgid "Print Lof(#iNumber)"
+msgstr ""
+
+#: 03020204.xhp#par_id3151277.39.help.text
+msgctxt "03020204.xhp#par_id3151277.39.help.text"
+msgid "Close #iNumber"
+msgstr ""
+
+#: 03020204.xhp#par_id3150786.41.help.text
+msgctxt "03020204.xhp#par_id3150786.41.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03020201.xhp#tit.help.text
+msgid "Get Statement [Runtime]"
+msgstr ""
+
+#: 03020201.xhp#bm_id3154927.help.text
+msgid "<bookmark_value>Get statement</bookmark_value>"
+msgstr ""
+
+#: 03020201.xhp#hd_id3154927.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020201.xhp\">Get Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020201.xhp#hd_id3150358.4.help.text
+msgctxt "03020201.xhp#hd_id3150358.4.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020201.xhp#par_id3150792.5.help.text
+msgid "Get [#] FileNumber As Integer, [Position], Variable"
+msgstr ""
+
+#: 03020201.xhp#hd_id3154138.6.help.text
+msgctxt "03020201.xhp#hd_id3154138.6.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03020201.xhp#par_id3150448.7.help.text
+msgid "<emph>FileNumber:</emph> Any integer expression that determines the file number."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020201.xhp#hd_id3153144.12.help.text
+msgctxt "03020201.xhp#hd_id3153144.12.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020201.xhp#par_id3159154.13.help.text
+msgctxt "03020201.xhp#par_id3159154.13.help.text"
+msgid "Sub ExampleRandomAccess"
+msgstr ""
+
+#: 03020201.xhp#par_id3153188.14.help.text
+msgctxt "03020201.xhp#par_id3153188.14.help.text"
+msgid "Dim iNumber As Integer"
+msgstr ""
+
+#: 03020201.xhp#par_id3155307.15.help.text
+msgid "Dim sText As Variant REM Must be a variant"
+msgstr ""
+
+#: 03020201.xhp#par_id3152577.16.help.text
+msgctxt "03020201.xhp#par_id3152577.16.help.text"
+msgid "Dim aFile As String"
+msgstr ""
+
+#: 03020201.xhp#par_id3153726.17.help.text
+msgctxt "03020201.xhp#par_id3153726.17.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr ""
+
+#: 03020201.xhp#par_id3154490.19.help.text
+msgctxt "03020201.xhp#par_id3154490.19.help.text"
+msgid "iNumber = Freefile"
+msgstr ""
+
+#: 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 ""
+
+#: 03020201.xhp#par_id3149411.21.help.text
+msgid "Seek #iNumber,1 REM Position at beginning"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020201.xhp#par_id3153836.25.help.text
+msgctxt "03020201.xhp#par_id3153836.25.help.text"
+msgid "Seek #iNumber,2"
+msgstr ""
+
+#: 03020201.xhp#par_id3150327.26.help.text
+msgctxt "03020201.xhp#par_id3150327.26.help.text"
+msgid "Get #iNumber,,sText"
+msgstr ""
+
+#: 03020201.xhp#par_id3153707.27.help.text
+msgctxt "03020201.xhp#par_id3153707.27.help.text"
+msgid "Print sText"
+msgstr ""
+
+#: 03020201.xhp#par_id3153764.28.help.text
+msgctxt "03020201.xhp#par_id3153764.28.help.text"
+msgid "Close #iNumber"
+msgstr ""
+
+#: 03020201.xhp#par_id3153715.30.help.text
+msgctxt "03020201.xhp#par_id3153715.30.help.text"
+msgid "iNumber = Freefile"
+msgstr ""
+
+#: 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 ""
+
+#: 03020201.xhp#par_id3147340.32.help.text
+msgctxt "03020201.xhp#par_id3147340.32.help.text"
+msgid "Get #iNumber,2,sText"
+msgstr ""
+
+#: 03020201.xhp#par_id3155938.33.help.text
+msgid "Put #iNumber,,\"This is a new text\""
+msgstr ""
+
+#: 03020201.xhp#par_id3155959.34.help.text
+msgctxt "03020201.xhp#par_id3155959.34.help.text"
+msgid "Get #iNumber,1,sText"
+msgstr ""
+
+#: 03020201.xhp#par_id3147361.35.help.text
+msgctxt "03020201.xhp#par_id3147361.35.help.text"
+msgid "Get #iNumber,2,sText"
+msgstr ""
+
+#: 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 ""
+
+#: 03020201.xhp#par_id3149259.37.help.text
+msgctxt "03020201.xhp#par_id3149259.37.help.text"
+msgid "Print Lof(#iNumber)"
+msgstr ""
+
+#: 03020201.xhp#par_id3153790.38.help.text
+msgctxt "03020201.xhp#par_id3153790.38.help.text"
+msgid "Close #iNumber"
+msgstr ""
+
+#: 03020201.xhp#par_id3155606.40.help.text
+msgctxt "03020201.xhp#par_id3155606.40.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03020100.xhp#tit.help.text
+msgid "Opening and Closing Files"
+msgstr ""
+
+#: 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 ""
+
+#: 03030108.xhp#tit.help.text
+msgid "CDateFromIso Function [Runtime]"
+msgstr ""
+
+#: 03030108.xhp#bm_id3153127.help.text
+msgid "<bookmark_value>CdateFromIso function</bookmark_value>"
+msgstr ""
+
+#: 03030108.xhp#hd_id3153127.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030108.xhp\" name=\"CDateFromIso Function [Runtime]\">CDateFromIso Function [Runtime]</link>"
+msgstr ""
+
+#: 03030108.xhp#par_id3148550.2.help.text
+msgid "Returns the internal date number from a string that contains a date in ISO format."
+msgstr ""
+
+#: 03030108.xhp#hd_id3148947.3.help.text
+msgctxt "03030108.xhp#hd_id3148947.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03030108.xhp#par_id3150400.4.help.text
+msgid "CDateFromIso(String)"
+msgstr ""
+
+#: 03030108.xhp#hd_id3154367.5.help.text
+msgctxt "03030108.xhp#hd_id3154367.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03030108.xhp#par_id3156212.6.help.text
+msgid "Internal date number"
+msgstr ""
+
+#: 03030108.xhp#hd_id3125864.7.help.text
+msgctxt "03030108.xhp#hd_id3125864.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03030108.xhp#hd_id3150439.9.help.text
+msgctxt "03030108.xhp#hd_id3150439.9.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03030108.xhp#par_id3147318.10.help.text
+msgid "dateval = CDateFromIso(\"20021231\")"
+msgstr ""
+
+#: 03030108.xhp#par_id3146921.11.help.text
+msgid "returns 12/31/2002 in the date format of your system"
+msgstr ""
+
+#: 03030301.xhp#tit.help.text
+msgid "Date Statement [Runtime]"
+msgstr ""
+
+#: 03030301.xhp#bm_id3156027.help.text
+msgid "<bookmark_value>Date statement</bookmark_value>"
+msgstr ""
+
+#: 03030301.xhp#hd_id3156027.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030301.xhp\" name=\"Date Statement [Runtime]\">Date Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03030301.xhp#hd_id3148686.3.help.text
+msgctxt "03030301.xhp#hd_id3148686.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03030301.xhp#par_id3146794.4.help.text
+msgid "Date ; Date = Text As String"
+msgstr ""
+
+#: 03030301.xhp#hd_id3154347.5.help.text
+msgctxt "03030301.xhp#hd_id3154347.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03030301.xhp#hd_id3150793.7.help.text
+msgctxt "03030301.xhp#hd_id3150793.7.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03030301.xhp#par_id3151212.8.help.text
+msgid "Sub ExampleDate"
+msgstr ""
+
+#: 03030301.xhp#par_id3156424.9.help.text
+msgid "msgbox \"The date is \" & Date"
+msgstr ""
+
+#: 03030301.xhp#par_id3145174.10.help.text
+msgctxt "03030301.xhp#par_id3145174.10.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03131600.xhp#tit.help.text
+msgid "CreateUnoService Function [Runtime]"
+msgstr ""
+
+#: 03131600.xhp#bm_id3150682.help.text
+msgid "<bookmark_value>CreateUnoService function</bookmark_value>"
+msgstr ""
+
+#: 03131600.xhp#hd_id3150682.1.help.text
+msgid "<link href=\"text/sbasic/shared/03131600.xhp\" name=\"CreateUnoService Function [Runtime]\">CreateUnoService Function [Runtime]</link>"
+msgstr ""
+
+#: 03131600.xhp#par_id3152924.2.help.text
+msgid "Instantiates a Uno service with the ProcessServiceManager."
+msgstr ""
+
+#: 03131600.xhp#hd_id3152801.3.help.text
+msgctxt "03131600.xhp#hd_id3152801.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03131600.xhp#par_id3153346.4.help.text
+msgid "oService = CreateUnoService( Uno service name )"
+msgstr ""
+
+#: 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 ""
+
+#: 03131600.xhp#hd_id3151111.5.help.text
+msgctxt "03131600.xhp#hd_id3151111.5.help.text"
+msgid "Examples:"
+msgstr ""
+
+#: 03131600.xhp#par_id3154046.6.help.text
+msgctxt "03131600.xhp#par_id3154046.6.help.text"
+msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
+msgstr ""
+
+#: 03131600.xhp#bm_id8334604.help.text
+msgid "<bookmark_value>filepicker;API service</bookmark_value>"
+msgstr ""
+
+#: 03131600.xhp#par_idN10625.help.text
+msgid "The following code uses a service to open a file open dialog:"
+msgstr ""
+
+#: 03131600.xhp#par_idN10628.help.text
+msgctxt "03131600.xhp#par_idN10628.help.text"
+msgid "Sub Main"
+msgstr ""
+
+#: 03131600.xhp#par_idN1062B.help.text
+msgid "fName = FileOpenDialog (\"Please select a file\")"
+msgstr ""
+
+#: 03131600.xhp#par_idN10630.help.text
+msgid "print \"file chosen: \"+fName"
+msgstr ""
+
+#: 03131600.xhp#par_idN10635.help.text
+msgctxt "03131600.xhp#par_idN10635.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03131600.xhp#par_idN1063A.help.text
+msgid "function FileOpenDialog(title as String) as String"
+msgstr ""
+
+#: 03131600.xhp#par_idN1063D.help.text
+msgid "filepicker = createUnoService(\"com.sun.star.ui.dialogs.FilePicker\")"
+msgstr ""
+
+#: 03131600.xhp#par_idN10642.help.text
+msgid "filepicker.Title = title"
+msgstr ""
+
+#: 03131600.xhp#par_idN10647.help.text
+msgid "filepicker.execute()"
+msgstr ""
+
+#: 03131600.xhp#par_idN1064C.help.text
+msgid "files = filepicker.getFiles()"
+msgstr ""
+
+#: 03131600.xhp#par_idN10651.help.text
+msgid "FileOpenDialog=files(0)"
+msgstr ""
+
+#: 03131600.xhp#par_idN10656.help.text
+msgid "End function"
+msgstr ""
+
+#: 03120301.xhp#tit.help.text
+msgid "Format Function [Runtime]"
+msgstr ""
+
+#: 03120301.xhp#bm_id3153539.help.text
+msgid "<bookmark_value>Format function</bookmark_value>"
+msgstr ""
+
+#: 03120301.xhp#hd_id3153539.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120301.xhp\" name=\"Format Function [Runtime]\">Format Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03120301.xhp#hd_id3145090.4.help.text
+msgctxt "03120301.xhp#hd_id3145090.4.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03120301.xhp#par_id3153527.5.help.text
+msgid "Format (Number [, Format As String])"
+msgstr ""
+
+#: 03120301.xhp#hd_id3149178.6.help.text
+msgctxt "03120301.xhp#hd_id3149178.6.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03120301.xhp#par_id3148474.7.help.text
+msgctxt "03120301.xhp#par_id3148474.7.help.text"
+msgid "String"
+msgstr ""
+
+#: 03120301.xhp#hd_id3159176.8.help.text
+msgctxt "03120301.xhp#hd_id3159176.8.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03120301.xhp#par_id3149415.9.help.text
+msgid "<emph>Number:</emph> Numeric expression that you want to convert to a formatted string."
+msgstr ""
+
+#: 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 ""
+
+#: 03120301.xhp#hd_id3147561.47.help.text
+msgid "Formatting Codes"
+msgstr ""
+
+#: 03120301.xhp#par_id3147265.11.help.text
+msgid "The following list describes the codes that you can use for formatting a number:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03120301.xhp#par_id3153139.26.help.text
+msgid "\\ : The backslash displays the next character in the format code."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03120301.xhp#hd_id3149377.32.help.text
+msgid "Predefined format"
+msgstr ""
+
+#: 03120301.xhp#par_id3154730.33.help.text
+msgid "<emph>General Number:</emph> Numbers are displayed as entered."
+msgstr ""
+
+#: 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 ""
+
+#: 03120301.xhp#par_id3154490.35.help.text
+msgid "<emph>Fixed:</emph> Displays at least one digit in front of the decimal separator."
+msgstr ""
+
+#: 03120301.xhp#par_id3153415.36.help.text
+msgid "<emph>Standard:</emph> Displays numbers with a thousands separator."
+msgstr ""
+
+#: 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 ""
+
+#: 03120301.xhp#par_id3153836.38.help.text
+msgid "<emph>Scientific:</emph> Displays numbers in scientific format (for example, 1.00E+03 for 1000)."
+msgstr ""
+
+#: 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 ""
+
+#: 03120301.xhp#hd_id3149019.40.help.text
+msgctxt "03120301.xhp#hd_id3149019.40.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03120301.xhp#par_id3156054.41.help.text
+msgid "Sub ExampleFormat"
+msgstr ""
+
+#: 03120301.xhp#par_id3148993.42.help.text
+msgid "MsgBox Format(6328.2, \"##,##0.00\")"
+msgstr ""
+
+#: 03120301.xhp#par_idN107A2.help.text
+msgid "REM always use a period as decimal delimiter when you enter numbers in Basic source code."
+msgstr ""
+
+#: 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 ""
+
+#: 03120301.xhp#par_id3156382.43.help.text
+msgctxt "03120301.xhp#par_id3156382.43.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 03130500.xhp#tit.help.text
+msgid "Shell Function [Runtime]"
+msgstr ""
+
+#: 03130500.xhp#bm_id3150040.help.text
+msgid "<bookmark_value>Shell function</bookmark_value>"
+msgstr ""
+
+#: 03130500.xhp#hd_id3150040.1.help.text
+msgid "<link href=\"text/sbasic/shared/03130500.xhp\" name=\"Shell Function [Runtime]\">Shell Function [Runtime]</link>"
+msgstr ""
+
+#: 03130500.xhp#par_id3153394.2.help.text
+msgid "Starts another application and defines the respective window style, if necessary."
+msgstr ""
+
+#: 03130500.xhp#hd_id3153345.4.help.text
+msgctxt "03130500.xhp#hd_id3153345.4.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 03130500.xhp#par_id3147576.5.help.text
+msgid "Shell (Pathname As String[, Windowstyle As Integer][, Param As String][, bSync]) "
+msgstr ""
+
+#: 03130500.xhp#hd_id3149235.6.help.text
+msgctxt "03130500.xhp#hd_id3149235.6.help.text"
+msgid "Parameter"
+msgstr ""
+
+#: 03130500.xhp#hd_id3154306.23.help.text
+msgid "Pathname"
+msgstr ""
+
+#: 03130500.xhp#par_id3155419.7.help.text
+msgid "Complete path and program name of the program that you want to start."
+msgstr ""
+
+#: 03130500.xhp#hd_id3150771.24.help.text
+msgid "Windowstyle"
+msgstr ""
+
+#: 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 ""
+
+#: 03130500.xhp#par_id3148663.25.help.text
+msgctxt "03130500.xhp#par_id3148663.25.help.text"
+msgid "0"
+msgstr ""
+
+#: 03130500.xhp#par_id3153360.10.help.text
+msgid "The focus is on the hidden program window."
+msgstr ""
+
+#: 03130500.xhp#par_id3154123.26.help.text
+msgctxt "03130500.xhp#par_id3154123.26.help.text"
+msgid "1"
+msgstr ""
+
+#: 03130500.xhp#par_id3144760.11.help.text
+msgid "The focus is on the program window in standard size."
+msgstr ""
+
+#: 03130500.xhp#par_id3156422.27.help.text
+msgctxt "03130500.xhp#par_id3156422.27.help.text"
+msgid "2"
+msgstr ""
+
+#: 03130500.xhp#par_id3148451.12.help.text
+msgid "The focus is on the minimized program window."
+msgstr ""
+
+#: 03130500.xhp#par_id3149561.28.help.text
+msgctxt "03130500.xhp#par_id3149561.28.help.text"
+msgid "3"
+msgstr ""
+
+#: 03130500.xhp#par_id3146921.13.help.text
+msgid "focus is on the maximized program window."
+msgstr ""
+
+#: 03130500.xhp#par_id3149481.29.help.text
+msgctxt "03130500.xhp#par_id3149481.29.help.text"
+msgid "4"
+msgstr ""
+
+#: 03130500.xhp#par_id3155854.14.help.text
+msgid "Standard size program window, without focus."
+msgstr ""
+
+#: 03130500.xhp#par_id3145271.30.help.text
+msgctxt "03130500.xhp#par_id3145271.30.help.text"
+msgid "6"
+msgstr ""
+
+#: 03130500.xhp#par_id3152938.15.help.text
+msgid "Minimized program window, focus remains on the active window."
+msgstr ""
+
+#: 03130500.xhp#par_id3146119.31.help.text
+msgid "10"
+msgstr ""
+
+#: 03130500.xhp#par_id3151112.16.help.text
+msgid "Full-screen display."
+msgstr ""
+
+#: 03130500.xhp#hd_id3150419.33.help.text
+msgid "Param"
+msgstr ""
+
+#: 03130500.xhp#par_id3149412.17.help.text
+msgid "Any string expression that specifies the command line that want to pass."
+msgstr ""
+
+#: 03130500.xhp#hd_id3148456.32.help.text
+msgid "bSync"
+msgstr ""
+
+#: 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 ""
+
+#: 03130500.xhp#hd_id3154270.19.help.text
+msgctxt "03130500.xhp#hd_id3154270.19.help.text"
+msgid "Example"
+msgstr ""
+
+#: 03130500.xhp#par_id3153948.20.help.text
+msgid "Sub ExampleShellForWin"
+msgstr ""
+
+#: 03130500.xhp#par_id3154479.21.help.text
+msgid " Shell(\"c:\\windows\\calc.exe\",2)"
+msgstr ""
+
+#: 03130500.xhp#par_id3153709.22.help.text
+msgctxt "03130500.xhp#par_id3153709.22.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03104600.xhp#tit.help.text
+msgid "EqualUnoObjects Function [Runtime]"
+msgstr ""
+
+#: 03104600.xhp#bm_id3149205.help.text
+msgid "<bookmark_value>EqualUnoObjects function</bookmark_value>"
+msgstr ""
+
+#: 03104600.xhp#hd_id3149205.1.help.text
+msgid "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function [Runtime]\">EqualUnoObjects Function [Runtime]</link>"
+msgstr ""
+
+#: 03104600.xhp#par_id3145090.2.help.text
+msgid "Returns True if the two specified Basic Uno objects represent the same Uno object instance."
+msgstr ""
+
+#: 03104600.xhp#hd_id3148538.3.help.text
+msgctxt "03104600.xhp#hd_id3148538.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03104600.xhp#par_id3150669.4.help.text
+msgid "EqualUnoObjects( oObj1, oObj2 )"
+msgstr ""
+
+#: 03104600.xhp#hd_id3150984.5.help.text
+msgctxt "03104600.xhp#hd_id3150984.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03104600.xhp#par_id3154285.6.help.text
+msgctxt "03104600.xhp#par_id3154285.6.help.text"
+msgid "Bool"
+msgstr ""
+
+#: 03104600.xhp#hd_id3145315.7.help.text
+msgctxt "03104600.xhp#hd_id3145315.7.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03104600.xhp#par_id3156024.8.help.text
+msgid "// Copy of objects -> same instance"
+msgstr ""
+
+#: 03104600.xhp#par_id3154923.9.help.text
+msgctxt "03104600.xhp#par_id3154923.9.help.text"
+msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
+msgstr ""
+
+#: 03104600.xhp#par_id3147559.10.help.text
+msgid "oIntro2 = oIntrospection"
+msgstr ""
+
+#: 03104600.xhp#par_id3150541.11.help.text
+msgid "print EqualUnoObjects( oIntrospection, oIntro2 )"
+msgstr ""
+
+#: 03104600.xhp#par_id3153525.12.help.text
+msgid "// Copy of structs as value -> new instance"
+msgstr ""
+
+#: 03104600.xhp#par_id3154366.13.help.text
+msgid "Dim Struct1 as new com.sun.star.beans.Property"
+msgstr ""
+
+#: 03104600.xhp#par_id3154348.14.help.text
+msgid "Struct2 = Struct1"
+msgstr ""
+
+#: 03104600.xhp#par_id3154125.15.help.text
+msgid "print EqualUnoObjects( Struct1, Struct2 )"
+msgstr ""
+
+#: 03102000.xhp#tit.help.text
+msgid "DefVar Statement [Runtime]"
+msgstr ""
+
+#: 03102000.xhp#bm_id3143267.help.text
+msgid "<bookmark_value>DefVar statement</bookmark_value>"
+msgstr ""
+
+#: 03102000.xhp#hd_id3143267.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102000.xhp\" name=\"DefVar Statement [Runtime]\">DefVar Statement [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03102000.xhp#hd_id3154143.3.help.text
+msgctxt "03102000.xhp#hd_id3154143.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03102000.xhp#par_id3149514.4.help.text
+msgctxt "03102000.xhp#par_id3149514.4.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr ""
+
+#: 03102000.xhp#hd_id3156024.5.help.text
+msgctxt "03102000.xhp#hd_id3156024.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03102000.xhp#par_id3153524.8.help.text
+msgctxt "03102000.xhp#par_id3153524.8.help.text"
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr ""
+
+#: 03102000.xhp#par_id3150767.9.help.text
+msgid "<emph>DefVar:</emph> Variant"
+msgstr ""
+
+#: 03102000.xhp#hd_id3151041.10.help.text
+msgctxt "03102000.xhp#hd_id3151041.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03102000.xhp#par_id3156214.11.help.text
+msgctxt "03102000.xhp#par_id3156214.11.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr ""
+
+#: 03102000.xhp#par_id3145173.12.help.text
+msgctxt "03102000.xhp#par_id3145173.12.help.text"
+msgid "DefBool b"
+msgstr ""
+
+#: 03102000.xhp#par_id3150448.13.help.text
+msgctxt "03102000.xhp#par_id3150448.13.help.text"
+msgid "DefDate t"
+msgstr ""
+
+#: 03102000.xhp#par_id3153368.14.help.text
+msgctxt "03102000.xhp#par_id3153368.14.help.text"
+msgid "DefDbL d"
+msgstr ""
+
+#: 03102000.xhp#par_id3155132.15.help.text
+msgctxt "03102000.xhp#par_id3155132.15.help.text"
+msgid "DefInt i"
+msgstr ""
+
+#: 03102000.xhp#par_id3155855.16.help.text
+msgctxt "03102000.xhp#par_id3155855.16.help.text"
+msgid "DefLng l"
+msgstr ""
+
+#: 03102000.xhp#par_id3147426.17.help.text
+msgctxt "03102000.xhp#par_id3147426.17.help.text"
+msgid "DefObj o"
+msgstr ""
+
+#: 03102000.xhp#par_id3151117.18.help.text
+msgctxt "03102000.xhp#par_id3151117.18.help.text"
+msgid "DefVar v"
+msgstr ""
+
+#: 03102000.xhp#par_id3148645.20.help.text
+msgid "Sub ExampleDefVar"
+msgstr ""
+
+#: 03102000.xhp#par_id3154012.21.help.text
+msgid "vDiv=99 REM vDiv is an implicit variant"
+msgstr ""
+
+#: 03102000.xhp#par_id3146121.22.help.text
+msgid "vDiv=\"Hello world\""
+msgstr ""
+
+#: 03102000.xhp#par_id3149262.23.help.text
+msgctxt "03102000.xhp#par_id3149262.23.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 01030200.xhp#tit.help.text
+msgid "The Basic Editor"
+msgstr ""
+
+#: 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 ""
+
+#: 01030200.xhp#hd_id3147264.1.help.text
+msgid "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"The Basic Editor\">The Basic Editor</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01030200.xhp#hd_id3125863.4.help.text
+msgid "Navigating in a Project"
+msgstr ""
+
+#: 01030200.xhp#hd_id3145785.6.help.text
+msgid "The Library List"
+msgstr ""
+
+#: 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 ""
+
+#: 01030200.xhp#hd_id3153190.8.help.text
+msgid "The Object Catalog"
+msgstr ""
+
+#: 01030200.xhp#hd_id3148647.15.help.text
+msgid "Saving and Loading Basic Source Code"
+msgstr ""
+
+#: 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 ""
+
+#: 01030200.xhp#par_id3149959.25.help.text
+msgid "You cannot save Basic dialogs to a text file."
+msgstr ""
+
+#: 01030200.xhp#hd_id3149403.17.help.text
+msgid "Saving Source Code to a Text File"
+msgstr ""
+
+#: 01030200.xhp#par_id3150327.18.help.text
+msgid "Select the module that you want to export as text from the object catalog."
+msgstr ""
+
+#: 01030200.xhp#par_id3150752.19.help.text
+msgid "Click the <emph>Save Source As</emph> icon in the Macro toolbar."
+msgstr ""
+
+#: 01030200.xhp#par_id3154754.20.help.text
+msgid "Select a file name and click <emph>OK</emph> to save the file."
+msgstr ""
+
+#: 01030200.xhp#hd_id3159264.21.help.text
+msgid "Loading Source Code From a Text File"
+msgstr ""
+
+#: 01030200.xhp#par_id3147343.22.help.text
+msgid "Select the module where you want to import the source code from the object catalog."
+msgstr ""
+
+#: 01030200.xhp#par_id3145230.23.help.text
+msgid "Position the cursor where you want to insert the program code."
+msgstr ""
+
+#: 01030200.xhp#par_id3149565.24.help.text
+msgid "Click the <emph>Insert Source Text</emph> icon in the Macro toolbar."
+msgstr ""
+
+#: 01030200.xhp#par_id3154020.33.help.text
+msgid "Select the text file containing the source code and click <emph>OK</emph>."
+msgstr ""
+
+#: 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 ""
+
+#: 03080202.xhp#tit.help.text
+msgid "Log Function [Runtime]"
+msgstr ""
+
+#: 03080202.xhp#bm_id3149416.help.text
+msgid "<bookmark_value>Log function</bookmark_value>"
+msgstr ""
+
+#: 03080202.xhp#hd_id3149416.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080202.xhp\" name=\"Log Function [Runtime]\">Log Function [Runtime]</link>"
+msgstr ""
+
+#: 03080202.xhp#par_id3145066.2.help.text
+msgid "Returns the natural logarithm of a number."
+msgstr ""
+
+#: 03080202.xhp#hd_id3159414.3.help.text
+msgctxt "03080202.xhp#hd_id3159414.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03080202.xhp#par_id3154760.4.help.text
+msgid "Log (Number)"
+msgstr ""
+
+#: 03080202.xhp#hd_id3149457.5.help.text
+msgctxt "03080202.xhp#hd_id3149457.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03080202.xhp#par_id3150791.6.help.text
+msgctxt "03080202.xhp#par_id3150791.6.help.text"
+msgid "Double"
+msgstr ""
+
+#: 03080202.xhp#hd_id3151211.7.help.text
+msgctxt "03080202.xhp#hd_id3151211.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03080202.xhp#par_id3151041.8.help.text
+msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the natural logarithm for."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03080202.xhp#par_id3145420.11.help.text
+msgid "Log n(x) = Log(x) / Log(n)"
+msgstr ""
+
+#: 03080202.xhp#hd_id3155131.12.help.text
+msgctxt "03080202.xhp#hd_id3155131.12.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03080202.xhp#par_id3152463.13.help.text
+msgctxt "03080202.xhp#par_id3152463.13.help.text"
+msgid "Sub ExampleLogExp"
+msgstr ""
+
+#: 03080202.xhp#par_id3145750.14.help.text
+msgid "Dim a as Double"
+msgstr ""
+
+#: 03080202.xhp#par_id3151116.15.help.text
+msgid "Dim const b1=12.345e12"
+msgstr ""
+
+#: 03080202.xhp#par_id3146985.16.help.text
+msgid "Dim const b2=1.345e34"
+msgstr ""
+
+#: 03080202.xhp#par_id3148616.17.help.text
+msgid "a=Exp( Log(b1)+Log(b2) )"
+msgstr ""
+
+#: 03080202.xhp#par_id3149262.18.help.text
+msgid "MsgBox \"\" & a & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm function\""
+msgstr ""
+
+#: 03080202.xhp#par_id3155411.19.help.text
+msgctxt "03080202.xhp#par_id3155411.19.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03102101.xhp#tit.help.text
+msgid "ReDim Statement [Runtime]"
+msgstr ""
+
+#: 03102101.xhp#bm_id3150398.help.text
+msgid "<bookmark_value>ReDim statement</bookmark_value>"
+msgstr ""
+
+#: 03102101.xhp#hd_id3150398.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102101.xhp\" name=\"ReDim Statement [Runtime]\">ReDim Statement [Runtime]</link>"
+msgstr ""
+
+#: 03102101.xhp#par_id3154685.2.help.text
+msgctxt "03102101.xhp#par_id3154685.2.help.text"
+msgid "Declares a variable or an array."
+msgstr ""
+
+#: 03102101.xhp#hd_id3154218.3.help.text
+msgctxt "03102101.xhp#hd_id3154218.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03102101.xhp#hd_id3148451.5.help.text
+msgctxt "03102101.xhp#hd_id3148451.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03102101.xhp#par_id3155307.8.help.text
+msgid "Start and End can be numeric expressions if ReDim is used at the procedure level."
+msgstr ""
+
+#: 03102101.xhp#par_id3153951.9.help.text
+msgid "<emph>VarType:</emph> Keyword that declares the data type of a variable."
+msgstr ""
+
+#: 03102101.xhp#par_id3147317.10.help.text
+msgctxt "03102101.xhp#par_id3147317.10.help.text"
+msgid "<emph>Keyword:</emph> Variable type"
+msgstr ""
+
+#: 03102101.xhp#par_id3153728.11.help.text
+msgid "<emph>Bool: </emph>Boolean variable (True, False)"
+msgstr ""
+
+#: 03102101.xhp#par_id3146121.12.help.text
+msgctxt "03102101.xhp#par_id3146121.12.help.text"
+msgid "<emph>Date:</emph> Date variable"
+msgstr ""
+
+#: 03102101.xhp#par_id3159156.13.help.text
+msgid "<emph>Double:</emph> Double floating point variable (1.79769313486232x10E308 - 4.94065645841247x10E-324)"
+msgstr ""
+
+#: 03102101.xhp#par_id3148616.14.help.text
+msgctxt "03102101.xhp#par_id3148616.14.help.text"
+msgid "<emph>Integer:</emph> Integer variable (-32768 - 32767)"
+msgstr ""
+
+#: 03102101.xhp#par_id3147348.15.help.text
+msgid "<emph>Long:</emph> Long integer variable (-2,147,483,648 - 2,147,483,647)"
+msgstr ""
+
+#: 03102101.xhp#par_id3149412.16.help.text
+msgid "<emph>Object:</emph> Object variable (can only be subsequently defined by Set!)"
+msgstr ""
+
+#: 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 ""
+
+#: 03102101.xhp#par_id3148458.18.help.text
+msgid "<emph>String:</emph> String variable containing a maximum of 64,000 ASCII characters."
+msgstr ""
+
+#: 03102101.xhp#par_id3149581.19.help.text
+msgid "<emph>Variant: </emph>Variant variable type (can contain all types and is set by definition)."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03102101.xhp#par_id3153950.23.help.text
+msgid "DIM text(20) As String REM 21 elements numbered from 0 to 20"
+msgstr ""
+
+#: 03102101.xhp#par_id3146912.24.help.text
+msgid "DIM text(5 to 25) As String REM 21 elements numbered from 5 to 25"
+msgstr ""
+
+#: 03102101.xhp#par_id3153709.25.help.text
+msgid "DIM text$(-15 to 5) As String REM 21 elements (0 inclusive),"
+msgstr ""
+
+#: 03102101.xhp#par_id3150321.26.help.text
+msgid "rem numbered from -15 to 5"
+msgstr ""
+
+#: 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 ""
+
+#: 03102101.xhp#hd_id3148405.28.help.text
+msgctxt "03102101.xhp#hd_id3148405.28.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03102101.xhp#par_id3154362.29.help.text
+msgid "Sub ExampleRedim"
+msgstr ""
+
+#: 03102101.xhp#par_id3150042.30.help.text
+msgid "Dim iVar() As Integer, iCount As Integer"
+msgstr ""
+
+#: 03102101.xhp#par_id3147339.31.help.text
+msgid "ReDim iVar(5) As integer"
+msgstr ""
+
+#: 03102101.xhp#par_id3149106.32.help.text
+msgid "For iCount = 1 To 5"
+msgstr ""
+
+#: 03102101.xhp#par_id3155174.33.help.text
+msgctxt "03102101.xhp#par_id3155174.33.help.text"
+msgid "iVar(iCount) = iCount"
+msgstr ""
+
+#: 03102101.xhp#par_id3163805.34.help.text
+msgctxt "03102101.xhp#par_id3163805.34.help.text"
+msgid "Next iCount"
+msgstr ""
+
+#: 03102101.xhp#par_id3149568.35.help.text
+msgid "ReDim iVar(10) As integer"
+msgstr ""
+
+#: 03102101.xhp#par_id3147364.36.help.text
+msgid "For iCount = 1 To 10"
+msgstr ""
+
+#: 03102101.xhp#par_id3155335.37.help.text
+msgctxt "03102101.xhp#par_id3155335.37.help.text"
+msgid "iVar(iCount) = iCount"
+msgstr ""
+
+#: 03102101.xhp#par_id3154662.38.help.text
+msgctxt "03102101.xhp#par_id3154662.38.help.text"
+msgid "Next iCount"
+msgstr ""
+
+#: 03102101.xhp#par_id3149926.39.help.text
+msgctxt "03102101.xhp#par_id3149926.39.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 01020500.xhp#tit.help.text
+msgid "Libraries, Modules and Dialogs"
+msgstr ""
+
+#: 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 ""
+
+#: 01020500.xhp#par_id3147427.2.help.text
+msgid "The following describes the basic use of libraries, modules and dialogs in $[officename] Basic."
+msgstr ""
+
+#: 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 ""
+
+#: 01020500.xhp#hd_id3148575.5.help.text
+msgid "Libraries"
+msgstr ""
+
+#: 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 ""
+
+#: 01020500.xhp#par_id3151112.7.help.text
+msgid "A library can contain up to 16,000 modules."
+msgstr ""
+
+#: 01020500.xhp#hd_id3149262.8.help.text
+msgctxt "01020500.xhp#hd_id3149262.8.help.text"
+msgid "Modules"
+msgstr ""
+
+#: 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 ""
+
+#: 01020500.xhp#hd_id3152577.11.help.text
+msgid "Dialog Modules"
+msgstr ""
+
+#: 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 ""
+
+#: main0211.xhp#tit.help.text
+msgid "Macro Toolbar"
+msgstr ""
+
+#: main0211.xhp#bm_id3150543.help.text
+msgid "<bookmark_value>toolbars; Basic IDE</bookmark_value><bookmark_value>macro toolbar</bookmark_value>"
+msgstr ""
+
+#: main0211.xhp#hd_id3150543.1.help.text
+msgid "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\">Macro Toolbar</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03020410.xhp#tit.help.text
+msgid "Kill Statement [Runtime]"
+msgstr ""
+
+#: 03020410.xhp#bm_id3153360.help.text
+msgid "<bookmark_value>Kill statement</bookmark_value>"
+msgstr ""
+
+#: 03020410.xhp#hd_id3153360.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020410.xhp\" name=\"Kill Statement [Runtime]\">Kill Statement [Runtime]</link>"
+msgstr ""
+
+#: 03020410.xhp#par_id3151211.2.help.text
+msgid "Deletes a file from a disk."
+msgstr ""
+
+#: 03020410.xhp#hd_id3150767.3.help.text
+msgctxt "03020410.xhp#hd_id3150767.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020410.xhp#par_id3154685.4.help.text
+msgid "Kill File As String"
+msgstr ""
+
+#: 03020410.xhp#hd_id3153194.5.help.text
+msgctxt "03020410.xhp#hd_id3153194.5.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 03020410.xhp#hd_id3148645.7.help.text
+msgctxt "03020410.xhp#hd_id3148645.7.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020410.xhp#par_id3154320.8.help.text
+msgid "sub ExampleKill"
+msgstr ""
+
+#: 03020410.xhp#par_id3163710.9.help.text
+msgid "Kill \"C:\\datafile.dat\" REM File must be created in advance"
+msgstr ""
+
+#: 03020410.xhp#par_id3145749.10.help.text
+msgctxt "03020410.xhp#par_id3145749.10.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03103000.xhp#tit.help.text
+msgid "UBound Function [Runtime]"
+msgstr ""
+
+#: 03103000.xhp#bm_id3148538.help.text
+msgid "<bookmark_value>UBound function</bookmark_value>"
+msgstr ""
+
+#: 03103000.xhp#hd_id3148538.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103000.xhp\" name=\"UBound Function [Runtime]\">UBound Function [Runtime]</link>"
+msgstr ""
+
+#: 03103000.xhp#par_id3147573.2.help.text
+msgid "Returns the upper boundary of an array."
+msgstr ""
+
+#: 03103000.xhp#hd_id3150984.3.help.text
+msgctxt "03103000.xhp#hd_id3150984.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03103000.xhp#par_id3149415.4.help.text
+msgid "UBound (ArrayName [, Dimension])"
+msgstr ""
+
+#: 03103000.xhp#hd_id3153897.5.help.text
+msgctxt "03103000.xhp#hd_id3153897.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03103000.xhp#par_id3149670.6.help.text
+msgctxt "03103000.xhp#par_id3149670.6.help.text"
+msgid "Integer"
+msgstr ""
+
+#: 03103000.xhp#hd_id3154347.7.help.text
+msgctxt "03103000.xhp#hd_id3154347.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03103000.xhp#hd_id3153192.10.help.text
+msgctxt "03103000.xhp#hd_id3153192.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03103000.xhp#par_id3147229.11.help.text
+msgctxt "03103000.xhp#par_id3147229.11.help.text"
+msgid "Sub ExampleUboundLbound"
+msgstr ""
+
+#: 03103000.xhp#par_id3150440.12.help.text
+msgctxt "03103000.xhp#par_id3150440.12.help.text"
+msgid "Dim sVar(10 to 20) As String"
+msgstr ""
+
+#: 03103000.xhp#par_id3145785.13.help.text
+msgctxt "03103000.xhp#par_id3145785.13.help.text"
+msgid "print LBound(sVar())"
+msgstr ""
+
+#: 03103000.xhp#par_id3153092.14.help.text
+msgctxt "03103000.xhp#par_id3153092.14.help.text"
+msgid "print UBound(sVar())"
+msgstr ""
+
+#: 03103000.xhp#par_id3153727.15.help.text
+msgctxt "03103000.xhp#par_id3153727.15.help.text"
+msgid "end Sub"
+msgstr ""
+
+#: 03103000.xhp#par_id3145271.16.help.text
+msgctxt "03103000.xhp#par_id3145271.16.help.text"
+msgid "Sub ExampleUboundLbound2"
+msgstr ""
+
+#: 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 ""
+
+#: 03103000.xhp#par_id3152596.18.help.text
+msgctxt "03103000.xhp#par_id3152596.18.help.text"
+msgid "Print LBound(sVar()) REM Returns 10"
+msgstr ""
+
+#: 03103000.xhp#par_id3153138.19.help.text
+msgctxt "03103000.xhp#par_id3153138.19.help.text"
+msgid "Print UBound(sVar()) REM Returns 20"
+msgstr ""
+
+#: 03103000.xhp#par_id3149665.20.help.text
+msgctxt "03103000.xhp#par_id3149665.20.help.text"
+msgid "Print LBound(sVar(),2) REM Returns 5"
+msgstr ""
+
+#: 03103000.xhp#par_id3147214.21.help.text
+msgctxt "03103000.xhp#par_id3147214.21.help.text"
+msgid "Print UBound(sVar(),2) REM Returns 70"
+msgstr ""
+
+#: 03103000.xhp#par_id3155855.22.help.text
+msgctxt "03103000.xhp#par_id3155855.22.help.text"
+msgid "end Sub"
+msgstr ""
+
+#: 01020300.xhp#tit.help.text
+msgid "Using Procedures and Functions"
+msgstr ""
+
+#: 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 ""
+
+#: 01020300.xhp#hd_id3149456.1.help.text
+msgid "<link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures and Functions</link>"
+msgstr ""
+
+#: 01020300.xhp#par_id3150767.2.help.text
+msgid "The following describes the basic use of procedures and functions in $[officename] Basic."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01020300.xhp#hd_id3153770.26.help.text
+msgid "Passing Variables to Procedures (SUB) and Functions (FUNCTION)"
+msgstr ""
+
+#: 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 ""
+
+#: 01020300.xhp#par_id3163710.28.help.text
+msgid "SUB SubName(<emph>Parameter1 As Type, Parameter2 As Type,...</emph>)"
+msgstr ""
+
+#: 01020300.xhp#par_id3151114.29.help.text
+msgctxt "01020300.xhp#par_id3151114.29.help.text"
+msgid "Program code"
+msgstr ""
+
+#: 01020300.xhp#par_id3146975.30.help.text
+msgid "END SUB"
+msgstr ""
+
+#: 01020300.xhp#par_id3152577.31.help.text
+msgid "The SUB is called using the following syntax:"
+msgstr ""
+
+#: 01020300.xhp#par_id3159154.32.help.text
+msgid "SubName(Value1, Value2,...)"
+msgstr ""
+
+#: 01020300.xhp#par_id3147124.33.help.text
+msgid "The parameters passed to a SUB must fit to those specified in the SUB declaration."
+msgstr ""
+
+#: 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 ""
+
+#: 01020300.xhp#par_id3149412.35.help.text
+msgid "FUNCTION FunctionName(Parameter1 As Type, Parameter2 As Type,...) As Type"
+msgstr ""
+
+#: 01020300.xhp#par_id3156284.36.help.text
+msgctxt "01020300.xhp#par_id3156284.36.help.text"
+msgid "Program code"
+msgstr ""
+
+#: 01020300.xhp#par_id3145799.37.help.text
+msgid "<emph>FunctionName=Result</emph>"
+msgstr ""
+
+#: 01020300.xhp#par_id3150716.38.help.text
+msgctxt "01020300.xhp#par_id3150716.38.help.text"
+msgid "End Function"
+msgstr ""
+
+#: 01020300.xhp#par_id3153839.39.help.text
+msgid "The FUNCTION is called using the following syntax:"
+msgstr ""
+
+#: 01020300.xhp#par_id3146914.40.help.text
+msgid "Variable=FunctionName(Parameter1, Parameter2,...)"
+msgstr ""
+
+#: 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 ""
+
+#: 01020300.xhp#hd_id3156276.45.help.text
+msgid "Passing Variables by Value or Reference"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01020300.xhp#par_id3150042.54.help.text
+msgid "Result = Function(<emph>ByVal</emph> Parameter)"
+msgstr ""
+
+#: 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 ""
+
+#: 01020300.xhp#hd_id3150982.57.help.text
+msgid "Scope of Variables"
+msgstr ""
+
+#: 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 ""
+
+#: 01020300.xhp#hd_id3154186.59.help.text
+msgid "Declaring Variables Outside a SUB or FUNCTION"
+msgstr ""
+
+#: 01020300.xhp#par_id3150208.111.help.text
+msgid "GLOBAL VarName As TYPENAME"
+msgstr ""
+
+#: 01020300.xhp#par_id3145258.112.help.text
+msgid "The variable is valid as long as the $[officename] session lasts."
+msgstr ""
+
+#: 01020300.xhp#par_id3153198.60.help.text
+msgid "PUBLIC VarName As TYPENAME"
+msgstr ""
+
+#: 01020300.xhp#par_id3150088.61.help.text
+msgid "The variable is valid in all modules."
+msgstr ""
+
+#: 01020300.xhp#par_id3158212.62.help.text
+msgid "PRIVATE VarName As TYPENAME"
+msgstr ""
+
+#: 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 ""
+
+#: 01020300.xhp#par_id3150886.64.help.text
+msgid "DIM VarName As TYPENAME"
+msgstr ""
+
+#: 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 ""
+
+#: 01020300.xhp#hd_id5097506.help.text
+msgid "Example for private variables"
+msgstr ""
+
+#: 01020300.xhp#par_id8738975.help.text
+msgid "Enforce private variables to be private across modules by setting CompatibilityMode(true)."
+msgstr ""
+
+#: 01020300.xhp#par_id146488.help.text
+msgid "REM ***** Module1 *****"
+msgstr ""
+
+#: 01020300.xhp#par_id2042298.help.text
+msgid "Private myText As String"
+msgstr ""
+
+#: 01020300.xhp#par_id2969756.help.text
+msgid "Sub initMyText"
+msgstr ""
+
+#: 01020300.xhp#par_id9475997.help.text
+msgid "myText = \"Hello\""
+msgstr ""
+
+#: 01020300.xhp#par_id6933500.help.text
+msgid "print \"in module1 : \", myText"
+msgstr ""
+
+#: 01020300.xhp#par_id631733.help.text
+msgctxt "01020300.xhp#par_id631733.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 01020300.xhp#par_id8234199.help.text
+msgid "REM ***** Module2 *****"
+msgstr ""
+
+#: 01020300.xhp#par_id6969512.help.text
+msgid "'Option Explicit"
+msgstr ""
+
+#: 01020300.xhp#par_id1196935.help.text
+msgid "Sub demoBug"
+msgstr ""
+
+#: 01020300.xhp#par_id1423993.help.text
+msgid "CompatibilityMode( true )"
+msgstr ""
+
+#: 01020300.xhp#par_id6308786.help.text
+msgid "initMyText"
+msgstr ""
+
+#: 01020300.xhp#par_id4104129.help.text
+msgid "' Now returns empty string"
+msgstr ""
+
+#: 01020300.xhp#par_id7906125.help.text
+msgid "' (or rises error for Option Explicit)"
+msgstr ""
+
+#: 01020300.xhp#par_id8055970.help.text
+msgid "print \"Now in module2 : \", myText"
+msgstr ""
+
+#: 01020300.xhp#par_id2806176.help.text
+msgctxt "01020300.xhp#par_id2806176.help.text"
+msgid "End Sub"
+msgstr ""
+
+#: 01020300.xhp#hd_id3154368.66.help.text
+msgid "Saving Variable Content after Exiting a SUB or FUNCTION"
+msgstr ""
+
+#: 01020300.xhp#par_id3156288.67.help.text
+msgid "STATIC VarName As TYPENAME"
+msgstr ""
+
+#: 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 ""
+
+#: 01020300.xhp#hd_id3155809.41.help.text
+msgid "Specifying the Return Value Type of a FUNCTION"
+msgstr ""
+
+#: 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 ""
+
+#: 01020300.xhp#par_id3152899.43.help.text
+msgid "Function WordCount(WordText as String) <emph>as Integer</emph>"
+msgstr ""
+
+#: 03020404.xhp#tit.help.text
+msgid "Dir Function [Runtime]"
+msgstr ""
+
+#: 03020404.xhp#bm_id3154347.help.text
+msgid "<bookmark_value>Dir function</bookmark_value>"
+msgstr ""
+
+#: 03020404.xhp#hd_id3154347.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020404.xhp\" name=\"Dir Function [Runtime]\">Dir Function [Runtime]</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 03020404.xhp#hd_id3154365.3.help.text
+msgctxt "03020404.xhp#hd_id3154365.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03020404.xhp#par_id3156282.4.help.text
+msgid "Dir [(Text As String) [, Attrib As Integer]]"
+msgstr ""
+
+#: 03020404.xhp#hd_id3156424.5.help.text
+msgctxt "03020404.xhp#hd_id3156424.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03020404.xhp#par_id3153193.6.help.text
+msgctxt "03020404.xhp#par_id3153193.6.help.text"
+msgid "String"
+msgstr ""
+
+#: 03020404.xhp#hd_id3153770.7.help.text
+msgctxt "03020404.xhp#hd_id3153770.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020404.xhp#par_id3149666.11.help.text
+msgctxt "03020404.xhp#par_id3149666.11.help.text"
+msgid "0 : Normal files."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03020404.xhp#hd_id3154942.20.help.text
+msgctxt "03020404.xhp#hd_id3154942.20.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03020404.xhp#par_id3147125.21.help.text
+msgid "Sub ExampleDir"
+msgstr ""
+
+#: 03020404.xhp#par_id3148455.22.help.text
+msgid "REM Displays all files and directories"
+msgstr ""
+
+#: 03020404.xhp#par_id3147396.23.help.text
+msgctxt "03020404.xhp#par_id3147396.23.help.text"
+msgid "Dim sPath As String"
+msgstr ""
+
+#: 03020404.xhp#par_id3149378.24.help.text
+msgid "Dim sDir as String, sValue as String"
+msgstr ""
+
+#: 03020404.xhp#par_id3153416.27.help.text
+msgid "sDir=\"Directories:\""
+msgstr ""
+
+#: 03020404.xhp#par_id3153838.29.help.text
+msgid "sPath = CurDir"
+msgstr ""
+
+#: 03020404.xhp#par_id3150327.30.help.text
+msgid "sValue = Dir$(sPath + getPathSeparator + \"*\",16)"
+msgstr ""
+
+#: 03020404.xhp#par_id3155064.31.help.text
+msgctxt "03020404.xhp#par_id3155064.31.help.text"
+msgid "Do"
+msgstr ""
+
+#: 03020404.xhp#par_id3153764.32.help.text
+msgid "If sValue <> \".\" and sValue <> \"..\" Then"
+msgstr ""
+
+#: 03020404.xhp#par_id3155766.33.help.text
+msgid "if (GetAttr( sPath + getPathSeparator + sValue) AND 16) >0 then"
+msgstr ""
+
+#: 03020404.xhp#par_id3154253.34.help.text
+msgid "REM get the directories"
+msgstr ""
+
+#: 03020404.xhp#par_id3159264.35.help.text
+msgid "sDir = sDir & chr(13) & sValue"
+msgstr ""
+
+#: 03020404.xhp#par_id3145148.43.help.text
+msgctxt "03020404.xhp#par_id3145148.43.help.text"
+msgid "End If"
+msgstr ""
+
+#: 03020404.xhp#par_idN10700.help.text
+msgctxt "03020404.xhp#par_idN10700.help.text"
+msgid "End If"
+msgstr ""
+
+#: 03020404.xhp#par_id3147324.44.help.text
+msgid "sValue = Dir$"
+msgstr ""
+
+#: 03020404.xhp#par_id3155335.45.help.text
+msgid "Loop Until sValue = \"\""
+msgstr ""
+
+#: 03020404.xhp#par_id3147345.46.help.text
+msgid "MsgBox sDir,0,sPath"
+msgstr ""
+
+#: 03020404.xhp#par_id3163808.48.help.text
+msgctxt "03020404.xhp#par_id3163808.48.help.text"
+msgid "End sub"
+msgstr ""
+
+#: 03100600.xhp#tit.help.text
+msgid "CLng Function [Runtime]"
+msgstr ""
+
+#: 03100600.xhp#bm_id3153311.help.text
+msgid "<bookmark_value>CLng function</bookmark_value>"
+msgstr ""
+
+#: 03100600.xhp#hd_id3153311.1.help.text
+msgid "<link href=\"text/sbasic/shared/03100600.xhp\" name=\"CLng Function [Runtime]\">CLng Function [Runtime]</link>"
+msgstr ""
+
+#: 03100600.xhp#par_id3148686.2.help.text
+msgid "Converts any string or numeric expression to a long integer."
+msgstr ""
+
+#: 03100600.xhp#hd_id3145315.3.help.text
+msgctxt "03100600.xhp#hd_id3145315.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03100600.xhp#par_id3147573.4.help.text
+msgid "CLng (Expression)"
+msgstr ""
+
+#: 03100600.xhp#hd_id3145610.5.help.text
+msgctxt "03100600.xhp#hd_id3145610.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03100600.xhp#par_id3153897.6.help.text
+msgctxt "03100600.xhp#par_id3153897.6.help.text"
+msgid "Long"
+msgstr ""
+
+#: 03100600.xhp#hd_id3154760.7.help.text
+msgctxt "03100600.xhp#hd_id3154760.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03100600.xhp#hd_id3154216.10.help.text
+msgctxt "03100600.xhp#hd_id3154216.10.help.text"
+msgid "Example:"
+msgstr ""
+
+#: 03100600.xhp#par_id3147229.11.help.text
+msgctxt "03100600.xhp#par_id3147229.11.help.text"
+msgid "Sub ExampleCountryConvert"
+msgstr ""
+
+#: 03100600.xhp#par_id3156281.12.help.text
+msgctxt "03100600.xhp#par_id3156281.12.help.text"
+msgid "Msgbox CDbl(1234.5678)"
+msgstr ""
+
+#: 03100600.xhp#par_id3153969.13.help.text
+msgctxt "03100600.xhp#par_id3153969.13.help.text"
+msgid "Msgbox CInt(1234.5678)"
+msgstr ""
+
+#: 03100600.xhp#par_id3154909.14.help.text
+msgctxt "03100600.xhp#par_id3154909.14.help.text"
+msgid "Msgbox CLng(1234.5678)"
+msgstr ""
+
+#: 03100600.xhp#par_id3153770.15.help.text
+msgctxt "03100600.xhp#par_id3153770.15.help.text"
+msgid "end sub"
+msgstr ""
+
+#: 03120105.xhp#tit.help.text
+msgid "CByte Function [Runtime]"
+msgstr ""
+
+#: 03120105.xhp#bm_id3156027.help.text
+msgid "<bookmark_value>CByte function</bookmark_value>"
+msgstr ""
+
+#: 03120105.xhp#hd_id3156027.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120105.xhp\" name=\"CByte Function [Runtime]\">CByte Function [Runtime]</link>"
+msgstr ""
+
+#: 03120105.xhp#par_id3143267.2.help.text
+msgid "Converts a string or a numeric expression to the type Byte."
+msgstr ""
+
+#: 03120105.xhp#hd_id3149811.3.help.text
+msgctxt "03120105.xhp#hd_id3149811.3.help.text"
+msgid "Syntax:"
+msgstr ""
+
+#: 03120105.xhp#par_id3147573.4.help.text
+msgid "Cbyte( expression )"
+msgstr ""
+
+#: 03120105.xhp#hd_id3145315.5.help.text
+msgctxt "03120105.xhp#hd_id3145315.5.help.text"
+msgid "Return value:"
+msgstr ""
+
+#: 03120105.xhp#par_id3148473.6.help.text
+msgid "Byte"
+msgstr ""
+
+#: 03120105.xhp#hd_id3147530.7.help.text
+msgctxt "03120105.xhp#hd_id3147530.7.help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: 03120105.xhp#par_id3145068.8.help.text
+msgid "<emph>Expression:</emph> A string or a numeric expression."
+msgstr ""
diff --git a/source/uk/helpcontent2/source/text/sbasic/shared/01.po b/source/uk/helpcontent2/source/text/sbasic/shared/01.po
new file mode 100644
index 00000000000..ffb3f9b4213
--- /dev/null
+++ b/source/uk/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 23:19+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
+
+#: 06130000.xhp#bm_id3145786.help.text
+msgid "<bookmark_value>macros; Basic IDE</bookmark_value><bookmark_value>Basic IDE; macros</bookmark_value>"
+msgstr ""
+
+#: 06130000.xhp#hd_id3145786.1.help.text
+msgctxt "06130000.xhp#hd_id3145786.1.help.text"
+msgid "Macro"
+msgstr ""
+
+#: 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 ""
+
+#: 06130000.xhp#hd_id3154145.3.help.text
+msgid "Macro name"
+msgstr ""
+
+#: 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 ""
+
+#: 06130000.xhp#hd_id3153729.7.help.text
+msgid "Macro from / Save macro in"
+msgstr ""
+
+#: 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 ""
+
+#: 06130000.xhp#hd_id3146975.11.help.text
+msgid "Run / Save"
+msgstr ""
+
+#: 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 ""
+
+#: 06130000.xhp#hd_id3153158.15.help.text
+msgid "Assign"
+msgstr ""
+
+#: 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 ""
+
+#: 06130000.xhp#hd_id3145799.17.help.text
+msgctxt "06130000.xhp#hd_id3145799.17.help.text"
+msgid "Edit"
+msgstr "Правка"
+
+#: 06130000.xhp#par_id3147127.18.help.text
+msgid "<ahelp hid=\".\">Starts the $[officename] Basic editor and opens the selected macro for editing.</ahelp>"
+msgstr ""
+
+#: 06130000.xhp#hd_id3149400.19.help.text
+msgid "New/Delete"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 06130000.xhp#par_id3150749.21.help.text
+msgid "To delete a macro, select it, and then click <emph>Delete</emph>."
+msgstr ""
+
+#: 06130000.xhp#hd_id3153764.22.help.text
+msgid "Organizer"
+msgstr ""
+
+#: 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 ""
+
+#: 06130000.xhp#hd_id3166447.29.help.text
+msgid "Module/Dialog"
+msgstr ""
+
+#: 06130000.xhp#par_id3155959.30.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_MODULES_TREE\">Lists the existing macros and dialogs.</ahelp>"
+msgstr ""
+
+#: 06130000.xhp#par_id3149922.31.help.text
+msgid "You can drag-and-drop a module or a dialog between libraries."
+msgstr ""
+
+#: 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 ""
+
+#: 06130000.xhp#hd_id3147131.34.help.text
+msgctxt "06130000.xhp#hd_id3147131.34.help.text"
+msgid "Edit"
+msgstr "Правка"
+
+#: 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 ""
+
+#: 06130000.xhp#hd_id3151214.36.help.text
+msgctxt "06130000.xhp#hd_id3151214.36.help.text"
+msgid "New"
+msgstr ""
+
+#: 06130000.xhp#par_id3154202.37.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWMOD\">Creates a new module.</ahelp>"
+msgstr ""
+
+#: 06130000.xhp#par_id3153269.40.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWDLG\">Creates a new dialog.</ahelp>"
+msgstr ""
+
+#: 06130000.xhp#hd_id3154587.42.help.text
+msgid "Libraries tab page"
+msgstr ""
+
+#: 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 ""
+
+#: 06130000.xhp#hd_id3145259.44.help.text
+msgid "Location"
+msgstr ""
+
+#: 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 ""
+
+#: 06130000.xhp#hd_id3148460.46.help.text
+msgid "Library"
+msgstr ""
+
+#: 06130000.xhp#par_id3150828.47.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_LIBS_TREE\">Lists the macro libraries in the chosen location.</ahelp>"
+msgstr ""
+
+#: 06130000.xhp#hd_id3145134.48.help.text
+msgctxt "06130000.xhp#hd_id3145134.48.help.text"
+msgid "Edit"
+msgstr "Правка"
+
+#: 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 ""
+
+#: 06130000.xhp#hd_id3150371.50.help.text
+msgctxt "06130000.xhp#hd_id3150371.50.help.text"
+msgid "Password"
+msgstr ""
+
+#: 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 ""
+
+#: 06130000.xhp#hd_id3154372.52.help.text
+msgctxt "06130000.xhp#hd_id3154372.52.help.text"
+msgid "New"
+msgstr ""
+
+#: 06130000.xhp#par_id3145387.53.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_NEWLIB\">Creates a new library.</ahelp>"
+msgstr ""
+
+#: 06130000.xhp#hd_id3154259.56.help.text
+msgid "Name"
+msgstr ""
+
+#: 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 ""
+
+#: 06130000.xhp#hd_id3151183.54.help.text
+msgid "Append"
+msgstr ""
+
+#: 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 ""
+
+#: 06130100.xhp#tit.help.text
+msgctxt "06130100.xhp#tit.help.text"
+msgid "Change Password"
+msgstr ""
+
+#: 06130100.xhp#hd_id3159399.1.help.text
+msgctxt "06130100.xhp#hd_id3159399.1.help.text"
+msgid "Change Password"
+msgstr ""
+
+#: 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 ""
+
+#: 06130100.xhp#hd_id3154285.3.help.text
+msgid "Old password"
+msgstr ""
+
+#: 06130100.xhp#hd_id3153665.4.help.text
+msgctxt "06130100.xhp#hd_id3153665.4.help.text"
+msgid "Password"
+msgstr ""
+
+#: 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 ""
+
+#: 06130100.xhp#hd_id3153126.6.help.text
+msgid "New password"
+msgstr ""
+
+#: 06130100.xhp#hd_id3153628.7.help.text
+msgctxt "06130100.xhp#hd_id3153628.7.help.text"
+msgid "Password"
+msgstr ""
+
+#: 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 ""
+
+#: 06130100.xhp#hd_id3148947.9.help.text
+msgid "Confirm"
+msgstr ""
+
+#: 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 ""
+
+#: 06130500.xhp#tit.help.text
+msgctxt "06130500.xhp#tit.help.text"
+msgid "Append libraries"
+msgstr ""
+
+#: 06130500.xhp#bm_id3150502.help.text
+msgid "<bookmark_value>libraries; adding</bookmark_value><bookmark_value>inserting;Basic libraries</bookmark_value>"
+msgstr ""
+
+#: 06130500.xhp#hd_id3150502.1.help.text
+msgctxt "06130500.xhp#hd_id3150502.1.help.text"
+msgid "Append libraries"
+msgstr ""
+
+#: 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 ""
+
+#: 06130500.xhp#hd_id3149119.3.help.text
+msgid "File name:"
+msgstr ""
+
+#: 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 ""
+
+#: 06130500.xhp#hd_id3147291.5.help.text
+msgid "Options"
+msgstr "Параметри"
+
+#: 06130500.xhp#hd_id3147226.7.help.text
+msgid "Insert as reference (read-only)"
+msgstr ""
+
+#: 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 ""
+
+#: 06130500.xhp#hd_id3145071.9.help.text
+msgid "Replace existing libraries"
+msgstr ""
+
+#: 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 ""
diff --git a/source/uk/helpcontent2/source/text/sbasic/shared/02.po b/source/uk/helpcontent2/source/text/sbasic/shared/02.po
new file mode 100644
index 00000000000..c68b4048c68
--- /dev/null
+++ b/source/uk/helpcontent2/source/text/sbasic/shared/02.po
@@ -0,0 +1,867 @@
+#. 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: 2011-04-05 23:19+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 11080000.xhp#tit.help.text
+msgctxt "11080000.xhp#tit.help.text"
+msgid "Enable Watch"
+msgstr ""
+
+#: 11080000.xhp#hd_id3154863.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Enable Watch\">Enable Watch</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 11080000.xhp#par_id3150276.3.help.text
+msgctxt "11080000.xhp#par_id3150276.3.help.text"
+msgid "Enable Watch"
+msgstr ""
+
+#: 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 ""
+
+#: 11010000.xhp#tit.help.text
+msgid "Library"
+msgstr ""
+
+#: 11010000.xhp#hd_id3151100.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"Library\">Library</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 11010000.xhp#par_id3147654.3.help.text
+msgid "Library List Box"
+msgstr ""
+
+#: 11040000.xhp#tit.help.text
+msgctxt "11040000.xhp#tit.help.text"
+msgid "Stop"
+msgstr ""
+
+#: 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 ""
+
+#: 11040000.xhp#hd_id3154863.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11040000.xhp\" name=\"Stop\">Stop</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 11040000.xhp#par_id3150986.3.help.text
+msgctxt "11040000.xhp#par_id3150986.3.help.text"
+msgid "Stop"
+msgstr ""
+
+#: 11020000.xhp#tit.help.text
+msgctxt "11020000.xhp#tit.help.text"
+msgid "Compile"
+msgstr ""
+
+#: 11020000.xhp#hd_id3148983.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"Compile\">Compile</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 11020000.xhp#par_id3156426.help.text
+msgid "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\"><alt id=\"alt_id3147576\">Icon</alt></image>"
+msgstr ""
+
+#: 11020000.xhp#par_id3149399.3.help.text
+msgctxt "11020000.xhp#par_id3149399.3.help.text"
+msgid "Compile"
+msgstr ""
+
+#: 11150000.xhp#tit.help.text
+msgctxt "11150000.xhp#tit.help.text"
+msgid "Save Source As"
+msgstr ""
+
+#: 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 ""
+
+#: 11150000.xhp#par_id3147261.3.help.text
+msgid "<ahelp hid=\".uno:SaveBasicAs\">Saves the source code of the selected Basic macro.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 11150000.xhp#par_id3151110.2.help.text
+msgctxt "11150000.xhp#par_id3151110.2.help.text"
+msgid "Save Source As"
+msgstr ""
+
+#: 11070000.xhp#tit.help.text
+msgctxt "11070000.xhp#tit.help.text"
+msgid "Breakpoint"
+msgstr ""
+
+#: 11070000.xhp#hd_id3154863.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11070000.xhp\" name=\"Breakpoint\">Breakpoint</link>"
+msgstr ""
+
+#: 11070000.xhp#par_id3155364.2.help.text
+msgid "<ahelp hid=\".uno:ToggleBreakPoint\">Inserts a breakpoint in the program line.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 11070000.xhp#par_id3149416.3.help.text
+msgctxt "11070000.xhp#par_id3149416.3.help.text"
+msgid "Breakpoint"
+msgstr ""
+
+#: 11170000.xhp#tit.help.text
+msgctxt "11170000.xhp#tit.help.text"
+msgid "Manage Breakpoints"
+msgstr ""
+
+#: 11170000.xhp#hd_id3156183.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11170000.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
+msgstr ""
+
+#: 11170000.xhp#par_id3152363.2.help.text
+msgid "<ahelp hid=\".\">Calls a dialog to manage breakpoints.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 11170000.xhp#par_id3145383.3.help.text
+msgctxt "11170000.xhp#par_id3145383.3.help.text"
+msgid "Manage Breakpoints"
+msgstr ""
+
+#: 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 ""
+
+#: 11100000.xhp#tit.help.text
+msgctxt "11100000.xhp#tit.help.text"
+msgid "Macros"
+msgstr ""
+
+#: 11100000.xhp#hd_id3156183.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11100000.xhp\" name=\"Macros\">Macros</link>"
+msgstr ""
+
+#: 11100000.xhp#par_id3147399.2.help.text
+msgid "<ahelp visibility=\"visible\" hid=\".uno:ChooseMacro\">Opens the <emph>Macro</emph> dialog.</ahelp>"
+msgstr ""
+
+#: 11100000.xhp#par_id3148538.help.text
+msgid "<image src=\"cmd/sc_choosemacro.png\" id=\"img_id3153662\"><alt id=\"alt_id3153662\">Icon</alt></image>"
+msgstr ""
+
+#: 11100000.xhp#par_id3153542.3.help.text
+msgctxt "11100000.xhp#par_id3153542.3.help.text"
+msgid "Macros"
+msgstr ""
+
+#: 11180000.xhp#tit.help.text
+msgctxt "11180000.xhp#tit.help.text"
+msgid "Import Dialog"
+msgstr ""
+
+#: 11180000.xhp#hd_id3156183.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11180000.xhp\" name=\"Import Dialog\">Import Dialog</link>"
+msgstr ""
+
+#: 11180000.xhp#par_id3152363.2.help.text
+msgid "<ahelp hid=\".\">Calls an \"Open\" dialog to import a BASIC dialog file.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 11180000.xhp#par_id3145383.3.help.text
+msgctxt "11180000.xhp#par_id3145383.3.help.text"
+msgid "Import Dialog"
+msgstr ""
+
+#: 11190000.xhp#tit.help.text
+msgctxt "11190000.xhp#tit.help.text"
+msgid "Export Dialog"
+msgstr ""
+
+#: 11190000.xhp#hd_id3156183.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11190000.xhp\" name=\"Export Dialog\">Export Dialog</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 11190000.xhp#par_id3145383.3.help.text
+msgctxt "11190000.xhp#par_id3145383.3.help.text"
+msgid "Export Dialog"
+msgstr ""
+
+#: 11060000.xhp#tit.help.text
+msgctxt "11060000.xhp#tit.help.text"
+msgid "Procedure Step"
+msgstr ""
+
+#: 11060000.xhp#hd_id3148520.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step\">Procedure Step</link>"
+msgstr ""
+
+#: 11060000.xhp#par_id3152363.2.help.text
+msgid "<ahelp hid=\".uno:BasicStepOver\">Runs the macro and stops it after the next procedure.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 11060000.xhp#par_id3154307.3.help.text
+msgctxt "11060000.xhp#par_id3154307.3.help.text"
+msgid "Procedure Step"
+msgstr ""
+
+#: 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 ""
+
+#: 20000000.xhp#tit.help.text
+msgctxt "20000000.xhp#tit.help.text"
+msgid "Insert Controls"
+msgstr ""
+
+#: 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 ""
+
+#: 20000000.xhp#hd_id3150402.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/20000000.xhp\" name=\"Insert Controls\">Insert Controls</link>"
+msgstr ""
+
+#: 20000000.xhp#par_id3147000.2.help.text
+msgid "<ahelp hid=\".uno:ChooseControls\">Opens the <emph>Toolbox</emph> bar.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 20000000.xhp#par_id3153749.3.help.text
+msgctxt "20000000.xhp#par_id3153749.3.help.text"
+msgid "Insert Controls"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 20000000.xhp#hd_id3148473.7.help.text
+msgid "Button"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 20000000.xhp#par_id3154923.9.help.text
+msgid "If you want, you can add text or a graphic to the button."
+msgstr ""
+
+#: 20000000.xhp#hd_id3148550.10.help.text
+msgid "Image Control"
+msgstr ""
+
+#: 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 ""
+
+#: 20000000.xhp#par_id3151042.11.help.text
+msgid "<ahelp hid=\".uno:InsertImageControl\">Adds a control that displays a graphic.</ahelp>"
+msgstr ""
+
+#: 20000000.xhp#hd_id3150447.12.help.text
+msgid "Check Box"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 20000000.xhp#hd_id3150486.14.help.text
+msgid "Option Button"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 20000000.xhp#hd_id3154729.16.help.text
+msgid "Label Field"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 20000000.xhp#hd_id3149123.18.help.text
+msgid "Text Box"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 20000000.xhp#hd_id3154253.20.help.text
+msgid "List Box"
+msgstr "Список"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 20000000.xhp#hd_id3150644.22.help.text
+msgid "Combo Box"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 20000000.xhp#hd_id3154585.24.help.text
+msgid "Horizontal Scrollbar"
+msgstr ""
+
+#: 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 ""
+
+#: 20000000.xhp#par_id3153232.25.help.text
+msgid "<ahelp hid=\".uno:HScrollbar\">Adds a horizontal scrollbar to the dialog.</ahelp>"
+msgstr ""
+
+#: 20000000.xhp#hd_id3154119.26.help.text
+msgid "Vertical Scrollbar"
+msgstr ""
+
+#: 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 ""
+
+#: 20000000.xhp#par_id3155376.27.help.text
+msgid "<ahelp hid=\".uno:VScrollbar\">Adds a vertical scrollbar to the dialog.</ahelp>"
+msgstr ""
+
+#: 20000000.xhp#hd_id3150313.28.help.text
+msgid "Group Box"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 20000000.xhp#hd_id3149330.31.help.text
+msgid "Progress Bar"
+msgstr ""
+
+#: 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 ""
+
+#: 20000000.xhp#par_id3157979.32.help.text
+msgid "<ahelp hid=\".uno:ProgressBar\">Adds a progress bar to the dialog.</ahelp>"
+msgstr ""
+
+#: 20000000.xhp#hd_id3145654.33.help.text
+msgid "Horizontal Line"
+msgstr ""
+
+#: 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 ""
+
+#: 20000000.xhp#par_id3151000.34.help.text
+msgid "<ahelp hid=\".uno:HFixedLine\">Adds a horizontal line to the dialog.</ahelp>"
+msgstr ""
+
+#: 20000000.xhp#hd_id3155095.35.help.text
+msgid "Vertical Line"
+msgstr ""
+
+#: 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 ""
+
+#: 20000000.xhp#par_id3159203.36.help.text
+msgid "<ahelp hid=\".uno:VFixedLine\">Adds a vertical line to the dialog.</ahelp>"
+msgstr ""
+
+#: 20000000.xhp#hd_id3154540.37.help.text
+msgid "Date Field"
+msgstr ""
+
+#: 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 ""
+
+#: 20000000.xhp#par_id3154214.38.help.text
+msgid "<ahelp hid=\".uno:AddDateField\">Adds a date field.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 20000000.xhp#hd_id3151126.40.help.text
+msgid "Time Field"
+msgstr ""
+
+#: 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 ""
+
+#: 20000000.xhp#par_id3151191.41.help.text
+msgid "<ahelp hid=\"SID_INSERT_TIMEFIELD\">Adds a time field.</ahelp>"
+msgstr ""
+
+#: 20000000.xhp#hd_id3154733.42.help.text
+msgid "Numeric Field"
+msgstr ""
+
+#: 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 ""
+
+#: 20000000.xhp#par_id3147244.43.help.text
+msgid "<ahelp hid=\".uno:InsertNumericField\">Adds a numeric field.</ahelp>"
+msgstr ""
+
+#: 20000000.xhp#hd_id3149870.44.help.text
+msgid "Currency Field"
+msgstr ""
+
+#: 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 ""
+
+#: 20000000.xhp#par_id3154064.45.help.text
+msgid "<ahelp hid=\".uno:InsertCurrencyField\">Adds a currency field.</ahelp>"
+msgstr ""
+
+#: 20000000.xhp#hd_id3150117.46.help.text
+msgid "Formatted Field"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 20000000.xhp#hd_id3156160.48.help.text
+msgid "Pattern Field"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 20000000.xhp#hd_id3146815.50.help.text
+msgid "File Selection"
+msgstr ""
+
+#: 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 ""
+
+#: 20000000.xhp#par_id3145632.51.help.text
+msgid "<ahelp hid=\".uno:InsertFileControl\">Adds a button that opens a file selection dialog.</ahelp>"
+msgstr ""
+
+#: 20000000.xhp#hd_id3155912.52.help.text
+#, fuzzy
+msgid "Select"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вибрати\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\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 ""
+
+#: 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 ""
+
+#: 20000000.xhp#hd_id3154055.54.help.text
+msgid "Properties"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 20000000.xhp#hd_id3153746.56.help.text
+msgid "Activate Test Mode"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 20000000.xhp#hd_id2954191.help.text
+msgid "Manage Language"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 20000000.xhp#hd_id11902.help.text
+msgid "Tree Control"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 11050000.xhp#tit.help.text
+msgctxt "11050000.xhp#tit.help.text"
+msgid "Single Step"
+msgstr ""
+
+#: 11050000.xhp#hd_id3155934.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link>"
+msgstr ""
+
+#: 11050000.xhp#par_id3146117.2.help.text
+msgid "<ahelp hid=\".uno:BasicStepInto\">Runs the macro and stops it after the next command.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 11050000.xhp#par_id3147573.3.help.text
+msgctxt "11050000.xhp#par_id3147573.3.help.text"
+msgid "Single Step"
+msgstr ""
+
+#: 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 ""
+
+#: 11090000.xhp#tit.help.text
+msgctxt "11090000.xhp#tit.help.text"
+msgid "Object Catalog"
+msgstr ""
+
+#: 11090000.xhp#hd_id3153255.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11090000.xhp\" name=\"Object Catalog\">Object Catalog</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 11090000.xhp#par_id3154515.3.help.text
+msgctxt "11090000.xhp#par_id3154515.3.help.text"
+msgid "Object Catalog"
+msgstr ""
+
+#: 11090000.xhp#hd_id3155388.4.help.text
+msgctxt "11090000.xhp#hd_id3155388.4.help.text"
+msgid "Show"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 11090000.xhp#par_id3147560.6.help.text
+msgctxt "11090000.xhp#par_id3147560.6.help.text"
+msgid "Show"
+msgstr ""
+
+#: 11090000.xhp#hd_id3146794.13.help.text
+msgid "Window Area"
+msgstr ""
+
+#: 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 ""
+
+#: 11120000.xhp#tit.help.text
+msgctxt "11120000.xhp#tit.help.text"
+msgid "Find Parentheses"
+msgstr ""
+
+#: 11120000.xhp#hd_id3149497.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11120000.xhp\" name=\"Find Parentheses\">Find Parentheses</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 11120000.xhp#par_id3149182.help.text
+msgid "<image src=\"cmd/sc_matchgroup.png\" id=\"img_id3155892\"><alt id=\"alt_id3155892\">Icon</alt></image>"
+msgstr ""
+
+#: 11120000.xhp#par_id3147276.3.help.text
+msgctxt "11120000.xhp#par_id3147276.3.help.text"
+msgid "Find Parentheses"
+msgstr ""
+
+#: 11110000.xhp#tit.help.text
+msgctxt "11110000.xhp#tit.help.text"
+msgid "Modules"
+msgstr ""
+
+#: 11110000.xhp#hd_id3148520.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"Modules\">Modules</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 11110000.xhp#par_id3157958.help.text
+msgid "<image src=\"cmd/sc_moduledialog.png\" id=\"img_id3155535\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgstr ""
+
+#: 11110000.xhp#par_id3145383.3.help.text
+msgctxt "11110000.xhp#par_id3145383.3.help.text"
+msgid "Modules"
+msgstr ""
+
+#: 11160000.xhp#tit.help.text
+msgctxt "11160000.xhp#tit.help.text"
+msgid "Step Out"
+msgstr ""
+
+#: 11160000.xhp#hd_id3148983.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11160000.xhp\" name=\"Step Out\">Step Out</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 11160000.xhp#par_id3156410.help.text
+msgid "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\"><alt id=\"alt_id3159233\">Icon</alt></image>"
+msgstr ""
+
+#: 11160000.xhp#par_id3158421.3.help.text
+msgctxt "11160000.xhp#par_id3158421.3.help.text"
+msgid "Step Out"
+msgstr ""
+
+#: 11030000.xhp#tit.help.text
+msgctxt "11030000.xhp#tit.help.text"
+msgid "Run"
+msgstr ""
+
+#: 11030000.xhp#hd_id3153255.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">Run</link>"
+msgstr ""
+
+#: 11030000.xhp#par_id3159201.2.help.text
+msgid "<ahelp hid=\".uno:RunBasic\">Runs the first macro of the current module.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 11030000.xhp#par_id3154750.3.help.text
+msgctxt "11030000.xhp#par_id3154750.3.help.text"
+msgid "Run"
+msgstr ""
+
+#: 11140000.xhp#tit.help.text
+msgid "Insert Source Text"
+msgstr ""
+
+#: 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 ""
+
+#: 11140000.xhp#par_id3150702.2.help.text
+msgid "<ahelp hid=\".uno:LoadBasic\">Opens the Basic source text in the Basic IDE window.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 11140000.xhp#par_id3145346.4.help.text
+msgid "Insert source text"
+msgstr ""
diff --git a/source/uk/helpcontent2/source/text/scalc.po b/source/uk/helpcontent2/source/text/scalc.po
new file mode 100644
index 00000000000..13cfe23fdc8
--- /dev/null
+++ b/source/uk/helpcontent2/source/text/scalc.po
@@ -0,0 +1,1189 @@
+#. 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: 2011-11-01 00:48+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: main0112.xhp#tit.help.text
+msgid "Data"
+msgstr ""
+
+#: main0112.xhp#hd_id3153254.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/main0112.xhp\" name=\"Data\">Data</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Масштаб </link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</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 ""
+
+#: main0112.xhp#hd_id3150400.3.help.text
+msgid "<link href=\"text/scalc/01/12010000.xhp\" name=\"Define Range\">Define Range</link>"
+msgstr ""
+
+#: main0112.xhp#hd_id3125863.4.help.text
+msgid "<link href=\"text/scalc/01/12020000.xhp\" name=\"Select Range\">Select Range</link>"
+msgstr ""
+
+#: main0112.xhp#hd_id3153726.5.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12030000.xhp\" name=\"Sort\">Sort</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Масштаб </link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>"
+
+#: main0112.xhp#hd_id3153142.6.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12050000.xhp\" name=\"Subtotals\">Subtotals</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Масштаб </link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>"
+
+#: main0112.xhp#hd_id3151073.10.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Validity\">Validity</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Масштаб </link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>"
+
+#: main0112.xhp#hd_id3145254.7.help.text
+msgid "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple Operations\">Multiple Operations</link>"
+msgstr ""
+
+#: main0112.xhp#hd_id1387066.help.text
+msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
+msgstr ""
+
+#: main0112.xhp#hd_id3150717.8.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12070000.xhp\" name=\"Consolidate\">Consolidate</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Масштаб </link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>"
+
+#: main0112.xhp#hd_id3154754.9.help.text
+msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
+msgstr ""
+
+#: main0101.xhp#tit.help.text
+msgid "File"
+msgstr "Файл"
+
+#: main0101.xhp#hd_id3156023.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/main0101.xhp\" name=\"File\">File</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Зберегти як</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Зберегти як\">Зберегти як</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Зберегти як\">Зберегти як</link>"
+
+#: main0101.xhp#par_id3151112.2.help.text
+#, fuzzy
+msgid "<ahelp hid=\".\">These commands apply to the current document, open a new document, or close the application.</ahelp>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<ahelp hid=\".\">Ці команди застосовуються до поточного документа, відкривають новий документ, або закривають застосунок.</ahelp>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<ahelp hid=\".\">Ці команди відносяться до поточного документа, відкриття нового документа або закриття додатку.</ahelp>"
+
+#: main0101.xhp#hd_id3154684.4.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Відкрити</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01020000.xhp\" name=\"Відкрити\">Відкрити</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01020000.xhp\" name=\"Відкрити\">Відкрити</link>"
+
+#: main0101.xhp#hd_id3147434.5.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Зберегти як</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Зберегти як\">Зберегти як</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Зберегти як\">Зберегти як</link>"
+
+#: main0101.xhp#hd_id3147396.11.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Версії</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01190000.xhp\" name=\"Версії\">Версії</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01190000.xhp\" name=\"Версії\">Версії</link>"
+
+#: main0101.xhp#hd_id3149400.7.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Властивості</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01100000.xhp\" name=\"Властивості\">Властивості</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01100000.xhp\" name=\"Властивості\">Властивості</link>"
+
+#: main0101.xhp#hd_id3155445.9.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Друк</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01130000.xhp\" name=\"Друк\">Друк</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01130000.xhp\" name=\"Друк\">Друк</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=\"Налаштування принтера\">Налаштування принтера</link>"
+
+#: main0206.xhp#tit.help.text
+msgid "Formula Bar"
+msgstr "Панель формул"
+
+#: main0206.xhp#hd_id3147264.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/main0206.xhp\" name=\"Formula Bar\">Formula Bar</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Масштаб </link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>"
+
+#: main0206.xhp#par_id3150400.2.help.text
+msgid "<ahelp hid=\"HID_SC_INPUTWIN\">Use this bar to enter formulas.</ahelp>"
+msgstr ""
+
+#: main0104.xhp#tit.help.text
+#, fuzzy
+msgid "Insert"
+msgstr ""
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вставка\n"
+"#-#-#-#-# 04.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Insert"
+
+#: main0104.xhp#hd_id3157909.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/main0104.xhp\" name=\"Insert\">Insert</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Зберегти як</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Зберегти як\">Зберегти як</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Зберегти як\">Зберегти як</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 ""
+
+#: main0104.xhp#hd_id3150769.3.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Cells\">Cells</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Зв'язки</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/02180000.xhp\" name=\"Зв'язки\">Зв'язки</link>"
+
+#: main0104.xhp#hd_id3149260.4.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04050000.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Note\">Примітка</link>"
+
+#: main0104.xhp#hd_id3153726.7.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Спеціальний символ</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/04100000.xhp\" name=\"Спеціальні символи\">Спеціальні символи</link>\n"
+"#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/04100000.xhp\" name=\"Спеціальні символи\">Спеціальні символи</link>"
+
+#: main0104.xhp#hd_id3156285.13.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Відкрити</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01020000.xhp\" name=\"Відкрити\">Відкрити</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01020000.xhp\" name=\"Відкрити\">Відкрити</link>"
+
+#: main0104.xhp#hd_id3154492.5.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"Function\">Function</link>"
+msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Note\">Примітка</link>"
+
+#: main0104.xhp#hd_id3154511.12.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04080000.xhp\" name=\"Function List\">Function List</link>"
+msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Note\">Примітка</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=\"Note\">Примітка</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=\"Діаграма\">Діаграма</link>"
+
+#: main0104.xhp#par_id0302200904002496.help.text
+msgid "Inserts a chart."
+msgstr ""
+
+#: main0104.xhp#hd_id3147003.10.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Плаваюча рамка</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/04160500.xhp\" name=\"Незалежна рамка\">Незалежна рамка</link>\n"
+"#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/04160500.xhp\" name=\"Плаваюча рамка\">Плаваюча рамка</link>"
+
+#: main0214.xhp#tit.help.text
+#, fuzzy
+msgid "Picture Bar"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Панель зображення\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Панель \"Зображення\""
+
+#: main0214.xhp#hd_id3153088.1.help.text
+msgid "<link href=\"text/scalc/main0214.xhp\" name=\"Picture Bar\">Picture Bar</link>"
+msgstr ""
+
+#: 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 ""
+
+#: main0203.xhp#tit.help.text
+msgid "Drawing Object Properties Bar"
+msgstr "Панель властивостей графічного об'єкту"
+
+#: 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 ""
+
+#: 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 ""
+
+#: main0203.xhp#hd_id3145748.3.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Стиль лінії</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/05200100.xhp\" name=\"Стиль лінії\">Стиль лінії</link>"
+
+#: main0203.xhp#hd_id3151073.4.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Товщина лінії</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/05200100.xhp\" name=\"Товщина лінії\">Товщина лінії</link>"
+
+#: main0203.xhp#hd_id3153417.5.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Колір лінії</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/05200100.xhp\" name=\"Колір лінії\">Колір лінії</link>"
+
+#: main0203.xhp#hd_id3147338.6.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background Color\">Background Color</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Колір лінії</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/05200100.xhp\" name=\"Колір лінії\">Колір лінії</link>"
+
+#: main0210.xhp#tit.help.text
+msgid "Page Preview Bar"
+msgstr ""
+
+#: main0210.xhp#hd_id3156023.1.help.text
+msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Page Preview Bar\">Page Preview Bar</link>"
+msgstr ""
+
+#: 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 ""
+
+#: main0210.xhp#hd_id3147393.3.help.text
+msgid "Full Screen"
+msgstr ""
+
+#: 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 ""
+
+#: main0210.xhp#hd_id3147394.3.help.text
+msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format Page\">Format Page</link>"
+msgstr ""
+
+#: main0210.xhp#hd_id3147494.3.help.text
+msgid "Margins"
+msgstr ""
+
+#: 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 ""
+
+#: main0210.xhp#hd_id3245494.3.help.text
+msgid "Scaling Factor"
+msgstr ""
+
+#: 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 ""
+
+#: main0210.xhp#hd_id3147395.3.help.text
+msgid "Close Preview"
+msgstr ""
+
+#: main0210.xhp#par_id460829.help.text
+msgid "To exit the page preview, click the <emph>Close Preview</emph> button."
+msgstr ""
+
+#: main0000.xhp#tit.help.text
+msgctxt "main0000.xhp#tit.help.text"
+msgid "Welcome to the $[officename] Calc Help"
+msgstr ""
+
+#: main0000.xhp#hd_id3147338.1.help.text
+msgctxt "main0000.xhp#hd_id3147338.1.help.text"
+msgid "Welcome to the $[officename] Calc Help"
+msgstr ""
+
+#: main0000.xhp#hd_id3153965.3.help.text
+msgid "How to Work With $[officename] Calc"
+msgstr ""
+
+#: 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 ""
+
+#: main0000.xhp#hd_id3154659.6.help.text
+msgid "$[officename] Calc Menus, Toolbars, and Keys"
+msgstr "Меню, панелі інструментів і клавіші $[officename] Calc"
+
+#: main0000.xhp#hd_id3150883.4.help.text
+#, fuzzy
+msgid "Help about the Help"
+msgstr ""
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Довідка про довідку\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Довідка про цю Довідку"
+
+#: main0103.xhp#tit.help.text
+msgid "View"
+msgstr "Вигляд"
+
+#: main0103.xhp#hd_id3151112.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/main0103.xhp\" name=\"View\">View</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Зберегти як</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Зберегти як\">Зберегти як</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Зберегти як\">Зберегти як</link>"
+
+#: main0103.xhp#par_id3149456.2.help.text
+#, fuzzy
+msgid "<ahelp hid=\".\">This menu contains commands for controlling the on-screen display of the document.</ahelp>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<ahelp hid=\".\">Це меню містить команди для керування відображенням документу на екрані.</ahelp>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<ahelp hid=\".\">У цьому меню містяться команди, призначені для управління відображенням документа на екрані.</ahelp>"
+
+#: main0103.xhp#par_idN105AB.help.text
+msgid "Normal"
+msgstr ""
+
+#: main0103.xhp#par_idN105AF.help.text
+msgid "<ahelp hid=\".\">Displays the normal view of the sheet.</ahelp>"
+msgstr ""
+
+#: main0103.xhp#hd_id3125863.3.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Масштаб </link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>"
+
+#: main0100.xhp#tit.help.text
+msgid "Menus"
+msgstr "Меню"
+
+#: 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=\"Меню\">Меню</link></variable>"
+
+#: main0100.xhp#par_id3154760.2.help.text
+msgid "The following menu commands are available for spreadsheets."
+msgstr ""
+
+#: main0205.xhp#tit.help.text
+msgid "Text Formatting Bar"
+msgstr "Панель \"Форматування тексту\""
+
+#: main0205.xhp#hd_id3156330.1.help.text
+msgid "<link href=\"text/scalc/main0205.xhp\" name=\"Text Formatting Bar\">Text Formatting Bar</link>"
+msgstr ""
+
+#: 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 ""
+
+#: main0205.xhp#hd_id3148575.7.help.text
+#, fuzzy
+msgctxt "main0205.xhp#hd_id3148575.7.help.text"
+msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Колір лінії</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/05200100.xhp\" name=\"Колір лінії\">Колір лінії</link>"
+
+#: main0205.xhp#hd_id3154944.8.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1\">Line Spacing: 1</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Стиль лінії</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/05200100.xhp\" name=\"Стиль лінії\">Стиль лінії</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 ""
+
+#: main0205.xhp#hd_id3153711.10.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 2\">Line Spacing: 2</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Стиль лінії</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/05200100.xhp\" name=\"Стиль лінії\">Стиль лінії</link>"
+
+#: main0205.xhp#hd_id3147345.11.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Left\">Align Left</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Друк</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01130000.xhp\" name=\"Друк\">Друк</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01130000.xhp\" name=\"Друк\">Друк</link>"
+
+#: main0205.xhp#hd_id3155337.12.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Centered\">Centered</link>"
+msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Note\">Примітка</link>"
+
+#: main0205.xhp#hd_id3147001.13.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Right\">Align Right</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Друк</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01130000.xhp\" name=\"Друк\">Друк</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01130000.xhp\" name=\"Друк\">Друк</link>"
+
+#: main0205.xhp#hd_id3155115.14.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Justify\">Justify</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Друк</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01130000.xhp\" name=\"Друк\">Друк</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01130000.xhp\" name=\"Друк\">Друк</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=\"Верхній індекс\">Верхній індекс</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\">Нижній індекс</link>"
+
+#: main0205.xhp#hd_id3145387.17.help.text
+#, fuzzy
+msgctxt "main0205.xhp#hd_id3145387.17.help.text"
+msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Спеціальний символ</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/04100000.xhp\" name=\"Спеціальні символи\">Спеціальні символи</link>\n"
+"#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/04100000.xhp\" name=\"Спеціальні символи\">Спеціальні символи</link>"
+
+#: main0205.xhp#hd_id3153067.18.help.text
+#, fuzzy
+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/02220000.xhp\" name=\"Сенсорне зображення\">Сенсорне зображення</link>"
+
+#: main0200.xhp#tit.help.text
+msgid "Toolbars"
+msgstr "Панелі інструментів"
+
+#: main0200.xhp#hd_id3154758.1.help.text
+#, fuzzy
+msgid "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
+msgstr "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"Меню\">Меню</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 ""
+
+#: main0503.xhp#tit.help.text
+msgid "$[officename] Calc Features"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: main0503.xhp#hd_id3148797.4.help.text
+msgid "Calculations"
+msgstr "Обчислення"
+
+#: 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 ""
+
+#: 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 ""
+
+#: main0503.xhp#hd_id3152596.13.help.text
+msgid "What-If Calculations"
+msgstr ""
+
+#: 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 ""
+
+#: main0503.xhp#hd_id3148576.7.help.text
+msgid "Database Functions"
+msgstr ""
+
+#: main0503.xhp#par_id3154011.8.help.text
+msgid "Use spreadsheets to arrange, store, and filter your data."
+msgstr ""
+
+#: 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 ""
+
+#: main0503.xhp#hd_id3145800.9.help.text
+msgid "Arranging Data"
+msgstr ""
+
+#: 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 ""
+
+#: main0503.xhp#hd_id3155601.16.help.text
+msgid "Dynamic Charts"
+msgstr ""
+
+#: 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 ""
+
+#: main0503.xhp#hd_id3153707.18.help.text
+msgid "Opening and Saving Microsoft Files"
+msgstr ""
+
+#: 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 ""
+
+#: main0105.xhp#tit.help.text
+msgid "Format"
+msgstr "Формат"
+
+#: main0105.xhp#hd_id3149669.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/main0105.xhp\" name=\"Format\">Format</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Масштаб </link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</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 ""
+
+#: main0105.xhp#hd_id3154732.4.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Cells\">Cells</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Зв'язки</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/02180000.xhp\" name=\"Зв'язки\">Зв'язки</link>"
+
+#: main0105.xhp#hd_id3155087.9.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Page\">Page</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Зберегти як</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Зберегти як\">Зберегти як</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Зберегти як\">Зберегти як</link>"
+
+#: main0105.xhp#hd_id3145748.12.help.text
+#, fuzzy
+msgctxt "main0105.xhp#hd_id3145748.12.help.text"
+msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Спеціальний символ</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/04100000.xhp\" name=\"Спеціальні символи\">Спеціальні символи</link>\n"
+"#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/04100000.xhp\" name=\"Спеціальні символи\">Спеціальні символи</link>"
+
+#: main0105.xhp#hd_id3154485.13.help.text
+#, fuzzy
+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/02220000.xhp\" name=\"Сенсорне зображення\">Сенсорне зображення</link>"
+
+#: main0105.xhp#hd_id3157980.11.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Зберегти як</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Зберегти як\">Зберегти як</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Зберегти як\">Зберегти як</link>"
+
+#: main0105.xhp#hd_id3159206.14.help.text
+msgid "<link href=\"text/scalc/01/05120000.xhp\" name=\"Conditional Formatting\">Conditional Formatting</link>"
+msgstr ""
+
+#: main0105.xhp#hd_id3154703.17.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/02/01170100.xhp\" name=\"Control\">Control</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Масштаб </link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>"
+
+#: main0105.xhp#hd_id3147005.16.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/02/01170200.xhp\" name=\"Form\">Form</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Масштаб </link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>"
+
+#: main0102.xhp#tit.help.text
+#, fuzzy
+msgid "Edit"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Правка\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Правка\n"
+"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Редагування\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Правка"
+
+#: main0102.xhp#hd_id3156023.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/main0102.xhp\" name=\"Edit\">Edit</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Масштаб </link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>"
+
+#: main0102.xhp#par_id3154758.2.help.text
+#, fuzzy
+msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<ahelp hid=\".\">Це меню містить команди для редагування вмісту поточного документа.</ahelp>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<ahelp hid=\".\">У цьому меню містяться команди, що використовуються для редагування вмісту поточного документа.</ahelp>"
+
+#: main0102.xhp#hd_id3146119.3.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Спеціальна вставка</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/02070000.xhp\" name=\"Спеціальна вставка\">Спеціальна вставка</link>\n"
+"#-#-#-#-# guide.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/02070000.xhp\" name=\"Спеціальна вставка\">Спеціальна вставка</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\">Порівняти документ</link>"
+
+#: main0102.xhp#hd_id3154492.4.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Знайти і замінити</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/02100000.xhp\" name=\"Знайти і замінити\">Знайти і замінити</link>"
+
+#: main0102.xhp#hd_id3150715.5.help.text
+msgid "<link href=\"text/scalc/01/02120000.xhp\" name=\"Headers & Footers\">Headers & Footers</link>"
+msgstr ""
+
+#: main0102.xhp#hd_id3149018.6.help.text
+msgid "<link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Delete Contents</link>"
+msgstr ""
+
+#: main0102.xhp#hd_id3156384.7.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/02160000.xhp\" name=\"Delete Cells\">Delete Cells</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Зв'язки</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/02180000.xhp\" name=\"Зв'язки\">Зв'язки</link>"
+
+#: main0102.xhp#hd_id3146919.10.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Зв'язки</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/02180000.xhp\" name=\"Зв'язки\">Зв'язки</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=\"Сенсорне зображення\">Сенсорне зображення</link>"
+
+#: main0208.xhp#tit.help.text
+msgid "Status Bar"
+msgstr "Рядок стану"
+
+#: main0208.xhp#hd_id3151385.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status Bar\">Status Bar</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Зв'язки</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/02180000.xhp\" name=\"Зв'язки\">Зв'язки</link>"
+
+#: main0208.xhp#par_id3149669.2.help.text
+msgid "The <emph>Status Bar</emph> displays information about the current sheet."
+msgstr ""
+
+#: main0208.xhp#hd_id0821200911024321.help.text
+msgid "Digital Signature"
+msgstr ""
+
+#: main0208.xhp#par_id0821200911024344.help.text
+msgid "See also <link href=\"text/shared/guide/digital_signatures.xhp\">Digital Signatures</link>."
+msgstr ""
+
+#: main0106.xhp#tit.help.text
+msgid "Tools"
+msgstr "Сервіс"
+
+#: main0106.xhp#hd_id3150769.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/main0106.xhp\" name=\"Tools\">Tools</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Зв'язки</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/02180000.xhp\" name=\"Зв'язки\">Зв'язки</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 ""
+
+#: 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 ""
+
+#: main0106.xhp#hd_id3149122.12.help.text
+#, fuzzy
+msgctxt "main0106.xhp#hd_id3149122.12.help.text"
+msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Зберегти як</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Зберегти як\">Зберегти як</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Зберегти як\">Зберегти як</link>"
+
+#: main0106.xhp#hd_id3155768.6.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Scenarios\">Scenarios</link>"
+msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Note\">Примітка</link>"
+
+#: main0106.xhp#hd_id3154015.9.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">Автовиправлення</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/06040000.xhp\" name=\"Автозаміна\">Автозаміна</link>"
+
+#: main0106.xhp#hd_id3150086.8.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/06140000.xhp\" name=\"Налаштування\">Налаштування</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/06140000.xhp\" name=\"Настроювання\">Настроювання</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/06140000.xhp\" name=\"Налаштування\">Налаштування</link>"
+
+#: main0218.xhp#tit.help.text
+msgid "Tools Bar"
+msgstr "Панель інструментів"
+
+#: main0218.xhp#hd_id3143268.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/main0218.xhp\" name=\"Tools Bar\">Tools Bar</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Зв'язки</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/02180000.xhp\" name=\"Зв'язки\">Зв'язки</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 ""
+
+#: main0218.xhp#par_idN10610.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Controls\">Controls</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Зв'язки</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/02180000.xhp\" name=\"Зв'язки\">Зв'язки</link>"
+
+#: main0218.xhp#hd_id3154730.6.help.text
+msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Choose Themes\">Choose Themes</link>"
+msgstr ""
+
+#: main0218.xhp#par_idN10690.help.text
+msgid "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced Filter\">Advanced Filter</link>"
+msgstr ""
+
+#: main0218.xhp#par_idN106A8.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12090100.xhp\">Start</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Масштаб </link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>"
+
+#: main0218.xhp#par_idN106C0.help.text
+msgid "<link href=\"text/shared/autopi/01150000.xhp\" name=\"Euro Converter\">Euro Converter</link>"
+msgstr ""
+
+#: main0218.xhp#par_idN106D8.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04070100.xhp\">Define</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Масштаб </link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>"
+
+#: main0218.xhp#par_idN106F0.help.text
+#, fuzzy
+msgctxt "main0218.xhp#par_idN106F0.help.text"
+msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Зберегти як</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Зберегти як\">Зберегти як</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Зберегти як\">Зберегти як</link>"
+
+#: main0202.xhp#tit.help.text
+msgid "Formatting Bar"
+msgstr "Панель форматування"
+
+#: main0202.xhp#hd_id3150448.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/main0202.xhp\" name=\"Formatting Bar\">Formatting Bar</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Масштаб </link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/03010000.xhp\" name=\"Масштаб\">Масштаб</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 ""
+
+#: main0202.xhp#hd_id3153160.8.help.text
+#, fuzzy
+msgctxt "main0202.xhp#hd_id3153160.8.help.text"
+msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Колір лінії</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/05200100.xhp\" name=\"Колір лінії\">Колір лінії</link>"
+
+#: main0202.xhp#hd_id3150715.9.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Left\">Align Left</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Друк</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01130000.xhp\" name=\"Друк\">Друк</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01130000.xhp\" name=\"Друк\">Друк</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 ""
+
+#: main0202.xhp#hd_id3150042.11.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Right\">Align Right</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Товщина лінії</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/05200100.xhp\" name=\"Товщина лінії\">Товщина лінії</link>"
+
+#: main0202.xhp#hd_id3154703.12.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Justify\">Justify</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Друк</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01130000.xhp\" name=\"Друк\">Друк</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01130000.xhp\" name=\"Друк\">Друк</link>"
+
+#: main0202.xhp#hd_id3152986.13.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Top\">Align Top</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Друк</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01130000.xhp\" name=\"Друк\">Друк</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01130000.xhp\" name=\"Друк\">Друк</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 ""
+
+#: main0202.xhp#hd_id3151240.15.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Bottom\">Align Bottom</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Колір лінії</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/05200100.xhp\" name=\"Колір лінії\">Колір лінії</link>"
+
+#: main0202.xhp#par_idN10843.help.text
+msgid "Number Format : Date"
+msgstr ""
+
+#: main0202.xhp#par_idN10847.help.text
+msgid "<ahelp hid=\".\">Applies the date format to the selected cells.</ahelp>"
+msgstr ""
+
+#: main0202.xhp#par_idN1085E.help.text
+msgid "Number Format: Exponential"
+msgstr ""
+
+#: main0202.xhp#par_idN10862.help.text
+msgid "<ahelp hid=\".\">Applies the exponential format to the selected cells.</ahelp>"
+msgstr ""
+
+#: main0202.xhp#par_idN10871.help.text
+msgid "Additional icons"
+msgstr "Додаткові іконки"
+
+#: 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 "Якщо увімкнена підтримка <link href=\"text/shared/00/00000005.xhp#ctl\" name=\"CTL\">Складної системи писемності</link>, видимі дві додаткові іконки."
+
+#: main0202.xhp#par_idN1088E.help.text
+msgid "Left-To-Right"
+msgstr "Зліва направо"
+
+#: 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 ""
+
+#: 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\">Текст вводиться зліва направо.</ahelp>"
+
+#: main0202.xhp#par_idN108D1.help.text
+msgid "Right-To-Left"
+msgstr "Справа наліво"
+
+#: 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 ""
+
+#: 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\">Текст, що форматується для мови зі складною системою писемності, вводиться справа наліво.</ahelp>"
+
+#: main0202.xhp#par_id192266.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the left.</ahelp>"
+msgstr ""
+
+#: main0202.xhp#par_id1998962.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the right.</ahelp>"
+msgstr ""
+
+#: main0202.xhp#par_id2376476.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Horizontally centers the contents of the cell.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: main0107.xhp#tit.help.text
+msgid "Window"
+msgstr "Вікно"
+
+#: main0107.xhp#hd_id3154758.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/main0107.xhp\" name=\"Window\">Window</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Зберегти як</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Зберегти як\">Зберегти як</link>\n"
+"#-#-#-#-# smath.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/01070000.xhp\" name=\"Зберегти як\">Зберегти як</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\">Містить команди для управління вікнами документів і їх відображення.</ahelp>"
diff --git a/source/uk/helpcontent2/source/text/scalc/00.po b/source/uk/helpcontent2/source/text/scalc/00.po
new file mode 100644
index 00000000000..6b836770aab
--- /dev/null
+++ b/source/uk/helpcontent2/source/text/scalc/00.po
@@ -0,0 +1,883 @@
+#. 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: 2011-11-26 04:17+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 00000407.xhp#tit.help.text
+msgctxt "00000407.xhp#tit.help.text"
+msgid "Window Menu"
+msgstr ""
+
+#: 00000407.xhp#hd_id3155628.1.help.text
+msgctxt "00000407.xhp#hd_id3155628.1.help.text"
+msgid "Window Menu"
+msgstr ""
+
+#: 00000407.xhp#par_id3147335.2.help.text
+#, fuzzy
+msgid "<variable id=\"fete\">Choose <emph>Window - Split</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000407.xhp#par_id3153663.3.help.text
+#, fuzzy
+msgid "<variable id=\"fefix\">Choose <emph>Window - Freeze</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000402.xhp#tit.help.text
+msgctxt "00000402.xhp#tit.help.text"
+msgid "Edit Menu"
+msgstr "Меню \"Редагування\""
+
+#: 00000402.xhp#hd_id3147303.1.help.text
+msgctxt "00000402.xhp#hd_id3147303.1.help.text"
+msgid "Edit Menu"
+msgstr "Меню \"Редагування\""
+
+#: 00000402.xhp#par_id3155555.2.help.text
+msgid "<variable id=\"kopffuss\">Choose <emph>Edit - Headers & Footers</emph></variable>"
+msgstr ""
+
+#: 00000402.xhp#par_id3159233.3.help.text
+msgid "<variable id=\"bkopfzeile\">Choose <emph>Edit - Headers & Footers - Header/Footer</emph> tabs</variable>"
+msgstr ""
+
+#: 00000402.xhp#par_id3150443.4.help.text
+#, fuzzy
+msgid "<variable id=\"bausfullen\">Choose <emph>Edit - Fill</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000402.xhp#par_id3143267.5.help.text
+#, fuzzy
+msgid "<variable id=\"bausunten\">Choose <emph>Edit - Fill - Down</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000402.xhp#par_id3153880.6.help.text
+msgid "<variable id=\"bausrechts\">Choose <emph>Edit - Fill - Right</emph></variable>"
+msgstr ""
+
+#: 00000402.xhp#par_id3151245.7.help.text
+#, fuzzy
+msgid "<variable id=\"bausoben\">Choose <emph>Edit - Fill - Up</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000402.xhp#par_id3145068.8.help.text
+#, fuzzy
+msgid "<variable id=\"bauslinks\">Choose <emph>Edit - Fill - Left</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000402.xhp#par_id3150400.9.help.text
+#, fuzzy
+msgid "<variable id=\"baustab\">Choose <emph>Edit - Fill - Sheet</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000402.xhp#par_id3154910.10.help.text
+msgid "<variable id=\"bausreihe\">Choose <emph>Edit - Fill - Series</emph></variable>"
+msgstr ""
+
+#: 00000402.xhp#par_id3154123.11.help.text
+msgid "Choose <emph>Edit - Delete Contents</emph>"
+msgstr ""
+
+#: 00000402.xhp#par_id3145785.20.help.text
+msgid "Backspace"
+msgstr ""
+
+#: 00000402.xhp#par_id3150011.12.help.text
+#, fuzzy
+msgid "<variable id=\"bzelo\">Choose <emph>Edit - Delete Cells</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000402.xhp#par_id3153951.13.help.text
+msgid "Choose <emph>Edit – Sheet - Delete</emph>"
+msgstr ""
+
+#: 00000402.xhp#par_id3155306.18.help.text
+msgctxt "00000402.xhp#par_id3155306.18.help.text"
+msgid "Open context menu for a sheet tab"
+msgstr ""
+
+#: 00000402.xhp#par_id3146119.14.help.text
+msgid "Choose <emph>Edit – Sheets – Move/Copy</emph>"
+msgstr ""
+
+#: 00000402.xhp#par_id3148645.19.help.text
+msgctxt "00000402.xhp#par_id3148645.19.help.text"
+msgid "Open context menu for a sheet tab"
+msgstr ""
+
+#: 00000402.xhp#par_id3153093.15.help.text
+msgid "<variable id=\"bmaumloe\">Choose <emph>Edit - Delete Manual Break</emph></variable>"
+msgstr ""
+
+#: 00000402.xhp#par_id3153191.16.help.text
+msgid "<variable id=\"bzeilum\">Choose <emph>Edit - Delete Manual Break - Row Break</emph></variable>"
+msgstr ""
+
+#: 00000402.xhp#par_id3145645.17.help.text
+msgid "<variable id=\"bspaum\">Choose <emph>Edit - Delete Manual Break - Column Break</emph></variable>"
+msgstr ""
+
+#: 00000403.xhp#tit.help.text
+msgctxt "00000403.xhp#tit.help.text"
+msgid "View Menu"
+msgstr "Меню \"Вигляд\""
+
+#: 00000403.xhp#hd_id3145673.1.help.text
+msgctxt "00000403.xhp#hd_id3145673.1.help.text"
+msgid "View Menu"
+msgstr "Меню \"Вигляд\""
+
+#: 00000403.xhp#par_id3150275.2.help.text
+msgid "<variable id=\"aspze\">Choose <emph>View - Column & Row Headers</emph></variable>"
+msgstr ""
+
+#: 00000403.xhp#par_id3154514.3.help.text
+msgid "<variable id=\"awehe\">Choose <emph>View - Value Highlighting</emph></variable>"
+msgstr ""
+
+#: 00000403.xhp#par_id3148947.4.help.text
+msgid "<variable id=\"rechenleiste\">Choose <emph>View - Toolbars - Formula Bar</emph></variable>"
+msgstr ""
+
+#: 00000403.xhp#par_id3148663.5.help.text
+msgid "<variable id=\"seumvo\">Choose <emph>View - Page Break Preview</emph></variable>"
+msgstr ""
+
+#: 00000404.xhp#tit.help.text
+msgctxt "00000404.xhp#tit.help.text"
+msgid "Insert Menu"
+msgstr "Меню \"Вставити\""
+
+#: 00000404.xhp#hd_id3149346.1.help.text
+msgctxt "00000404.xhp#hd_id3149346.1.help.text"
+msgid "Insert Menu"
+msgstr "Меню \"Вставити\""
+
+#: 00000404.xhp#par_id3149095.36.help.text
+msgid "<variable id=\"eimaum\">Choose <emph>Insert - Manual Break</emph></variable>"
+msgstr ""
+
+#: 00000404.xhp#par_id3149398.2.help.text
+msgid "<variable id=\"eimaumze\">Choose <emph>Insert - Manual Break - Row Break</emph></variable>"
+msgstr ""
+
+#: 00000404.xhp#par_id3150084.3.help.text
+msgid "<variable id=\"eimaumsp\">Choose <emph>Insert - Manual Break - Column Break</emph></variable>"
+msgstr ""
+
+#: 00000404.xhp#par_id3149784.4.help.text
+msgid "Choose <emph>Insert - Cells</emph>"
+msgstr ""
+
+#: 00000404.xhp#par_id3154514.5.help.text
+msgid "Open <emph>Insert Cells</emph> toolbar from Tools bar:"
+msgstr ""
+
+#: 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 ""
+
+#: 00000404.xhp#par_id3151041.6.help.text
+msgid "Insert Cells"
+msgstr ""
+
+#: 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 ""
+
+#: 00000404.xhp#par_id3146985.7.help.text
+msgid "Insert Cells Down"
+msgstr ""
+
+#: 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 ""
+
+#: 00000404.xhp#par_id3145646.8.help.text
+msgid "Insert Cells Right"
+msgstr ""
+
+#: 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 ""
+
+#: 00000404.xhp#par_id3150324.9.help.text
+msgid "Insert Rows"
+msgstr "Вставити рядки"
+
+#: 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 ""
+
+#: 00000404.xhp#par_id3155334.10.help.text
+msgid "Insert Columns"
+msgstr ""
+
+#: 00000404.xhp#par_id3148485.11.help.text
+#, fuzzy
+msgid "<variable id=\"eizei\">Choose <emph>Insert - Rows</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000404.xhp#par_id3153200.12.help.text
+#, fuzzy
+msgid "<variable id=\"eispa\">Choose <emph>Insert - Columns</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000404.xhp#par_id3149033.13.help.text
+#, fuzzy
+msgid "<variable id=\"eitab\">Choose <emph>Insert - Sheet</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000404.xhp#par_idN1082F.help.text
+msgid "<variable id=\"eitabfile\">Choose <emph>Insert - Sheet from file</emph></variable>"
+msgstr ""
+
+#: 00000404.xhp#par_id3155115.14.help.text
+msgid "Choose <emph>Insert - Function</emph>"
+msgstr ""
+
+#: 00000404.xhp#par_id3152582.34.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
+msgstr ""
+
+#: 00000404.xhp#par_id3153269.15.help.text
+msgid "On <emph>Formula Bar</emph>, click"
+msgstr ""
+
+#: 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 ""
+
+#: 00000404.xhp#par_id3154370.16.help.text
+msgid "Function Wizard"
+msgstr ""
+
+#: 00000404.xhp#par_id3156288.17.help.text
+msgid "<variable id=\"eikada\"><emph>Insert - Function</emph> - Category <emph>Database</emph></variable>"
+msgstr ""
+
+#: 00000404.xhp#par_id3155809.18.help.text
+msgid "<variable id=\"eikadaze\"><emph>Insert - Function</emph> - Category <emph>Date&Time</emph></variable>"
+msgstr ""
+
+#: 00000404.xhp#par_id3151334.19.help.text
+msgid "<variable id=\"eikafi\"><emph>Insert - Function</emph> - Category <emph>Financial</emph></variable>"
+msgstr ""
+
+#: 00000404.xhp#par_id3159222.20.help.text
+msgid "<variable id=\"eikain\"><emph>Insert - Function</emph> - Category <emph>Information</emph></variable>"
+msgstr ""
+
+#: 00000404.xhp#par_id3159173.21.help.text
+msgid "<variable id=\"eikalo\"><emph>Insert - Function</emph> - Category <emph>Logical</emph></variable>"
+msgstr ""
+
+#: 00000404.xhp#par_id3153914.22.help.text
+msgid "<variable id=\"eikama\"><emph>Insert - Function</emph> - Category <emph>Mathematical</emph></variable>"
+msgstr ""
+
+#: 00000404.xhp#par_id3150109.23.help.text
+msgid "<variable id=\"eikamatrix\"><emph>Insert - Function</emph> - Category <emph>Array</emph></variable>"
+msgstr ""
+
+#: 00000404.xhp#par_id3157978.24.help.text
+msgid "<variable id=\"eikasta\"><emph>Insert - Function</emph> - Category <emph>Statistical</emph></variable>"
+msgstr ""
+
+#: 00000404.xhp#par_id3156016.25.help.text
+msgid "<variable id=\"eikatext\"><emph>Insert - Function</emph> - Category <emph>Text</emph></variable>"
+msgstr ""
+
+#: 00000404.xhp#par_id3147075.26.help.text
+msgid "<variable id=\"efefft\"><emph>Insert - Function</emph> - Category <emph>Spreadsheet</emph></variable>"
+msgstr ""
+
+#: 00000404.xhp#par_id3154618.27.help.text
+msgid "<variable id=\"addin\"><emph>Insert - Function</emph> - Category <emph>Add-In</emph></variable>"
+msgstr ""
+
+#: 00000404.xhp#par_id3154059.38.help.text
+msgid "<variable id=\"addinana\"><emph>Insert - Function</emph> - Category <emph>Add-In</emph></variable>"
+msgstr ""
+
+#: 00000404.xhp#par_id3155383.33.help.text
+msgid "<variable id=\"funktionsliste\">Choose <emph>Insert - Function List</emph></variable>"
+msgstr ""
+
+#: 00000404.xhp#par_id3153250.28.help.text
+#, fuzzy
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000404.xhp#par_id3146776.37.help.text
+msgid "<variable id=\"eiextdata\">Choose <emph>Insert - Link to External data</emph></variable>"
+msgstr ""
+
+#: 00000404.xhp#par_id3143222.29.help.text
+msgid "Choose <emph>Insert - Names - Define</emph>"
+msgstr ""
+
+#: 00000404.xhp#par_id3149385.35.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
+msgstr ""
+
+#: 00000404.xhp#par_id3145214.30.help.text
+#, fuzzy
+msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000404.xhp#par_id3153558.31.help.text
+msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
+msgstr ""
+
+#: 00000404.xhp#par_id3153483.32.help.text
+msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
+msgstr ""
+
+#: 00000004.xhp#tit.help.text
+#, fuzzy
+msgid "To access this function..."
+msgstr ""
+"#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Щоб отримати доступ до цієї функції...\n"
+"#-#-#-#-# 00.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Для доступу до цієї функції..."
+
+#: 00000004.xhp#hd_id3155535.1.help.text
+msgid "<variable id=\"wie\">To access this function... </variable>"
+msgstr "<variable id=\"wie\">Щоб отримати доступ до цієї функції... </variable>"
+
+#: 00000004.xhp#par_idN1056E.help.text
+msgid "<variable id=\"moreontop\">More explanations on top of this page. </variable>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 00000406.xhp#tit.help.text
+msgctxt "00000406.xhp#tit.help.text"
+msgid "Tools Menu"
+msgstr "Меню \"Сервіс\""
+
+#: 00000406.xhp#hd_id3147264.1.help.text
+msgctxt "00000406.xhp#hd_id3147264.1.help.text"
+msgid "Tools Menu"
+msgstr "Меню \"Сервіс\""
+
+#: 00000406.xhp#par_id3150541.2.help.text
+#, fuzzy
+msgid "<variable id=\"exdektv\">Choose <emph>Tools - Detective</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000406.xhp#par_id3153194.3.help.text
+msgid "Choose <emph>Tools - Detective - Trace Precedents</emph>"
+msgstr ""
+
+#: 00000406.xhp#par_id3150447.29.help.text
+msgid "Shift+F7"
+msgstr ""
+
+#: 00000406.xhp#par_id3154123.33.help.text
+msgid "<variable id=\"silbentrennungc\">Menu <emph>Tools - Language - Hyphenation</emph></variable>"
+msgstr ""
+
+#: 00000406.xhp#par_id3145785.4.help.text
+msgid "<variable id=\"exdvore\">Choose <emph>Tools - Detective - Remove Precedents</emph></variable>"
+msgstr ""
+
+#: 00000406.xhp#par_id3155411.5.help.text
+msgid "Choose <emph>Tools - Detective - Trace Dependents</emph>"
+msgstr ""
+
+#: 00000406.xhp#par_id3153363.30.help.text
+msgid "Shift+F5"
+msgstr ""
+
+#: 00000406.xhp#par_id3146984.6.help.text
+msgid "<variable id=\"exdszne\">Choose <emph>Tools - Detective - Remove Dependents</emph></variable>"
+msgstr ""
+
+#: 00000406.xhp#par_id3154014.7.help.text
+msgid "<variable id=\"exdase\">Choose <emph>Tools - Detective - Remove All Traces</emph></variable>"
+msgstr ""
+
+#: 00000406.xhp#par_id3153188.8.help.text
+msgid "<variable id=\"exdszfe\">Choose <emph>Tools - Detective - Trace Error</emph></variable>"
+msgstr ""
+
+#: 00000406.xhp#par_id3149410.9.help.text
+msgid "<variable id=\"fuellmodus\">Choose <emph>Tools - Detective - Fill Mode</emph></variable>"
+msgstr ""
+
+#: 00000406.xhp#par_id3156284.10.help.text
+msgid "<variable id=\"dateneinkreisen\">Choose <emph>Tools - Detective - Mark Invalid Data</emph></variable>"
+msgstr ""
+
+#: 00000406.xhp#par_id3153159.11.help.text
+msgid "<variable id=\"spurenaktualisieren\">Choose <emph>Tools - Detective - Refresh Traces</emph></variable>"
+msgstr ""
+
+#: 00000406.xhp#par_id3147397.32.help.text
+msgid "<variable id=\"automatisch\">Choose <emph>Tools - Detective - AutoRefresh</emph></variable>"
+msgstr ""
+
+#: 00000406.xhp#par_id3154018.12.help.text
+#, fuzzy
+msgid "<variable id=\"exzws\">Choose <emph>Tools - Goal Seek</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000406.xhp#par_id3269142.help.text
+msgid "<variable id=\"solver\">Choose Tools - Solver</variable>"
+msgstr ""
+
+#: 00000406.xhp#par_id8554338.help.text
+msgid "<variable id=\"solver_options\">Choose Tools - Solver, Options button</variable>"
+msgstr ""
+
+#: 00000406.xhp#par_id3156277.13.help.text
+#, fuzzy
+msgid "<variable id=\"exsze\">Choose <emph>Tools - Scenarios</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000406.xhp#par_id3145640.14.help.text
+msgid "<variable id=\"exdos\">Choose <emph>Tools - Protect Document</emph></variable>"
+msgstr ""
+
+#: 00000406.xhp#par_id3149020.15.help.text
+msgid "<variable id=\"exdst\">Choose <emph>Tools - Protect Document - Sheet</emph></variable>"
+msgstr ""
+
+#: 00000406.xhp#par_id3154256.16.help.text
+msgid "<variable id=\"exdsd\">Choose <emph>Tools - Protect Document - Document</emph></variable>"
+msgstr ""
+
+#: 00000406.xhp#par_id3147363.17.help.text
+msgid "<variable id=\"zellinhalte\">Choose <emph>Tools - Cell Contents</emph></variable>"
+msgstr ""
+
+#: 00000406.xhp#par_id3146919.18.help.text
+msgid "Choose <emph>Tools - Cell Contents - Recalculate</emph>"
+msgstr ""
+
+#: 00000406.xhp#par_id3149257.31.help.text
+msgid "F9"
+msgstr "F9"
+
+#: 00000406.xhp#par_id3150941.19.help.text
+msgid "<variable id=\"exatmb\">Choose <emph>Tools - Cell Contents - AutoCalculate</emph></variable>"
+msgstr ""
+
+#: 00000406.xhp#par_id3151276.20.help.text
+msgid "<variable id=\"autoeingabe\">Choose <emph>Tools - Cell Contents - AutoInput</emph></variable>"
+msgstr ""
+
+#: 00000405.xhp#tit.help.text
+msgctxt "00000405.xhp#tit.help.text"
+msgid "Format Menu"
+msgstr "Меню \"Формат\""
+
+#: 00000405.xhp#hd_id3150769.1.help.text
+msgctxt "00000405.xhp#hd_id3150769.1.help.text"
+msgid "Format Menu"
+msgstr "Меню \"Формат\""
+
+#: 00000405.xhp#par_id3154685.2.help.text
+#, fuzzy
+msgid "<variable id=\"fozelle\">Choose <emph>Format - Cells</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000405.xhp#par_id3153194.3.help.text
+msgid "<variable id=\"fozelstz\">Choose <emph>Format - Cells - Cell Protection</emph> tab </variable>"
+msgstr ""
+
+#: 00000405.xhp#par_id3155854.4.help.text
+#, fuzzy
+msgid "<variable id=\"fozei\">Choose <emph>Format - Row</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000405.xhp#par_id3150012.5.help.text
+msgid "<variable id=\"fozeiophoe\">Choose <emph>Format - Row - Optimal Height</emph></variable>"
+msgstr ""
+
+#: 00000405.xhp#par_id3148645.6.help.text
+msgid "Choose <emph>Format - Row - Hide</emph>"
+msgstr ""
+
+#: 00000405.xhp#par_id3153728.7.help.text
+msgid "Choose <emph>Format - Column - Hide</emph>"
+msgstr ""
+
+#: 00000405.xhp#par_id3151114.8.help.text
+msgid "Choose <emph>Format - Sheet - Hide</emph>"
+msgstr ""
+
+#: 00000405.xhp#par_id3148576.9.help.text
+msgid "Choose <emph>Format - Row - Show</emph>"
+msgstr ""
+
+#: 00000405.xhp#par_id3156286.10.help.text
+msgid "Choose <emph>Format - Column - Show</emph>"
+msgstr ""
+
+#: 00000405.xhp#par_id3145645.11.help.text
+#, fuzzy
+msgid "<variable id=\"fospa\">Choose <emph>Format - Column</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000405.xhp#par_id3145252.12.help.text
+msgid "Choose <emph>Format - Column - Optimal Width</emph>"
+msgstr ""
+
+#: 00000405.xhp#par_id3146971.36.help.text
+msgid "Double-click right column separator in column headers"
+msgstr ""
+
+#: 00000405.xhp#par_id3147362.15.help.text
+#, fuzzy
+msgid "<variable id=\"fot\">Choose <emph>Format - Sheet</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000405.xhp#par_id3163805.16.help.text
+#, fuzzy
+msgid "<variable id=\"fotu\">Choose <emph>Format - Sheet - Rename</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000405.xhp#par_id3155333.17.help.text
+#, fuzzy
+msgid "<variable id=\"fotenb\">Choose <emph>Format - Sheet - Show</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000405.xhp#par_idN1077A.help.text
+#, fuzzy
+msgid "<variable id=\"foste\">Choose <emph>Format - Page</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000405.xhp#par_id3155508.25.help.text
+msgid "<variable id=\"fostel\">Choose <emph>Format - Page - Sheet</emph> tab </variable>"
+msgstr ""
+
+#: 00000405.xhp#par_id3150883.26.help.text
+#, fuzzy
+msgid "<variable id=\"fodrbe\">Choose <emph>Format - Print Ranges</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000405.xhp#par_id3156448.27.help.text
+#, fuzzy
+msgid "<variable id=\"fodrfe\">Choose <emph>Format - Print Ranges - Define</emph></variable>"
+msgstr "<variable id=\"spaltesel\">Виберіть <emph>Таблиця - Виділити - Стовпчик</emph></variable>"
+
+#: 00000405.xhp#par_id3156290.35.help.text
+msgid "<variable id=\"fodrhin\">Choose <emph>Format - Print Ranges - Add</emph></variable>"
+msgstr ""
+
+#: 00000405.xhp#par_id3155812.28.help.text
+msgid "<variable id=\"fodbah\">Choose <emph>Format - Print Ranges - Remove</emph></variable>"
+msgstr ""
+
+#: 00000405.xhp#par_id3153307.29.help.text
+msgid "<variable id=\"fodbbe\">Choose <emph>Format - Print Ranges - Edit</emph></variable>"
+msgstr ""
+
+#: 00000405.xhp#par_id3153916.31.help.text
+msgid "Choose <emph>Format - AutoFormat</emph>"
+msgstr ""
+
+#: 00000405.xhp#par_id3154532.32.help.text
+msgid "On the Tools bar, click"
+msgstr ""
+
+#: 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 ""
+
+#: 00000405.xhp#par_id3154060.33.help.text
+msgid "AutoFormat"
+msgstr ""
+
+#: 00000405.xhp#par_id3154618.34.help.text
+msgid "<variable id=\"bedingte\">Choose <emph>Format - Conditional Formatting</emph></variable>"
+msgstr ""
+
+#: 00000412.xhp#tit.help.text
+msgctxt "00000412.xhp#tit.help.text"
+msgid "Data Menu"
+msgstr ""
+
+#: 00000412.xhp#hd_id3145136.1.help.text
+msgctxt "00000412.xhp#hd_id3145136.1.help.text"
+msgid "Data Menu"
+msgstr ""
+
+#: 00000412.xhp#par_id8366954.help.text
+msgid "<variable id=\"text2columns\">Choose <emph>Data - Text to Columns</emph></variable>"
+msgstr ""
+
+#: 00000412.xhp#par_id3147399.3.help.text
+#, fuzzy
+msgid "<variable id=\"dbrbf\">Choose <emph>Data - Define Range</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000412.xhp#par_id3145345.4.help.text
+#, fuzzy
+msgid "<variable id=\"dbrba\">Choose <emph>Data - Select Range</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000412.xhp#par_id3150443.5.help.text
+#, fuzzy
+msgid "<variable id=\"dnsrt\">Choose <emph>Data - Sort</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000412.xhp#par_id3148491.6.help.text
+msgid "Choose <emph>Data - Sort - Sort Criteria</emph> tab"
+msgstr ""
+
+#: 00000412.xhp#par_id3154516.7.help.text
+msgid "On Standard bar, click"
+msgstr "На стандартній панелі інструментів натисніть"
+
+#: 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 ""
+
+#: 00000412.xhp#par_id3150767.8.help.text
+msgid "Sort Ascending"
+msgstr ""
+
+#: 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 ""
+
+#: 00000412.xhp#par_id3145364.9.help.text
+msgid "Sort Descending"
+msgstr ""
+
+#: 00000412.xhp#par_id3146984.10.help.text
+#, fuzzy
+msgid "<variable id=\"dnstot\">Choose <emph>Data - Sort - Options</emph> tab</variable>"
+msgstr "<variable id=\"spaltenber\">Виберіть кнопку<emph>Формат - Розділи - Параметри</emph> </variable>"
+
+#: 00000412.xhp#par_id3155308.11.help.text
+#, fuzzy
+msgid "<variable id=\"dnftr\">Choose <emph>Data - Filter</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000412.xhp#par_id3148646.12.help.text
+msgid "Choose <emph>Data - Filter - AutoFilter</emph>"
+msgstr ""
+
+#: 00000412.xhp#par_id3151113.13.help.text
+msgid "On Tools bar or Table Data bar, click"
+msgstr ""
+
+#: 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 ""
+
+#: 00000412.xhp#par_id3149401.14.help.text
+msgid "AutoFilter"
+msgstr ""
+
+#: 00000412.xhp#par_id3156278.17.help.text
+msgid "<variable id=\"dnfspz\">Choose <emph>Data - Filter - Advanced Filter</emph></variable>"
+msgstr ""
+
+#: 00000412.xhp#par_id3153764.18.help.text
+msgid "Choose <emph>Data - Filter - Standard Filter - More>></emph> button"
+msgstr ""
+
+#: 00000412.xhp#par_id3155444.19.help.text
+msgid "Choose <emph>Data - Filter - Advanced Filter - More>></emph> button"
+msgstr ""
+
+#: 00000412.xhp#par_id3156382.20.help.text
+msgid "Choose <emph>Data - Filter - Remove Filter</emph>"
+msgstr ""
+
+#: 00000412.xhp#par_id3155961.48.help.text
+msgid "On Table Data bar, click <emph>Remove Filter/Sort</emph>"
+msgstr ""
+
+#: 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 ""
+
+#: 00000412.xhp#par_id3149207.49.help.text
+msgid "Remove Filter/Sort"
+msgstr ""
+
+#: 00000412.xhp#par_id3152778.21.help.text
+msgid "<variable id=\"dnaftas\">Choose <emph>Data - Filter - Hide AutoFilter</emph></variable>"
+msgstr ""
+
+#: 00000412.xhp#par_id3166424.22.help.text
+#, fuzzy
+msgid "<variable id=\"dntegs\">Choose <emph>Data - Subtotals</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000412.xhp#par_id3154574.23.help.text
+#, fuzzy
+msgid "<variable id=\"dntezd\">Choose <emph>Data - Subtotals - 1st, 2nd, 3rd Group</emph> tabs</variable>"
+msgstr "<variable id=\"wordcount\">Виберіть <emph>Сервіс - Кількість слів</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=\"spaltenber\">Виберіть кнопку<emph>Формат - Розділи - Параметри</emph> </variable>"
+
+#: 00000412.xhp#par_id3145133.25.help.text
+#, fuzzy
+msgid "<variable id=\"datengueltig\">Choose <emph>Data - Validity</emph></variable>"
+msgstr "<variable id=\"umschlagb\">Відкрийте вкладку <emph>Вставити - Конверт - Конверт</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=\"feldbefehltitel\">Виберіть <emph>Вставити - Поля - Заголовок</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=\"umschlagb\">Відкрийте вкладку <emph>Вставити - Конверт - Конверт</emph> </variable>"
+
+#: 00000412.xhp#par_id3154486.28.help.text
+#, fuzzy
+msgid "<variable id=\"datengueltigfehler\">Choose <emph>Data - Validity - Error Alert</emph> tab</variable>"
+msgstr "<variable id=\"lineal\">Виберіть <emph>Вигляд - Лінійка</emph>.</variable>"
+
+#: 00000412.xhp#par_id3146978.29.help.text
+#, fuzzy
+msgid "<variable id=\"dnmfo\">Choose <emph>Data - Multiple Operations</emph></variable>"
+msgstr "<variable id=\"spaltenber\">Виберіть кнопку<emph>Формат - Розділи - Параметри</emph> </variable>"
+
+#: 00000412.xhp#par_id3155809.30.help.text
+#, fuzzy
+msgid "<variable id=\"dnksd\">Choose <emph>Data - Consolidate</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000412.xhp#par_id3148701.31.help.text
+#, fuzzy
+msgid "<variable id=\"dngld\">Choose <emph>Data - Group and Outline</emph></variable>"
+msgstr "<variable id=\"spaltesel\">Виберіть <emph>Таблиця - Виділити - Стовпчик</emph></variable>"
+
+#: 00000412.xhp#par_id3153815.32.help.text
+msgid "<variable id=\"dngda\">Choose <emph>Data - Group and Outline - Hide Details</emph></variable>"
+msgstr ""
+
+#: 00000412.xhp#par_id3159223.33.help.text
+#, fuzzy
+msgid "<variable id=\"dngde\">Choose <emph>Data - Group and Outline - Show Details</emph></variable>"
+msgstr "<variable id=\"feldvariablen\">Виберіть вкладку <emph>Вставити - Поля - Додатково - Змінні</emph>. </variable>"
+
+#: 00000412.xhp#par_id3146870.34.help.text
+msgid "Choose <emph>Data - Group and Outline - Group</emph>"
+msgstr ""
+
+#: 00000412.xhp#par_id3144507.51.help.text
+msgid "F12"
+msgstr "F12"
+
+#: 00000412.xhp#par_id3144772.35.help.text
+msgctxt "00000412.xhp#par_id3144772.35.help.text"
+msgid "On <emph>Tools</emph> bar, click"
+msgstr ""
+
+#: 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 ""
+
+#: 00000412.xhp#par_id3150214.36.help.text
+msgid "Group"
+msgstr ""
+
+#: 00000412.xhp#par_id3146781.37.help.text
+msgid "Choose <emph>Data - Group and Outline - Ungroup</emph>"
+msgstr ""
+
+#: 00000412.xhp#par_id3150892.52.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
+msgstr ""
+
+#: 00000412.xhp#par_id3155097.38.help.text
+msgctxt "00000412.xhp#par_id3155097.38.help.text"
+msgid "On <emph>Tools</emph> bar, click"
+msgstr ""
+
+#: 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 ""
+
+#: 00000412.xhp#par_id3153555.39.help.text
+msgid "Ungroup"
+msgstr ""
+
+#: 00000412.xhp#par_id3153008.40.help.text
+msgid "<variable id=\"dnglagl\">Choose <emph>Data - Group and Outline - AutoOutline</emph></variable>"
+msgstr ""
+
+#: 00000412.xhp#par_id3154709.41.help.text
+msgid "<variable id=\"dnglef\">Choose <emph>Data - Group and Outline - Remove</emph></variable>"
+msgstr ""
+
+#: 00000412.xhp#par_id1774346.help.text
+#, fuzzy
+msgid "<variable id=\"dngdrill\">Choose <emph>Data - Group and Outline - Show Details</emph> (for some pivot tables)</variable>"
+msgstr "<variable id=\"feldvariablen\">Виберіть вкладку <emph>Вставити - Поля - Додатково - Змінні</emph>. </variable>"
+
+#: 00000412.xhp#par_id3155759.42.help.text
+#, fuzzy
+msgid "<variable id=\"dndtpt\">Choose <emph>Data - Pivot Table</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000412.xhp#par_id3154625.43.help.text
+#, fuzzy
+msgid "<variable id=\"dndpa\">Choose <emph>Data - Pivot Table - Create</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000412.xhp#par_id3147558.53.help.text
+#, fuzzy
+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=\"sectionindents\">Виберіть вкладку <emph>Вставити - Розділ - Відступи</emph> або виберіть <emph>Формат - Розділи</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 ""
+
+#: 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 ""
+
+#: 00000412.xhp#par_id3153294.44.help.text
+#, fuzzy
+msgid "<variable id=\"dndpak\">Choose <emph>Data - Pivot Table - Refresh</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000412.xhp#par_id3151344.45.help.text
+#, fuzzy
+msgid "<variable id=\"dndploe\">Choose <emph>Data - Pivot Table - Delete</emph></variable>"
+msgstr "<variable id=\"spaltesel\">Виберіть <emph>Таблиця - Виділити - Стовпчик</emph></variable>"
+
+#: 00000412.xhp#par_id3150397.46.help.text
+#, fuzzy
+msgid "<variable id=\"dndakt\">Choose <emph>Data - Refresh Range</emph></variable>"
+msgstr "<variable id=\"tabauf\">Виберіть <emph>Таблиця - Розбити таблицю</emph></variable>"
+
+#: 00000412.xhp#par_idN10B8F.help.text
+msgid "<variable id=\"grouping\">Choose <emph>Data - Group and Outline - Group</emph></variable>"
+msgstr ""
diff --git a/source/uk/helpcontent2/source/text/scalc/01.po b/source/uk/helpcontent2/source/text/scalc/01.po
new file mode 100644
index 00000000000..8d175da4e3e
--- /dev/null
+++ b/source/uk/helpcontent2/source/text/scalc/01.po
@@ -0,0 +1,29180 @@
+#. 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-07-04 18:55+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 04020000.xhp#tit.help.text
+msgid "Insert Cells"
+msgstr ""
+
+#: 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 ""
+
+#: 04020000.xhp#hd_id3156023.1.help.text
+msgid " Insert Cells"
+msgstr ""
+
+#: 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 ""
+
+#: 04020000.xhp#hd_id3153768.3.help.text
+msgctxt "04020000.xhp#hd_id3153768.3.help.text"
+msgid "Selection"
+msgstr ""
+
+#: 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 ""
+
+#: 04020000.xhp#hd_id3146120.5.help.text
+msgid "Shift cells down"
+msgstr ""
+
+#: 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 ""
+
+#: 04020000.xhp#hd_id3147434.7.help.text
+msgid "Shift cells right"
+msgstr ""
+
+#: 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 ""
+
+#: 04020000.xhp#hd_id3153877.9.help.text
+msgid "Entire row"
+msgstr ""
+
+#: 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 ""
+
+#: 04020000.xhp#hd_id3146971.11.help.text
+msgid "Entire column"
+msgstr ""
+
+#: 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 ""
+
+#: 05080000.xhp#tit.help.text
+msgid "Print Ranges"
+msgstr ""
+
+#: 05080000.xhp#hd_id3154013.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/05080000.xhp\" name=\"Print Ranges\">Print Ranges</link>"
+msgstr "<link href=\"text/swriter/01/04150000.xhp\" name=\"Table\">Таблиця</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 ""
+
+#: 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 ""
+
+#: 05080000.xhp#hd_id3154729.3.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Edit\">Edit</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 05120000.xhp#tit.help.text
+msgctxt "05120000.xhp#tit.help.text"
+msgid "Conditional Formatting"
+msgstr ""
+
+#: 05120000.xhp#hd_id3155132.1.help.text
+msgctxt "05120000.xhp#hd_id3155132.1.help.text"
+msgid "Conditional Formatting"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 05120000.xhp#bm_id3153189.help.text
+msgid "<bookmark_value>conditional formatting; conditions</bookmark_value>"
+msgstr ""
+
+#: 05120000.xhp#hd_id3153189.18.help.text
+msgid "Condition 1/2/3"
+msgstr ""
+
+#: 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 ""
+
+#: 05120000.xhp#hd_id3147394.5.help.text
+msgid "Cell Value / Formula"
+msgstr ""
+
+#: 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 ""
+
+#: 05120000.xhp#hd_id3153709.7.help.text
+msgid "Cell Value Condition"
+msgstr ""
+
+#: 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 ""
+
+#: 05120000.xhp#hd_id3156384.9.help.text
+msgid "Cell Style"
+msgstr ""
+
+#: 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 ""
+
+#: 05120000.xhp#hd_id0509200913175331.help.text
+msgid "New Style"
+msgstr ""
+
+#: 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 ""
+
+#: 05120000.xhp#hd_id3146316.11.help.text
+msgid "Parameter field"
+msgstr ""
+
+#: 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 ""
+
+#: 05120000.xhp#par_id3145257.13.help.text
+msgid "Once the parameters have been defined, the condition is complete. It may appear as:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 05120000.xhp#par_idN107E1.help.text
+msgid " <embedvar href=\"text/scalc/guide/cellstyle_conditional.xhp#cellstyle_conditional\"/> "
+msgstr ""
+
+#: 04060109.xhp#tit.help.text
+msgctxt "04060109.xhp#tit.help.text"
+msgid "Spreadsheet Functions"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3148522.1.help.text
+msgctxt "04060109.xhp#hd_id3148522.1.help.text"
+msgid "Spreadsheet Functions"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#bm_id3146968.help.text
+msgid "<bookmark_value>ADDRESS function</bookmark_value>"
+msgstr ""
+
+#: 04060109.xhp#hd_id3146968.3.help.text
+msgctxt "04060109.xhp#hd_id3146968.3.help.text"
+msgid "ADDRESS"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#par_id102720080230153.help.text
+msgid "In INDIRECT, the parameter is appended as the second parameter."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3151196.5.help.text
+msgctxt "04060109.xhp#hd_id3151196.5.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060109.xhp#par_id3154707.6.help.text
+msgid "ADDRESS(Row; Column; Abs; A1; \"Sheet\")"
+msgstr ""
+
+#: 04060109.xhp#par_id3147505.7.help.text
+msgid " <emph>Row</emph> represents the row number for the cell reference"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#par_id3153074.9.help.text
+msgid " <emph>Abs</emph> determines the type of reference:"
+msgstr ""
+
+#: 04060109.xhp#par_id3153298.10.help.text
+msgid "1: absolute ($A$1)"
+msgstr ""
+
+#: 04060109.xhp#par_id3150431.11.help.text
+msgid "2: row reference type is absolute; column reference is relative (A$1)"
+msgstr ""
+
+#: 04060109.xhp#par_id3146096.12.help.text
+msgid "3: row (relative); column (absolute) ($A1)"
+msgstr ""
+
+#: 04060109.xhp#par_id3153334.13.help.text
+msgid "4: relative (A1)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3147299.15.help.text
+msgid "Example:"
+msgstr "Приклад:"
+
+#: 04060109.xhp#par_id3148744.16.help.text
+msgid " <item type=\"input\">=ADDRESS(1;1;2;;\"Sheet2\")</item> returns the following: Sheet2.A$1"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#bm_id3150372.help.text
+msgid "<bookmark_value>AREAS function</bookmark_value>"
+msgstr ""
+
+#: 04060109.xhp#hd_id3150372.19.help.text
+msgid "AREAS"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3145222.21.help.text
+msgctxt "04060109.xhp#hd_id3145222.21.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060109.xhp#par_id3155907.22.help.text
+msgid "AREAS(Reference)"
+msgstr ""
+
+#: 04060109.xhp#par_id3153118.23.help.text
+msgid "Reference represents the reference to a cell or cell range."
+msgstr ""
+
+#: 04060109.xhp#hd_id3148891.24.help.text
+#, fuzzy
+msgctxt "04060109.xhp#hd_id3148891.24.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#bm_id3148727.help.text
+msgid "<bookmark_value>DDE function</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3150700.30.help.text
+msgctxt "04060109.xhp#hd_id3150700.30.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060109.xhp#par_id3148886.31.help.text
+msgid "DDE(\"Server\"; \"File\"; \"Range\"; Mode)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#par_id3153034.33.help.text
+msgid " <emph>File</emph> is the complete file name, including path specification."
+msgstr ""
+
+#: 04060109.xhp#par_id3147472.34.help.text
+msgid " <emph>Range</emph> is the area containing the data to be evaluated."
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#par_id3154383.185.help.text
+msgid " <emph>Mode</emph> "
+msgstr ""
+
+#: 04060109.xhp#par_id3145146.186.help.text
+msgid " <emph>Effect</emph> "
+msgstr ""
+
+#: 04060109.xhp#par_id3154558.187.help.text
+msgctxt "04060109.xhp#par_id3154558.187.help.text"
+msgid "0 or missing"
+msgstr ""
+
+#: 04060109.xhp#par_id3145596.188.help.text
+msgid "Number format from the \"Default\" cell style"
+msgstr ""
+
+#: 04060109.xhp#par_id3152785.189.help.text
+msgctxt "04060109.xhp#par_id3152785.189.help.text"
+msgid "1"
+msgstr ""
+
+#: 04060109.xhp#par_id3154380.190.help.text
+msgid "Data are always interpreted in the standard format for US English"
+msgstr ""
+
+#: 04060109.xhp#par_id3150279.191.help.text
+msgctxt "04060109.xhp#par_id3150279.191.help.text"
+msgid "2"
+msgstr ""
+
+#: 04060109.xhp#par_id3153775.192.help.text
+msgid "Data are retrieved as text; no conversion to numbers"
+msgstr ""
+
+#: 04060109.xhp#hd_id3149546.35.help.text
+#, fuzzy
+msgctxt "04060109.xhp#hd_id3149546.35.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#bm_id3153114.help.text
+msgid "<bookmark_value>ERRORTYPE function</bookmark_value>"
+msgstr ""
+
+#: 04060109.xhp#hd_id3153114.38.help.text
+msgid "ERRORTYPE"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3154327.41.help.text
+msgctxt "04060109.xhp#hd_id3154327.41.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060109.xhp#par_id3151322.42.help.text
+msgid "ERRORTYPE(Reference)"
+msgstr ""
+
+#: 04060109.xhp#par_id3150132.43.help.text
+msgid " <emph>Reference</emph> contains the address of the cell in which the error occurs."
+msgstr ""
+
+#: 04060109.xhp#hd_id3145248.44.help.text
+#, fuzzy
+msgctxt "04060109.xhp#hd_id3145248.44.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060109.xhp#bm_id3151221.help.text
+msgid "<bookmark_value>INDEX function</bookmark_value>"
+msgstr ""
+
+#: 04060109.xhp#hd_id3151221.47.help.text
+msgid "INDEX"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3156063.49.help.text
+msgctxt "04060109.xhp#hd_id3156063.49.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060109.xhp#par_id3149007.50.help.text
+msgid "INDEX(Reference; Row; Column; Range)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3145264.55.help.text
+#, fuzzy
+msgctxt "04060109.xhp#hd_id3145264.55.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#bm_id3153181.help.text
+msgid "<bookmark_value>INDIRECT function</bookmark_value>"
+msgstr ""
+
+#: 04060109.xhp#hd_id3153181.62.help.text
+msgid "INDIRECT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3153717.64.help.text
+msgctxt "04060109.xhp#hd_id3153717.64.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060109.xhp#par_id3149824.65.help.text
+msgid "INDIRECT(Ref; A1)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3150389.67.help.text
+#, fuzzy
+msgctxt "04060109.xhp#hd_id3150389.67.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#bm_id3154818.help.text
+msgid "<bookmark_value>COLUMN function</bookmark_value>"
+msgstr ""
+
+#: 04060109.xhp#hd_id3154818.70.help.text
+msgid "COLUMN"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3149283.72.help.text
+msgctxt "04060109.xhp#hd_id3149283.72.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060109.xhp#par_id3149447.73.help.text
+msgid "COLUMN(Reference)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3152932.75.help.text
+#, fuzzy
+msgctxt "04060109.xhp#hd_id3152932.75.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#par_id3150872.197.help.text
+msgid " <item type=\"input\">=COLUMN()</item> returns 3 if the formula was entered in column C."
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#bm_id3154643.help.text
+msgid "<bookmark_value>COLUMNS function</bookmark_value>"
+msgstr ""
+
+#: 04060109.xhp#hd_id3154643.79.help.text
+msgid "COLUMNS"
+msgstr ""
+
+#: 04060109.xhp#par_id3151182.80.help.text
+msgid "<ahelp hid=\"HID_FUNC_SPALTEN\">Returns the number of columns in the given reference.</ahelp>"
+msgstr ""
+
+#: 04060109.xhp#hd_id3149141.81.help.text
+msgctxt "04060109.xhp#hd_id3149141.81.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060109.xhp#par_id3154047.82.help.text
+msgid "COLUMNS(Array)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3153622.84.help.text
+#, fuzzy
+msgctxt "04060109.xhp#hd_id3153622.84.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060109.xhp#par_id3149577.200.help.text
+msgid " <item type=\"input\">=COLUMNS(B5)</item> returns 1 because a cell only contains one column."
+msgstr ""
+
+#: 04060109.xhp#par_id3145649.85.help.text
+msgid " <item type=\"input\">=COLUMNS(A1:C5)</item> equals 3. The reference comprises three columns."
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#bm_id3153152.help.text
+msgid "<bookmark_value>vertical search function</bookmark_value> <bookmark_value>VLOOKUP function</bookmark_value>"
+msgstr ""
+
+#: 04060109.xhp#hd_id3153152.87.help.text
+msgid "VLOOKUP"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3146898.89.help.text
+msgctxt "04060109.xhp#hd_id3146898.89.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060109.xhp#par_id3150156.90.help.text
+msgid "=VLOOKUP(SearchCriterion; Array; Index; SortOrder)"
+msgstr ""
+
+#: 04060109.xhp#par_id3149289.91.help.text
+msgid " <emph>SearchCriterion</emph> is the value searched for in the first column of the array."
+msgstr ""
+
+#: 04060109.xhp#par_id3153884.92.help.text
+msgid " <emph>Array</emph> is the reference, which is to comprise at least two columns."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3147487.95.help.text
+#, fuzzy
+msgctxt "04060109.xhp#hd_id3147487.95.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060109.xhp#par_id3145663.97.help.text
+msgid "Enter the following formula in B1:"
+msgstr ""
+
+#: 04060109.xhp#par_id3151172.98.help.text
+msgid " <item type=\"input\">=VLOOKUP(A1;D1:E100;2)</item> "
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#bm_id3153905.help.text
+msgid "<bookmark_value>sheet numbers; looking up</bookmark_value> <bookmark_value>SHEET function</bookmark_value>"
+msgstr ""
+
+#: 04060109.xhp#hd_id3153905.215.help.text
+msgctxt "04060109.xhp#hd_id3153905.215.help.text"
+msgid "SHEET"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3148564.217.help.text
+msgctxt "04060109.xhp#hd_id3148564.217.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060109.xhp#par_id3153095.218.help.text
+msgid "SHEET(Reference)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3155399.220.help.text
+#, fuzzy
+msgctxt "04060109.xhp#hd_id3155399.220.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060109.xhp#bm_id3148829.help.text
+msgid "<bookmark_value>number of sheets; function</bookmark_value> <bookmark_value>SHEETS function</bookmark_value>"
+msgstr ""
+
+#: 04060109.xhp#hd_id3148829.222.help.text
+msgid "SHEETS"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3154220.224.help.text
+msgctxt "04060109.xhp#hd_id3154220.224.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060109.xhp#par_id3150777.225.help.text
+msgid "SHEETS(Reference)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3149766.227.help.text
+#, fuzzy
+msgctxt "04060109.xhp#hd_id3149766.227.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060109.xhp#bm_id3158407.help.text
+msgid "<bookmark_value>MATCH function</bookmark_value>"
+msgstr ""
+
+#: 04060109.xhp#hd_id3158407.101.help.text
+msgid "MATCH"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3153834.103.help.text
+msgctxt "04060109.xhp#hd_id3153834.103.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060109.xhp#par_id3159152.104.help.text
+msgid "MATCH(SearchCriterion; LookupArray; Type)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3155119.108.help.text
+#, fuzzy
+msgctxt "04060109.xhp#hd_id3155119.108.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060109.xhp#bm_id3158430.help.text
+msgid "<bookmark_value>OFFSET function</bookmark_value>"
+msgstr ""
+
+#: 04060109.xhp#hd_id3158430.111.help.text
+msgid "OFFSET"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3146952.113.help.text
+msgctxt "04060109.xhp#hd_id3146952.113.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060109.xhp#par_id3159194.114.help.text
+msgid "OFFSET(Reference; Rows; Columns; Height; Width)"
+msgstr ""
+
+#: 04060109.xhp#par_id3152360.115.help.text
+msgid " <emph>Reference</emph> is the reference from which the function searches for the new reference."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#par_idN1104B.help.text
+msgctxt "04060109.xhp#par_idN1104B.help.text"
+msgid " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+msgstr ""
+
+#: 04060109.xhp#hd_id3155586.120.help.text
+#, fuzzy
+msgctxt "04060109.xhp#hd_id3155586.120.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#bm_id3159273.help.text
+msgid "<bookmark_value>LOOKUP function</bookmark_value>"
+msgstr ""
+
+#: 04060109.xhp#hd_id3159273.123.help.text
+msgid "LOOKUP"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3152947.125.help.text
+msgctxt "04060109.xhp#hd_id3152947.125.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060109.xhp#par_id3154104.126.help.text
+msgid "LOOKUP(SearchCriterion; SearchVector; ResultVector)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#par_id3154854.128.help.text
+msgid " <emph>SearchVector</emph> is the single-row or single-column area to be searched."
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3148624.130.help.text
+#, fuzzy
+msgctxt "04060109.xhp#hd_id3148624.130.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060109.xhp#bm_id3149425.help.text
+msgid "<bookmark_value>STYLE function</bookmark_value>"
+msgstr ""
+
+#: 04060109.xhp#hd_id3149425.133.help.text
+msgid "STYLE"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3145373.135.help.text
+msgctxt "04060109.xhp#hd_id3145373.135.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060109.xhp#par_id3149302.136.help.text
+msgid "STYLE(\"Style\"; Time; \"Style2\")"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#par_idN111CA.help.text
+msgctxt "04060109.xhp#par_idN111CA.help.text"
+msgid " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+msgstr ""
+
+#: 04060109.xhp#hd_id3159254.140.help.text
+#, fuzzy
+msgctxt "04060109.xhp#hd_id3159254.140.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#par_id3668935.help.text
+msgid " <item type=\"input\">=\"Text\"&T(STYLE(\"myStyle\"))</item> "
+msgstr ""
+
+#: 04060109.xhp#par_id3042085.help.text
+msgid "See also CURRENT() for another example."
+msgstr ""
+
+#: 04060109.xhp#bm_id3150430.help.text
+msgid "<bookmark_value>CHOOSE function</bookmark_value>"
+msgstr ""
+
+#: 04060109.xhp#hd_id3150430.142.help.text
+msgid "CHOOSE"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3153533.144.help.text
+msgctxt "04060109.xhp#hd_id3153533.144.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060109.xhp#par_id3155425.145.help.text
+msgid "CHOOSE(Index; Value1; ...; Value30)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3151253.148.help.text
+#, fuzzy
+msgctxt "04060109.xhp#hd_id3151253.148.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060109.xhp#bm_id3151001.help.text
+msgid "<bookmark_value>HLOOKUP function</bookmark_value>"
+msgstr ""
+
+#: 04060109.xhp#hd_id3151001.151.help.text
+msgid "HLOOKUP"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3154661.153.help.text
+msgctxt "04060109.xhp#hd_id3154661.153.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060109.xhp#par_id3146070.154.help.text
+msgid "HLOOKUP(SearchCriteria; Array; Index; Sorted)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#bm_id3147321.help.text
+msgid "<bookmark_value>ROW function</bookmark_value>"
+msgstr ""
+
+#: 04060109.xhp#hd_id3147321.157.help.text
+msgctxt "04060109.xhp#hd_id3147321.157.help.text"
+msgid "ROW"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3158439.159.help.text
+msgctxt "04060109.xhp#hd_id3158439.159.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060109.xhp#par_id3154916.160.help.text
+msgid "ROW(Reference)"
+msgstr ""
+
+#: 04060109.xhp#par_id3156336.161.help.text
+msgid " <emph>Reference</emph> is a cell, an area, or the name of an area."
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3155609.162.help.text
+#, fuzzy
+msgctxt "04060109.xhp#hd_id3155609.162.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#par_id3153671.209.help.text
+msgid " <item type=\"input\">=ROW()</item> returns 3 if the formula was entered in row 3."
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#bm_id3145772.help.text
+msgid "<bookmark_value>ROWS function</bookmark_value>"
+msgstr ""
+
+#: 04060109.xhp#hd_id3145772.166.help.text
+msgid "ROWS"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3156051.168.help.text
+msgctxt "04060109.xhp#hd_id3156051.168.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060109.xhp#par_id3154357.169.help.text
+msgid "ROWS(Array)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id3155869.171.help.text
+#, fuzzy
+msgctxt "04060109.xhp#hd_id3155869.171.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060109.xhp#par_id3154725.212.help.text
+msgid " <item type=\"input\">=Rows(B5)</item> returns 1 because a cell only contains one row."
+msgstr ""
+
+#: 04060109.xhp#par_id3150102.172.help.text
+msgid " <item type=\"input\">=ROWS(A10:B12)</item> returns 3."
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#bm_id9959410.help.text
+msgid "<bookmark_value>HYPERLINK function</bookmark_value>"
+msgstr ""
+
+#: 04060109.xhp#par_idN11798.help.text
+msgid "HYPERLINK"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#par_idN1180A.help.text
+msgctxt "04060109.xhp#par_idN1180A.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060109.xhp#par_idN1180E.help.text
+msgid "HYPERLINK(\"URL\") or HYPERLINK(\"URL\"; \"CellText\")"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#par_id0907200912224576.help.text
+msgid "The number 0 is returned for empty cells and matrix elements."
+msgstr ""
+
+#: 04060109.xhp#par_idN11823.help.text
+#, fuzzy
+msgctxt "04060109.xhp#par_idN11823.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#bm_id7682424.help.text
+msgid "<bookmark_value>GETPIVOTDATA function</bookmark_value>"
+msgstr ""
+
+#: 04060109.xhp#hd_id3747062.help.text
+msgid "GETPIVOTDATA"
+msgstr ""
+
+#: 04060109.xhp#par_id3593859.help.text
+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 ""
+
+#: 04060109.xhp#hd_id9741508.help.text
+msgctxt "04060109.xhp#hd_id9741508.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060109.xhp#par_id909451.help.text
+msgid "Two different syntax definitions can be used:"
+msgstr ""
+
+#: 04060109.xhp#par_id1665089.help.text
+msgid "GETPIVOTDATA(TargetField; pivot table; [ Field 1; Item 1; ... ])"
+msgstr ""
+
+#: 04060109.xhp#par_id4997100.help.text
+msgid "GETPIVOTDATA(pivot table; Constraints)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id9464094.help.text
+msgid "First Syntax"
+msgstr ""
+
+#: 04060109.xhp#par_id9302346.help.text
+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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#par_id4809411.help.text
+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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#par_id7928708.help.text
+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 ""
+
+#: 04060109.xhp#par_id3864253.help.text
+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 ""
+
+#: 04060109.xhp#hd_id3144016.help.text
+msgid "Second Syntax"
+msgstr ""
+
+#: 04060109.xhp#par_id9937131.help.text
+msgid " <emph>pivot table</emph> has the same meaning as in the first syntax."
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#par_id4076357.help.text
+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 ""
+
+#: 04060109.xhp#par_id8231757.help.text
+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 ""
+
+#: 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 ""
+
+#: 12040201.xhp#tit.help.text
+msgctxt "12040201.xhp#tit.help.text"
+msgid "More"
+msgstr ""
+
+#: 12040201.xhp#hd_id3148492.1.help.text
+#, fuzzy
+msgctxt "12040201.xhp#hd_id3148492.1.help.text"
+msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 12040201.xhp#hd_id3150791.3.help.text
+msgctxt "12040201.xhp#hd_id3150791.3.help.text"
+msgid "Options"
+msgstr ""
+
+#: 12040201.xhp#hd_id3154138.5.help.text
+msgctxt "12040201.xhp#hd_id3154138.5.help.text"
+msgid "Case sensitive"
+msgstr ""
+
+#: 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 ""
+
+#: 12040201.xhp#hd_id3154908.7.help.text
+msgid "Range contains column labels"
+msgstr ""
+
+#: 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 ""
+
+#: 12040201.xhp#hd_id3155306.9.help.text
+msgctxt "12040201.xhp#hd_id3155306.9.help.text"
+msgid "Copy results to"
+msgstr ""
+
+#: 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 ""
+
+#: 12040201.xhp#hd_id3145272.11.help.text
+msgid "Regular expression"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 12040201.xhp#hd_id3149958.34.help.text
+msgid "No duplication"
+msgstr ""
+
+#: 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 ""
+
+#: 12040201.xhp#hd_id3154018.40.help.text
+msgid "Keep filter criteria"
+msgstr ""
+
+#: 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 ""
+
+#: 12040201.xhp#hd_id3149018.36.help.text
+msgid "Data range"
+msgstr ""
+
+#: 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 ""
+
+#: 02190000.xhp#tit.help.text
+msgid "Delete Manual Breaks"
+msgstr ""
+
+#: 02190000.xhp#hd_id3150541.1.help.text
+msgid "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Manual Breaks\">Delete Manual Break</link>"
+msgstr ""
+
+#: 02190000.xhp#par_id3154365.2.help.text
+msgid "<ahelp hid=\".\">Choose the type of manual break that you want to delete.</ahelp>"
+msgstr ""
+
+#: 06990000.xhp#tit.help.text
+msgid "Cell Contents"
+msgstr ""
+
+#: 06990000.xhp#hd_id3153087.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/06990000.xhp\" name=\"Cell Contents\">Cell Contents</link>"
+msgstr "<link href=\"text/smath/01/05040000.xhp\" name=\"Вирівнювання\">Вирівнювання</link>"
+
+#: 06990000.xhp#par_id3145674.2.help.text
+msgid "Opens a submenu with commands to calculate tables and activate AutoInput."
+msgstr ""
+
+#: 04060000.xhp#tit.help.text
+msgid "Function Wizard"
+msgstr ""
+
+#: 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 ""
+
+#: 04060000.xhp#hd_id3147426.1.help.text
+msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Function Wizard</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060000.xhp#hd_id3154490.3.help.text
+msgid "Functions Tab"
+msgstr ""
+
+#: 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 ""
+
+#: 04060000.xhp#hd_id3154730.36.help.text
+msgid "Category"
+msgstr "Категорія"
+
+#: 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 ""
+
+#: 04060000.xhp#hd_id3150749.6.help.text
+#, fuzzy
+msgctxt "04060000.xhp#hd_id3150749.6.help.text"
+msgid "Function"
+msgstr "Функції"
+
+#: 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 ""
+
+#: 04060000.xhp#hd_id3159264.8.help.text
+msgid "Array"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060000.xhp#par_id3152993.40.help.text
+msgid "The maximum size of an array range is 128 by 128 cells."
+msgstr ""
+
+#: 04060000.xhp#hd_id3150367.41.help.text
+msgid "Argument Input Fields"
+msgstr ""
+
+#: 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 ""
+
+#: 04060000.xhp#hd_id3149408.18.help.text
+msgid "Function Result"
+msgstr ""
+
+#: 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 ""
+
+#: 04060000.xhp#par_id3148700.23.help.text
+msgid "The required arguments are indicated by names in bold print."
+msgstr ""
+
+#: 04060000.xhp#hd_id3153064.22.help.text
+msgid "f(x) (depending on the selected function)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060000.xhp#hd_id3145076.25.help.text
+msgid "Argument/Parameter/Cell Reference (depending on the selected function)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060000.xhp#hd_id3154957.51.help.text
+msgctxt "04060000.xhp#hd_id3154957.51.help.text"
+msgid "Result"
+msgstr ""
+
+#: 04060000.xhp#par_id3150211.52.help.text
+msgid "Displays the calculation result or an error message."
+msgstr ""
+
+#: 04060000.xhp#hd_id3151304.43.help.text
+msgid "Formula"
+msgstr "Формула"
+
+#: 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 ""
+
+#: 04060000.xhp#hd_id3153249.45.help.text
+msgid "Back"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060000.xhp#hd_id3155762.54.help.text
+msgid "Next"
+msgstr "Далі"
+
+#: 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 ""
+
+#: 04060000.xhp#par_id3159262.57.help.text
+msgid "Double-click a function in the selection window to transfer it to the formula window."
+msgstr ""
+
+#: 04060000.xhp#hd_id3148745.58.help.text
+msgid "Cancel"
+msgstr ""
+
+#: 04060000.xhp#par_id3147402.59.help.text
+msgid "Closes the dialog without implementing the formula."
+msgstr ""
+
+#: 04060000.xhp#hd_id3150534.32.help.text
+msgid "OK"
+msgstr ""
+
+#: 04060000.xhp#par_id3153029.33.help.text
+msgid "Ends the <emph>Function Wizard</emph>, and transfers the formula to the selected cells."
+msgstr ""
+
+#: 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 ""
+
+#: 04060000.xhp#hd_id3147610.47.help.text
+msgid "Structure tab"
+msgstr ""
+
+#: 04060000.xhp#par_id3153122.48.help.text
+msgid "On this page, you can view the structure of the function."
+msgstr ""
+
+#: 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 ""
+
+#: 04060000.xhp#hd_id3149014.49.help.text
+msgid "Structure"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060118.xhp#tit.help.text
+msgctxt "04060118.xhp#tit.help.text"
+msgid "Financial Functions Part Three"
+msgstr ""
+
+#: 04060118.xhp#hd_id3146780.1.help.text
+msgctxt "04060118.xhp#hd_id3146780.1.help.text"
+msgid "Financial Functions Part Three"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3145112.71.help.text
+msgid "ODDFPRICE"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3153074.73.help.text
+msgctxt "04060118.xhp#hd_id3153074.73.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060118.xhp#par_id3146098.74.help.text
+msgid "ODDFPRICE(Settlement; Maturity; Issue; FirstCoupon; Rate; Yield; Redemption; Frequency; Basis)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060118.xhp#par_id3150393.78.help.text
+msgid "<emph>FirstCoupon</emph> is the first interest date of the security."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060118.xhp#bm_id3157871.help.text
+msgid "<bookmark_value>ODDFYIELD function</bookmark_value>"
+msgstr ""
+
+#: 04060118.xhp#hd_id3157871.87.help.text
+msgid "ODDFYIELD"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3150651.89.help.text
+msgctxt "04060118.xhp#hd_id3150651.89.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060118.xhp#par_id3152982.90.help.text
+msgid "ODDFYIELD(Settlement; Maturity; Issue; FirstCoupon; Rate; Price; Redemption; Frequency; Basis)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060118.xhp#par_id3148725.94.help.text
+msgid "<emph>FirstCoupon</emph> is the first interest period of the security."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060118.xhp#bm_id3153933.help.text
+msgid "<bookmark_value>ODDLPRICE function</bookmark_value>"
+msgstr ""
+
+#: 04060118.xhp#hd_id3153933.103.help.text
+msgid "ODDLPRICE"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3152784.105.help.text
+msgctxt "04060118.xhp#hd_id3152784.105.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060118.xhp#par_id3155262.106.help.text
+msgid "ODDLPRICE(Settlement; Maturity; LastInterest; Rate; Yield; Redemption; Frequency; Basis)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3153111.114.help.text
+#, fuzzy
+msgctxt "04060118.xhp#hd_id3153111.114.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060118.xhp#bm_id3153564.help.text
+msgid "<bookmark_value>ODDLYIELD function</bookmark_value>"
+msgstr ""
+
+#: 04060118.xhp#hd_id3153564.118.help.text
+msgid "ODDLYIELD"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3147366.120.help.text
+msgctxt "04060118.xhp#hd_id3147366.120.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060118.xhp#par_id3150018.121.help.text
+msgid "ODDLYIELD(Settlement; Maturity; LastInterest; Rate; Price; Redemption; Frequency; Basis)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3145303.129.help.text
+#, fuzzy
+msgctxt "04060118.xhp#hd_id3145303.129.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3148768.222.help.text
+msgid "VDB"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3155519.224.help.text
+msgctxt "04060118.xhp#hd_id3155519.224.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060118.xhp#par_id3149025.225.help.text
+msgid "VDB(Cost; Salvage; Life; S; End; Factor; Type)"
+msgstr ""
+
+#: 04060118.xhp#par_id3150692.226.help.text
+msgid "<emph>Cost</emph> is the initial value of an asset."
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#par_id3154954.228.help.text
+msgid "<emph>Life</emph> is the depreciation duration of the asset."
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#par_id3153221.230.help.text
+msgid "<emph>End</emph> is the end of the depreciation."
+msgstr ""
+
+#: 04060118.xhp#par_id3147536.231.help.text
+msgid "<emph>Factor</emph> (optional) is the depreciation factor. Factor = 2 is double rate depreciation."
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#par_idN10A0D.help.text
+msgctxt "04060118.xhp#par_idN10A0D.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr ""
+
+#: 04060118.xhp#hd_id3148429.233.help.text
+#, fuzzy
+msgctxt "04060118.xhp#hd_id3148429.233.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3147485.193.help.text
+msgid "XIRR"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#par_idN10E62.help.text
+msgid "If the payments take place at regular intervals, use the IRR function."
+msgstr ""
+
+#: 04060118.xhp#hd_id3146149.195.help.text
+msgctxt "04060118.xhp#hd_id3146149.195.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060118.xhp#par_id3149826.196.help.text
+msgid "XIRR(Values; Dates; Guess)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3145085.199.help.text
+#, fuzzy
+msgctxt "04060118.xhp#hd_id3145085.199.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060118.xhp#par_id3149273.200.help.text
+msgid "Calculation of the internal rate of return for the following five payments:"
+msgstr ""
+
+#: 04060118.xhp#par_id3155838.305.help.text
+msgctxt "04060118.xhp#par_id3155838.305.help.text"
+msgid "A"
+msgstr ""
+
+#: 04060118.xhp#par_id3152934.306.help.text
+msgctxt "04060118.xhp#par_id3152934.306.help.text"
+msgid "B"
+msgstr ""
+
+#: 04060118.xhp#par_id3154638.307.help.text
+msgctxt "04060118.xhp#par_id3154638.307.help.text"
+msgid "C"
+msgstr ""
+
+#: 04060118.xhp#par_id3147083.308.help.text
+msgctxt "04060118.xhp#par_id3147083.308.help.text"
+msgid "1"
+msgstr ""
+
+#: 04060118.xhp#par_id3151187.309.help.text
+msgid "2001-01-01"
+msgstr ""
+
+#: 04060118.xhp#par_id3145212.201.help.text
+msgid "-<item type=\"input\">10000</item>"
+msgstr ""
+
+#: 04060118.xhp#par_id3146856.202.help.text
+msgid "<item type=\"input\">Received</item>"
+msgstr ""
+
+#: 04060118.xhp#par_id3153277.310.help.text
+msgctxt "04060118.xhp#par_id3153277.310.help.text"
+msgid "2"
+msgstr ""
+
+#: 04060118.xhp#par_id3154052.203.help.text
+msgid "2001-01-02"
+msgstr ""
+
+#: 04060118.xhp#par_id3151297.204.help.text
+msgid "<item type=\"input\">2000</item>"
+msgstr ""
+
+#: 04060118.xhp#par_id3149985.205.help.text
+msgid "<item type=\"input\">Deposited</item>"
+msgstr ""
+
+#: 04060118.xhp#par_id3154744.311.help.text
+msgctxt "04060118.xhp#par_id3154744.311.help.text"
+msgid "3"
+msgstr ""
+
+#: 04060118.xhp#par_id3153151.206.help.text
+msgid "2001-03-15"
+msgstr ""
+
+#: 04060118.xhp#par_id3145657.207.help.text
+msgid "2500"
+msgstr ""
+
+#: 04060118.xhp#par_id3155101.312.help.text
+msgctxt "04060118.xhp#par_id3155101.312.help.text"
+msgid "4"
+msgstr ""
+
+#: 04060118.xhp#par_id3146894.208.help.text
+msgid "2001-05-12"
+msgstr ""
+
+#: 04060118.xhp#par_id3143231.209.help.text
+msgid "5000"
+msgstr ""
+
+#: 04060118.xhp#par_id3156012.313.help.text
+msgctxt "04060118.xhp#par_id3156012.313.help.text"
+msgid "5"
+msgstr ""
+
+#: 04060118.xhp#par_id3149758.210.help.text
+msgid "2001-08-10"
+msgstr ""
+
+#: 04060118.xhp#par_id3147495.211.help.text
+msgid "1000"
+msgstr ""
+
+#: 04060118.xhp#par_id3152793.212.help.text
+msgid "=XIRR(B1:B5; A1:A5; 0.1) returns 0.1828."
+msgstr ""
+
+#: 04060118.xhp#bm_id3149198.help.text
+msgid "<bookmark_value>XNPV function</bookmark_value>"
+msgstr ""
+
+#: 04060118.xhp#hd_id3149198.213.help.text
+msgid "XNPV"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#par_idN11138.help.text
+msgid "If the payments take place at regular intervals, use the NPV function."
+msgstr ""
+
+#: 04060118.xhp#hd_id3155323.215.help.text
+msgctxt "04060118.xhp#hd_id3155323.215.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060118.xhp#par_id3150117.216.help.text
+msgid "XNPV(Rate; Values; Dates)"
+msgstr ""
+
+#: 04060118.xhp#par_id3153100.217.help.text
+msgid "<emph>Rate</emph> is the internal rate of return for the payments."
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3148832.219.help.text
+#, fuzzy
+msgctxt "04060118.xhp#hd_id3148832.219.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060118.xhp#par_id3149910.221.help.text
+msgid "<item type=\"input\">=XNPV(0.06;B1:B5;A1:A5)</item> returns 323.02."
+msgstr ""
+
+#: 04060118.xhp#bm_id3148822.help.text
+msgid "<bookmark_value>calculating;rates of return</bookmark_value><bookmark_value>RRI function</bookmark_value>"
+msgstr ""
+
+#: 04060118.xhp#hd_id3148822.237.help.text
+msgid "RRI"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3148444.239.help.text
+msgctxt "04060118.xhp#hd_id3148444.239.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060118.xhp#par_id3148804.240.help.text
+msgid "RRI(P; PV; FV)"
+msgstr ""
+
+#: 04060118.xhp#par_id3154901.241.help.text
+msgid "<emph>P</emph> is the number of periods needed for calculating the interest rate."
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#par_id3149771.243.help.text
+msgid "<emph>FV</emph> determines what is desired as the cash value of the deposit."
+msgstr ""
+
+#: 04060118.xhp#hd_id3148941.244.help.text
+#, fuzzy
+msgctxt "04060118.xhp#hd_id3148941.244.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060118.xhp#par_id3150775.246.help.text
+msgid "<item type=\"input\">=RRI(4;7500;10000)</item> = 7.46 %"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3154267.249.help.text
+msgid "RATE"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3154272.251.help.text
+msgctxt "04060118.xhp#hd_id3154272.251.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060118.xhp#par_id3158423.252.help.text
+msgid "RATE(NPer; Pmt; PV; FV; Type; Guess)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#par_id3148925.254.help.text
+msgid "<emph>Pmt</emph> is the constant payment (annuity) paid during each period."
+msgstr ""
+
+#: 04060118.xhp#par_id3149160.255.help.text
+msgid "<emph>PV</emph> is the cash value in the sequence of payments."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060118.xhp#par_id3146949.258.help.text
+msgid "<emph>Guess</emph> (optional) determines the estimated value of the interest with iterative calculation."
+msgstr ""
+
+#: 04060118.xhp#par_idN10E2A.help.text
+msgctxt "04060118.xhp#par_idN10E2A.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr ""
+
+#: 04060118.xhp#hd_id3149791.259.help.text
+#, fuzzy
+msgctxt "04060118.xhp#hd_id3149791.259.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060118.xhp#par_id3155586.261.help.text
+msgid "<item type=\"input\">=RATE(3;10;900)</item> = -121% The interest rate is therefore 121%."
+msgstr ""
+
+#: 04060118.xhp#bm_id3149106.help.text
+msgid "<bookmark_value>INTRATE function</bookmark_value>"
+msgstr ""
+
+#: 04060118.xhp#hd_id3149106.60.help.text
+msgid "INTRATE"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3149974.62.help.text
+msgctxt "04060118.xhp#hd_id3149974.62.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060118.xhp#par_id3149800.63.help.text
+msgid "INTRATE(Settlement; Maturity; Investment; Redemption; Basis)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#par_id3148988.65.help.text
+msgid "<emph>Maturity</emph> is the date on which the security is sold."
+msgstr ""
+
+#: 04060118.xhp#par_id3154604.66.help.text
+msgid "<emph>Investment</emph> is the purchase price."
+msgstr ""
+
+#: 04060118.xhp#par_id3154337.67.help.text
+msgid "<emph>Redemption</emph> is the selling price."
+msgstr ""
+
+#: 04060118.xhp#hd_id3145380.68.help.text
+#, fuzzy
+msgctxt "04060118.xhp#hd_id3145380.68.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060118.xhp#par_id3151125.70.help.text
+msgid "=INTRATE(\"1990-01-15\"; \"2002-05-05\"; 1000000; 2000000; 3) returns 8.12%."
+msgstr ""
+
+#: 04060118.xhp#bm_id3148654.help.text
+msgid "<bookmark_value>COUPNCD function</bookmark_value>"
+msgstr ""
+
+#: 04060118.xhp#hd_id3148654.163.help.text
+msgid "COUPNCD"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3153317.165.help.text
+msgctxt "04060118.xhp#hd_id3153317.165.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060118.xhp#par_id3150423.166.help.text
+msgid "COUPNCD(Settlement; Maturity; Frequency; Basis)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3155424.170.help.text
+#, fuzzy
+msgctxt "04060118.xhp#hd_id3155424.170.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060118.xhp#par_id3159251.172.help.text
+msgid "=COUPNCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2001-05-15."
+msgstr ""
+
+#: 04060118.xhp#bm_id3143281.help.text
+msgid "<bookmark_value>COUPDAYS function</bookmark_value>"
+msgstr ""
+
+#: 04060118.xhp#hd_id3143281.143.help.text
+msgid "COUPDAYS"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3148685.145.help.text
+msgctxt "04060118.xhp#hd_id3148685.145.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060118.xhp#par_id3149585.146.help.text
+msgid "COUPDAYS(Settlement; Maturity; Frequency; Basis)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3153705.150.help.text
+#, fuzzy
+msgctxt "04060118.xhp#hd_id3153705.150.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060118.xhp#par_id3156338.152.help.text
+msgid "=COUPDAYS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 181."
+msgstr ""
+
+#: 04060118.xhp#bm_id3154832.help.text
+msgid "<bookmark_value>COUPDAYSNC function</bookmark_value>"
+msgstr ""
+
+#: 04060118.xhp#hd_id3154832.153.help.text
+msgid "COUPDAYSNC"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3151312.155.help.text
+msgctxt "04060118.xhp#hd_id3151312.155.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060118.xhp#par_id3155121.156.help.text
+msgid "COUPDAYSNC(Settlement; Maturity; Frequency; Basis)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060118.xhp#par_id3154620.159.help.text
+msgid "<emph>Frequency </emph>is number of interest payments per year (1, 2 or 4)."
+msgstr ""
+
+#: 04060118.xhp#hd_id3155604.160.help.text
+#, fuzzy
+msgctxt "04060118.xhp#hd_id3155604.160.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060118.xhp#par_id3156158.162.help.text
+msgid "=COUPDAYSNC(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 110."
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3150408.133.help.text
+msgid "COUPDAYBS"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3156142.135.help.text
+msgctxt "04060118.xhp#hd_id3156142.135.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060118.xhp#par_id3159083.136.help.text
+msgid "COUPDAYBS(Settlement; Maturity; Frequency; Basis)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3153880.140.help.text
+#, fuzzy
+msgctxt "04060118.xhp#hd_id3153880.140.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060118.xhp#par_id3151103.142.help.text
+msgid "=COUPDAYBS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 71."
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3152957.183.help.text
+msgid "COUPPCD"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3156269.185.help.text
+msgctxt "04060118.xhp#hd_id3156269.185.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060118.xhp#par_id3153790.186.help.text
+msgid "COUPPCD(Settlement; Maturity; Frequency; Basis)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3150826.190.help.text
+#, fuzzy
+msgctxt "04060118.xhp#hd_id3150826.190.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060118.xhp#par_id3149992.192.help.text
+msgid "=COUPPCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2000-15-11."
+msgstr ""
+
+#: 04060118.xhp#bm_id3150673.help.text
+msgid "<bookmark_value>COUPNUM function</bookmark_value><bookmark_value>number of coupons</bookmark_value>"
+msgstr ""
+
+#: 04060118.xhp#hd_id3150673.173.help.text
+msgid "COUPNUM"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3148400.175.help.text
+msgctxt "04060118.xhp#hd_id3148400.175.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060118.xhp#par_id3153200.176.help.text
+msgid "COUPNUM(Settlement; Maturity; Frequency; Basis)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3149319.180.help.text
+#, fuzzy
+msgctxt "04060118.xhp#hd_id3149319.180.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060118.xhp#par_id3150640.182.help.text
+msgid "=COUPNUM(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2."
+msgstr ""
+
+#: 04060118.xhp#bm_id3149339.help.text
+msgid "<bookmark_value>IPMT function</bookmark_value><bookmark_value>periodic amortizement rates</bookmark_value>"
+msgstr ""
+
+#: 04060118.xhp#hd_id3149339.263.help.text
+msgid "IPMT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3153266.265.help.text
+msgctxt "04060118.xhp#hd_id3153266.265.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060118.xhp#par_id3151283.266.help.text
+msgid "IPMT(Rate; Period; NPer; PV; FV; Type)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060118.xhp#par_id3147577.269.help.text
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 04060118.xhp#par_id3156211.270.help.text
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#par_id3154195.272.help.text
+msgid "<emph>Type</emph> is the due date for the periodic payments."
+msgstr ""
+
+#: 04060118.xhp#hd_id3150102.273.help.text
+#, fuzzy
+msgctxt "04060118.xhp#hd_id3150102.273.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3151205.277.help.text
+msgid "FV"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3155178.279.help.text
+msgctxt "04060118.xhp#hd_id3155178.279.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060118.xhp#par_id3145215.280.help.text
+msgid "FV(Rate; NPer; Pmt; PV; Type)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#par_id3156029.282.help.text
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 04060118.xhp#par_id3151322.283.help.text
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 04060118.xhp#par_id3145256.284.help.text
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#par_idN114D8.help.text
+msgctxt "04060118.xhp#par_idN114D8.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr ""
+
+#: 04060118.xhp#hd_id3146800.286.help.text
+#, fuzzy
+msgctxt "04060118.xhp#hd_id3146800.286.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060118.xhp#bm_id3155912.help.text
+msgid "<bookmark_value>FVSCHEDULE function</bookmark_value><bookmark_value>future values;varying interest rates</bookmark_value>"
+msgstr ""
+
+#: 04060118.xhp#hd_id3155912.51.help.text
+msgid "FVSCHEDULE"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3149571.53.help.text
+msgctxt "04060118.xhp#hd_id3149571.53.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060118.xhp#par_id3148891.54.help.text
+msgid "FVSCHEDULE(Principal; Schedule)"
+msgstr ""
+
+#: 04060118.xhp#par_id3148904.55.help.text
+msgid "<emph>Principal</emph> is the starting capital."
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3147288.57.help.text
+#, fuzzy
+msgctxt "04060118.xhp#hd_id3147288.57.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060118.xhp#par_id3156358.59.help.text
+msgid "<item type=\"input\">=FVSCHEDULE(1000;{0.03;0.04;0.05})</item> returns 1124.76."
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3156435.290.help.text
+msgid "NPER"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#hd_id3147216.292.help.text
+msgctxt "04060118.xhp#hd_id3147216.292.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060118.xhp#par_id3155934.293.help.text
+msgid "NPER(Rate; Pmt; PV; FV; Type)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060118.xhp#par_id3149042.295.help.text
+msgid "<emph>Pmt</emph> is the constant annuity paid in each period."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060118.xhp#par_idN1166C.help.text
+msgctxt "04060118.xhp#par_idN1166C.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr ""
+
+#: 04060118.xhp#hd_id3155795.299.help.text
+#, fuzzy
+msgctxt "04060118.xhp#hd_id3155795.299.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060184.xhp#tit.help.text
+msgid "Statistical Functions Part Four"
+msgstr ""
+
+#: 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 ""
+
+#: 04060184.xhp#bm_id3154511.help.text
+msgid "<bookmark_value>MAX function</bookmark_value>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3154511.2.help.text
+msgctxt "04060184.xhp#hd_id3154511.2.help.text"
+msgid "MAX"
+msgstr ""
+
+#: 04060184.xhp#par_id3153709.3.help.text
+msgid "<ahelp hid=\"HID_FUNC_MAX\">Returns the maximum value in a list of arguments.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060184.xhp#hd_id3154256.4.help.text
+msgctxt "04060184.xhp#hd_id3154256.4.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060184.xhp#par_id3147340.5.help.text
+msgid "MAX(Number1; Number2; ...Number30)"
+msgstr ""
+
+#: 04060184.xhp#par_id3149568.6.help.text
+msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges. "
+msgstr ""
+
+#: 04060184.xhp#hd_id3153963.7.help.text
+#, fuzzy
+msgctxt "04060184.xhp#hd_id3153963.7.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060184.xhp#par_id3148485.9.help.text
+msgid "<item type=\"input\">=MAX(A1:B100)</item> returns the largest value from the list."
+msgstr ""
+
+#: 04060184.xhp#bm_id3166426.help.text
+msgid "<bookmark_value>MAXA function</bookmark_value>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3166426.139.help.text
+msgid "MAXA"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060184.xhp#hd_id3150516.141.help.text
+msgctxt "04060184.xhp#hd_id3150516.141.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060184.xhp#par_id3166431.142.help.text
+msgid "MAXA(Value1; Value2; ... Value30)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060184.xhp#hd_id3156290.144.help.text
+#, fuzzy
+msgctxt "04060184.xhp#hd_id3156290.144.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060184.xhp#par_id3149404.146.help.text
+msgid "<item type=\"input\">=MAXA(A1:B100)</item> returns the largest value from the list."
+msgstr ""
+
+#: 04060184.xhp#bm_id3153820.help.text
+msgid "<bookmark_value>MEDIAN function</bookmark_value>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3153820.11.help.text
+msgid "MEDIAN"
+msgstr ""
+
+#: 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 ""
+
+#: 04060184.xhp#hd_id3148871.13.help.text
+msgctxt "04060184.xhp#hd_id3148871.13.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060184.xhp#par_id3155264.14.help.text
+msgid "MEDIAN(Number1; Number2; ...Number30)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060184.xhp#hd_id3144506.16.help.text
+#, fuzzy
+msgctxt "04060184.xhp#hd_id3144506.16.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060184.xhp#bm_id3154541.help.text
+msgid "<bookmark_value>MIN function</bookmark_value>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3154541.19.help.text
+msgctxt "04060184.xhp#hd_id3154541.19.help.text"
+msgid "MIN"
+msgstr ""
+
+#: 04060184.xhp#par_id3143222.20.help.text
+msgid "<ahelp hid=\"HID_FUNC_MIN\">Returns the minimum value in a list of arguments.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060184.xhp#hd_id3154651.21.help.text
+msgctxt "04060184.xhp#hd_id3154651.21.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060184.xhp#par_id3146964.22.help.text
+msgid "MIN(Number1; Number2; ...Number30)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060184.xhp#hd_id3155523.24.help.text
+#, fuzzy
+msgctxt "04060184.xhp#hd_id3155523.24.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060184.xhp#par_id3154734.25.help.text
+msgid "<item type=\"input\">=MIN(A1:B100)</item> returns the smallest value in the list."
+msgstr ""
+
+#: 04060184.xhp#bm_id3147504.help.text
+msgid "<bookmark_value>MINA function</bookmark_value>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3147504.148.help.text
+msgid "MINA"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060184.xhp#hd_id3150435.150.help.text
+msgctxt "04060184.xhp#hd_id3150435.150.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060184.xhp#par_id3153336.151.help.text
+msgid "MINA(Value1; Value2; ... Value30)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060184.xhp#hd_id3148743.153.help.text
+#, fuzzy
+msgctxt "04060184.xhp#hd_id3148743.153.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060184.xhp#par_id3147401.154.help.text
+msgid "<item type=\"input\">=MINA(1;\"Text\";20)</item> returns 0."
+msgstr ""
+
+#: 04060184.xhp#par_id3147295.155.help.text
+msgid "<item type=\"input\">=MINA(A1:B100)</item> returns the smallest value in the list."
+msgstr ""
+
+#: 04060184.xhp#bm_id3166465.help.text
+msgid "<bookmark_value>AVEDEV function</bookmark_value><bookmark_value>averages;statistical functions</bookmark_value>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3166465.27.help.text
+msgid "AVEDEV"
+msgstr ""
+
+#: 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 ""
+
+#: 04060184.xhp#hd_id3150038.29.help.text
+msgctxt "04060184.xhp#hd_id3150038.29.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060184.xhp#par_id3145636.30.help.text
+msgid "AVEDEV(Number1; Number2; ...Number30)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060184.xhp#hd_id3149725.32.help.text
+#, fuzzy
+msgctxt "04060184.xhp#hd_id3149725.32.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060184.xhp#par_id3153122.33.help.text
+msgid " <item type=\"input\">=AVEDEV(A1:A50)</item> "
+msgstr ""
+
+#: 04060184.xhp#bm_id3145824.help.text
+msgid "<bookmark_value>AVERAGE function</bookmark_value>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3145824.35.help.text
+msgctxt "04060184.xhp#hd_id3145824.35.help.text"
+msgid "AVERAGE"
+msgstr ""
+
+#: 04060184.xhp#par_id3150482.36.help.text
+msgid "<ahelp hid=\"HID_FUNC_MITTELWERT\">Returns the average of the arguments.</ahelp>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3146943.37.help.text
+msgctxt "04060184.xhp#hd_id3146943.37.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060184.xhp#par_id3154679.38.help.text
+msgid "AVERAGE(Number1; Number2; ...Number30)"
+msgstr ""
+
+#: 04060184.xhp#par_id3150741.39.help.text
+msgid "<emph>Number1; Number2;...Number 0</emph> are numerical values or ranges."
+msgstr ""
+
+#: 04060184.xhp#hd_id3153039.40.help.text
+#, fuzzy
+msgctxt "04060184.xhp#hd_id3153039.40.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060184.xhp#par_id3151232.41.help.text
+msgid "<item type=\"input\">=AVERAGE(A1:A50)</item>"
+msgstr ""
+
+#: 04060184.xhp#bm_id3148754.help.text
+msgid "<bookmark_value>AVERAGEA function</bookmark_value>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3148754.157.help.text
+msgid "AVERAGEA"
+msgstr ""
+
+#: 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 ""
+
+#: 04060184.xhp#hd_id3153326.159.help.text
+msgctxt "04060184.xhp#hd_id3153326.159.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060184.xhp#par_id3149734.160.help.text
+msgid "AVERAGEA(Value1; Value2; ... Value30)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060184.xhp#hd_id3149504.162.help.text
+#, fuzzy
+msgctxt "04060184.xhp#hd_id3149504.162.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060184.xhp#par_id3150864.163.help.text
+msgid "<item type=\"input\">=AVERAGEA(A1:A50)</item>"
+msgstr ""
+
+#: 04060184.xhp#bm_id3153933.help.text
+msgid "<bookmark_value>MODE function</bookmark_value><bookmark_value>most common value</bookmark_value>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3153933.43.help.text
+msgid "MODE"
+msgstr ""
+
+#: 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 ""
+
+#: 04060184.xhp#hd_id3153003.45.help.text
+msgctxt "04060184.xhp#hd_id3153003.45.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060184.xhp#par_id3155950.46.help.text
+msgid "MODE(Number1; Number2; ...Number30)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060184.xhp#hd_id3153571.48.help.text
+#, fuzzy
+msgctxt "04060184.xhp#hd_id3153571.48.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060184.xhp#par_id3153733.49.help.text
+msgid "<item type=\"input\">=MODE(A1:A50)</item>"
+msgstr ""
+
+#: 04060184.xhp#bm_id3149879.help.text
+msgid "<bookmark_value>NEGBINOMDIST function</bookmark_value><bookmark_value>negative binomial distribution</bookmark_value>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3149879.51.help.text
+msgid "NEGBINOMDIST"
+msgstr ""
+
+#: 04060184.xhp#par_id3155437.52.help.text
+msgid "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Returns the negative binomial distribution.</ahelp>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3145351.53.help.text
+msgctxt "04060184.xhp#hd_id3145351.53.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060184.xhp#par_id3150935.54.help.text
+msgid "NEGBINOMDIST(X; R; SP)"
+msgstr ""
+
+#: 04060184.xhp#par_id3153044.55.help.text
+msgid "<emph>X</emph> represents the value returned for unsuccessful tests."
+msgstr ""
+
+#: 04060184.xhp#par_id3151018.56.help.text
+msgid "<emph>R</emph> represents the value returned for successful tests."
+msgstr ""
+
+#: 04060184.xhp#par_id3148878.57.help.text
+msgid "<emph>SP</emph> is the probability of the success of an attempt."
+msgstr ""
+
+#: 04060184.xhp#hd_id3149539.58.help.text
+#, fuzzy
+msgctxt "04060184.xhp#hd_id3149539.58.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060184.xhp#par_id3148770.59.help.text
+msgid "<item type=\"input\">=NEGBINOMDIST(1;1;0.5)</item> returns 0.25."
+msgstr ""
+
+#: 04060184.xhp#bm_id3155516.help.text
+msgid "<bookmark_value>NORMINV function</bookmark_value><bookmark_value>normal distribution;inverse of</bookmark_value>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3155516.61.help.text
+msgid "NORMINV"
+msgstr ""
+
+#: 04060184.xhp#par_id3154634.62.help.text
+msgid "<ahelp hid=\"HID_FUNC_NORMINV\">Returns the inverse of the normal cumulative distribution.</ahelp>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3153227.63.help.text
+msgctxt "04060184.xhp#hd_id3153227.63.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060184.xhp#par_id3147534.64.help.text
+msgid "NORMINV(Number; Mean; StDev)"
+msgstr ""
+
+#: 04060184.xhp#par_id3154950.65.help.text
+msgid "<emph>Number</emph> represents the probability value used to determine the inverse normal distribution."
+msgstr ""
+
+#: 04060184.xhp#par_id3150690.66.help.text
+msgid "<emph>Mean</emph> represents the mean value in the normal distribution."
+msgstr ""
+
+#: 04060184.xhp#par_id3148594.67.help.text
+msgid "<emph>StDev</emph> represents the standard deviation of the normal distribution."
+msgstr ""
+
+#: 04060184.xhp#hd_id3155822.68.help.text
+#, fuzzy
+msgctxt "04060184.xhp#hd_id3155822.68.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060184.xhp#bm_id3153722.help.text
+msgid "<bookmark_value>NORMDIST function</bookmark_value><bookmark_value>density function</bookmark_value>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3153722.71.help.text
+msgid "NORMDIST"
+msgstr ""
+
+#: 04060184.xhp#par_id3150386.72.help.text
+msgid "<ahelp hid=\"HID_FUNC_NORMVERT\">Returns the density function or the normal cumulative distribution.</ahelp>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3083282.73.help.text
+msgctxt "04060184.xhp#hd_id3083282.73.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060184.xhp#par_id3150613.74.help.text
+msgid "NORMDIST(Number; Mean; StDev; C)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060184.xhp#par_id3146063.76.help.text
+msgid "<emph>Mean</emph> is the mean value of the distribution."
+msgstr ""
+
+#: 04060184.xhp#par_id3156295.77.help.text
+msgid "<emph>StDev</emph> is the standard deviation of the distribution."
+msgstr ""
+
+#: 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 ""
+
+#: 04060184.xhp#hd_id3152972.79.help.text
+#, fuzzy
+msgctxt "04060184.xhp#hd_id3152972.79.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060184.xhp#par_id3149283.80.help.text
+msgid "<item type=\"input\">=NORMDIST(70;63;5;0)</item> returns 0.03."
+msgstr ""
+
+#: 04060184.xhp#par_id3149448.81.help.text
+msgid "<item type=\"input\">=NORMDIST(70;63;5;1)</item> returns 0.92."
+msgstr ""
+
+#: 04060184.xhp#bm_id3152934.help.text
+msgid "<bookmark_value>PEARSON function</bookmark_value>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3152934.83.help.text
+msgid "PEARSON"
+msgstr ""
+
+#: 04060184.xhp#par_id3153216.84.help.text
+msgid "<ahelp hid=\"HID_FUNC_PEARSON\">Returns the Pearson product moment correlation coefficient r.</ahelp>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3147081.85.help.text
+msgctxt "04060184.xhp#hd_id3147081.85.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060184.xhp#par_id3156133.86.help.text
+msgid "PEARSON(Data1; Data2)"
+msgstr ""
+
+#: 04060184.xhp#par_id3151272.87.help.text
+msgid "<emph>Data1</emph> represents the array of the first data set."
+msgstr ""
+
+#: 04060184.xhp#par_id3153279.88.help.text
+msgid "<emph>Data2</emph> represents the array of the second data set."
+msgstr ""
+
+#: 04060184.xhp#hd_id3147567.89.help.text
+#, fuzzy
+msgctxt "04060184.xhp#hd_id3147567.89.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060184.xhp#bm_id3152806.help.text
+msgid "<bookmark_value>PHI function</bookmark_value>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3152806.92.help.text
+msgid "PHI"
+msgstr ""
+
+#: 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 ""
+
+#: 04060184.xhp#hd_id3154748.94.help.text
+msgctxt "04060184.xhp#hd_id3154748.94.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060184.xhp#par_id3149976.95.help.text
+msgid "PHI(Number)"
+msgstr ""
+
+#: 04060184.xhp#par_id3156108.96.help.text
+msgid "<emph>Number</emph> represents the value based on which the standard normal distribution is calculated."
+msgstr ""
+
+#: 04060184.xhp#hd_id3153621.97.help.text
+#, fuzzy
+msgctxt "04060184.xhp#hd_id3153621.97.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060184.xhp#par_id3155849.98.help.text
+msgid "<item type=\"input\">=PHI(2.25) </item>= 0.03"
+msgstr ""
+
+#: 04060184.xhp#par_id3143236.99.help.text
+msgid "<item type=\"input\">=PHI(-2.25)</item> = 0.03"
+msgstr ""
+
+#: 04060184.xhp#par_id3149286.100.help.text
+msgid "<item type=\"input\">=PHI(0)</item> = 0.4"
+msgstr ""
+
+#: 04060184.xhp#bm_id3153985.help.text
+msgid "<bookmark_value>POISSON function</bookmark_value>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3153985.102.help.text
+msgid "POISSON"
+msgstr ""
+
+#: 04060184.xhp#par_id3154298.103.help.text
+msgid "<ahelp hid=\"HID_FUNC_POISSON\">Returns the Poisson distribution.</ahelp>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3159183.104.help.text
+msgctxt "04060184.xhp#hd_id3159183.104.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060184.xhp#par_id3146093.105.help.text
+msgid "POISSON(Number; Mean; C)"
+msgstr ""
+
+#: 04060184.xhp#par_id3147253.106.help.text
+msgid "<emph>Number</emph> represents the value based on which the Poisson distribution is calculated."
+msgstr ""
+
+#: 04060184.xhp#par_id3151177.107.help.text
+msgid "<emph>Mean</emph> represents the middle value of the Poisson distribution."
+msgstr ""
+
+#: 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 ""
+
+#: 04060184.xhp#hd_id3159347.109.help.text
+#, fuzzy
+msgctxt "04060184.xhp#hd_id3159347.109.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060184.xhp#par_id3150113.110.help.text
+msgid "<item type=\"input\">=POISSON(60;50;1)</item> returns 0.93."
+msgstr ""
+
+#: 04060184.xhp#bm_id3153100.help.text
+msgid "<bookmark_value>PERCENTILE function</bookmark_value>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3153100.112.help.text
+msgid "PERCENTILE"
+msgstr ""
+
+#: 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 ""
+
+#: 04060184.xhp#hd_id3150531.114.help.text
+msgctxt "04060184.xhp#hd_id3150531.114.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060184.xhp#par_id3148813.115.help.text
+msgid "PERCENTILE(Data; Alpha)"
+msgstr ""
+
+#: 04060184.xhp#par_id3153054.116.help.text
+msgid "<emph>Data</emph> represents the array of data."
+msgstr ""
+
+#: 04060184.xhp#par_id3154212.117.help.text
+msgid "<emph>Alpha</emph> represents the percentage of the scale between 0 and 1."
+msgstr ""
+
+#: 04060184.xhp#hd_id3154290.118.help.text
+#, fuzzy
+msgctxt "04060184.xhp#hd_id3154290.118.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060184.xhp#bm_id3148807.help.text
+msgid "<bookmark_value>PERCENTRANK function</bookmark_value>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3148807.121.help.text
+msgid "PERCENTRANK"
+msgstr ""
+
+#: 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 ""
+
+#: 04060184.xhp#hd_id3147512.123.help.text
+msgctxt "04060184.xhp#hd_id3147512.123.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060184.xhp#par_id3147238.124.help.text
+msgid "PERCENTRANK(Data; Value)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060184.xhp#par_id3148475.126.help.text
+msgid "<emph>Value</emph> represents the value whose percentile rank must be determined."
+msgstr ""
+
+#: 04060184.xhp#hd_id3155364.127.help.text
+#, fuzzy
+msgctxt "04060184.xhp#hd_id3155364.127.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060184.xhp#bm_id3166442.help.text
+msgid "<bookmark_value>QUARTILE function</bookmark_value>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3166442.130.help.text
+msgid "QUARTILE"
+msgstr ""
+
+#: 04060184.xhp#par_id3146958.131.help.text
+msgid "<ahelp hid=\"HID_FUNC_QUARTILE\">Returns the quartile of a data set.</ahelp>"
+msgstr ""
+
+#: 04060184.xhp#hd_id3152942.132.help.text
+msgctxt "04060184.xhp#hd_id3152942.132.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060184.xhp#par_id3153684.133.help.text
+msgid "QUARTILE(Data; Type)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060184.xhp#hd_id3149103.136.help.text
+#, fuzzy
+msgctxt "04060184.xhp#hd_id3149103.136.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060182.xhp#tit.help.text
+msgid "Statistical Functions Part Two"
+msgstr ""
+
+#: 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 ""
+
+#: 04060182.xhp#bm_id3145388.help.text
+msgid "<bookmark_value>FINV function</bookmark_value> <bookmark_value>inverse F probability distribution</bookmark_value>"
+msgstr ""
+
+#: 04060182.xhp#hd_id3145388.2.help.text
+msgid "FINV"
+msgstr ""
+
+#: 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 ""
+
+#: 04060182.xhp#hd_id3153816.4.help.text
+msgctxt "04060182.xhp#hd_id3153816.4.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060182.xhp#par_id3153068.5.help.text
+msgid "FINV(Number; DegreesFreedom1; DegreesFreedom2)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060182.xhp#hd_id3156021.9.help.text
+#, fuzzy
+msgctxt "04060182.xhp#hd_id3156021.9.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060182.xhp#par_id3145073.10.help.text
+msgid " <item type=\"input\">=FINV(0.5;5;10)</item> yields 0.93."
+msgstr ""
+
+#: 04060182.xhp#bm_id3150888.help.text
+msgid "<bookmark_value>FISHER function</bookmark_value>"
+msgstr ""
+
+#: 04060182.xhp#hd_id3150888.12.help.text
+msgid "FISHER"
+msgstr ""
+
+#: 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 ""
+
+#: 04060182.xhp#hd_id3149898.14.help.text
+msgctxt "04060182.xhp#hd_id3149898.14.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060182.xhp#par_id3143220.15.help.text
+msgid "FISHER(Number)"
+msgstr ""
+
+#: 04060182.xhp#par_id3159228.16.help.text
+msgid " <emph>Number</emph> is the value to be transformed."
+msgstr ""
+
+#: 04060182.xhp#hd_id3154763.17.help.text
+#, fuzzy
+msgctxt "04060182.xhp#hd_id3154763.17.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060182.xhp#par_id3149383.18.help.text
+msgid " <item type=\"input\">=FISHER(0.5)</item> yields 0.55."
+msgstr ""
+
+#: 04060182.xhp#bm_id3155758.help.text
+msgid "<bookmark_value>FISHERINV function</bookmark_value> <bookmark_value>inverse of Fisher transformation</bookmark_value>"
+msgstr ""
+
+#: 04060182.xhp#hd_id3155758.20.help.text
+msgid "FISHERINV"
+msgstr ""
+
+#: 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 ""
+
+#: 04060182.xhp#hd_id3155755.22.help.text
+msgctxt "04060182.xhp#hd_id3155755.22.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060182.xhp#par_id3146108.23.help.text
+msgid "FISHERINV(Number)"
+msgstr ""
+
+#: 04060182.xhp#par_id3145115.24.help.text
+msgid " <emph>Number</emph> is the value that is to undergo reverse-transformation."
+msgstr ""
+
+#: 04060182.xhp#hd_id3155744.25.help.text
+#, fuzzy
+msgctxt "04060182.xhp#hd_id3155744.25.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060182.xhp#par_id3150432.26.help.text
+msgid " <item type=\"input\">=FISHERINV(0.5)</item> yields 0.46."
+msgstr ""
+
+#: 04060182.xhp#bm_id3151390.help.text
+msgid "<bookmark_value>FTEST function</bookmark_value>"
+msgstr ""
+
+#: 04060182.xhp#hd_id3151390.28.help.text
+msgid "FTEST"
+msgstr ""
+
+#: 04060182.xhp#par_id3150534.29.help.text
+msgid "<ahelp hid=\"HID_FUNC_FTEST\">Returns the result of an F test.</ahelp>"
+msgstr ""
+
+#: 04060182.xhp#hd_id3166466.30.help.text
+msgctxt "04060182.xhp#hd_id3166466.30.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060182.xhp#par_id3153024.31.help.text
+msgid "FTEST(Data1; Data2)"
+msgstr ""
+
+#: 04060182.xhp#par_id3150032.32.help.text
+msgid " <emph>Data1</emph> is the first record array."
+msgstr ""
+
+#: 04060182.xhp#par_id3153018.33.help.text
+msgid " <emph>Data2</emph> is the second record array."
+msgstr ""
+
+#: 04060182.xhp#hd_id3153123.34.help.text
+#, fuzzy
+msgctxt "04060182.xhp#hd_id3153123.34.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060182.xhp#bm_id3150372.help.text
+msgid "<bookmark_value>FDIST function</bookmark_value>"
+msgstr ""
+
+#: 04060182.xhp#hd_id3150372.37.help.text
+msgid "FDIST"
+msgstr ""
+
+#: 04060182.xhp#par_id3152981.38.help.text
+msgid "<ahelp hid=\"HID_FUNC_FVERT\">Calculates the values of an F distribution.</ahelp>"
+msgstr ""
+
+#: 04060182.xhp#hd_id3150484.39.help.text
+msgctxt "04060182.xhp#hd_id3150484.39.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060182.xhp#par_id3145826.40.help.text
+msgid "FDIST(Number; DegreesFreedom1; DegreesFreedom2)"
+msgstr ""
+
+#: 04060182.xhp#par_id3150461.41.help.text
+msgid " <emph>Number</emph> is the value for which the F distribution is to be calculated."
+msgstr ""
+
+#: 04060182.xhp#par_id3150029.42.help.text
+msgid " <emph>degreesFreedom1</emph> is the degrees of freedom in the numerator in the F distribution."
+msgstr ""
+
+#: 04060182.xhp#par_id3146877.43.help.text
+msgid " <emph>degreesFreedom2</emph> is the degrees of freedom in the denominator in the F distribution."
+msgstr ""
+
+#: 04060182.xhp#hd_id3147423.44.help.text
+#, fuzzy
+msgctxt "04060182.xhp#hd_id3147423.44.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060182.xhp#par_id3150696.45.help.text
+msgid " <item type=\"input\">=FDIST(0.8;8;12)</item> yields 0.61."
+msgstr ""
+
+#: 04060182.xhp#bm_id0119200903223192.help.text
+msgid "<bookmark_value>GAMMA function</bookmark_value>"
+msgstr ""
+
+#: 04060182.xhp#hd_id0119200903205393.help.text
+msgid "GAMMA"
+msgstr ""
+
+#: 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 ""
+
+#: 04060182.xhp#hd_id0119200903271613.help.text
+msgctxt "04060182.xhp#hd_id0119200903271613.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060182.xhp#par_id0119200903271614.help.text
+msgid " <emph>Number</emph> is the number for which the Gamma function value is to be calculated."
+msgstr ""
+
+#: 04060182.xhp#bm_id3154841.help.text
+msgid "<bookmark_value>GAMMAINV function</bookmark_value>"
+msgstr ""
+
+#: 04060182.xhp#hd_id3154841.47.help.text
+msgid "GAMMAINV"
+msgstr ""
+
+#: 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 ""
+
+#: 04060182.xhp#hd_id3149949.49.help.text
+msgctxt "04060182.xhp#hd_id3149949.49.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060182.xhp#par_id3155828.50.help.text
+msgid "GAMMAINV(Number; Alpha; Beta)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060182.xhp#par_id3154561.53.help.text
+msgid " <emph>Beta</emph> is the parameter Beta of the Gamma distribution."
+msgstr ""
+
+#: 04060182.xhp#hd_id3148734.54.help.text
+#, fuzzy
+msgctxt "04060182.xhp#hd_id3148734.54.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060182.xhp#par_id3153331.55.help.text
+msgid " <item type=\"input\">=GAMMAINV(0.8;1;1)</item> yields 1.61."
+msgstr ""
+
+#: 04060182.xhp#bm_id3154806.help.text
+msgid "<bookmark_value>GAMMALN function</bookmark_value> <bookmark_value>natural logarithm of Gamma function</bookmark_value>"
+msgstr ""
+
+#: 04060182.xhp#hd_id3154806.57.help.text
+msgid "GAMMALN"
+msgstr ""
+
+#: 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 ""
+
+#: 04060182.xhp#hd_id3152999.59.help.text
+msgctxt "04060182.xhp#hd_id3152999.59.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060182.xhp#par_id3153112.60.help.text
+msgid "GAMMALN(Number)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060182.xhp#hd_id3153568.62.help.text
+#, fuzzy
+msgctxt "04060182.xhp#hd_id3153568.62.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060182.xhp#par_id3153730.63.help.text
+msgid " <item type=\"input\">=GAMMALN(2)</item> yields 0."
+msgstr ""
+
+#: 04060182.xhp#bm_id3150132.help.text
+msgid "<bookmark_value>GAMMADIST function</bookmark_value>"
+msgstr ""
+
+#: 04060182.xhp#hd_id3150132.65.help.text
+msgid "GAMMADIST"
+msgstr ""
+
+#: 04060182.xhp#par_id3155931.66.help.text
+msgid "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Returns the values of a Gamma distribution.</ahelp>"
+msgstr ""
+
+#: 04060182.xhp#par_id0119200903333675.help.text
+msgid "The inverse function is GAMMAINV."
+msgstr ""
+
+#: 04060182.xhp#hd_id3147373.67.help.text
+msgctxt "04060182.xhp#hd_id3147373.67.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060182.xhp#par_id3155436.68.help.text
+msgid "GAMMADIST(Number; Alpha; Beta; C)"
+msgstr ""
+
+#: 04060182.xhp#par_id3150571.69.help.text
+msgid " <emph>Number</emph> is the value for which the Gamma distribution is to be calculated."
+msgstr ""
+
+#: 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 ""
+
+#: 04060182.xhp#par_id3151015.71.help.text
+msgid " <emph>Beta</emph> is the parameter Beta of the Gamma distribution"
+msgstr ""
+
+#: 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 ""
+
+#: 04060182.xhp#hd_id3149535.73.help.text
+#, fuzzy
+msgctxt "04060182.xhp#hd_id3149535.73.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060182.xhp#par_id3145354.74.help.text
+msgid " <item type=\"input\">=GAMMADIST(2;1;1;1)</item> yields 0.86."
+msgstr ""
+
+#: 04060182.xhp#bm_id3150272.help.text
+msgid "<bookmark_value>GAUSS function</bookmark_value> <bookmark_value>normal distribution; standard</bookmark_value>"
+msgstr ""
+
+#: 04060182.xhp#hd_id3150272.76.help.text
+msgid "GAUSS"
+msgstr ""
+
+#: 04060182.xhp#par_id3149030.77.help.text
+msgid "<ahelp hid=\"HID_FUNC_GAUSS\">Returns the standard normal cumulative distribution.</ahelp>"
+msgstr ""
+
+#: 04060182.xhp#par_id2059694.help.text
+msgctxt "04060182.xhp#par_id2059694.help.text"
+msgid "It is GAUSS(x)=NORMSDIST(x)-0.5"
+msgstr ""
+
+#: 04060182.xhp#hd_id3153551.78.help.text
+msgctxt "04060182.xhp#hd_id3153551.78.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060182.xhp#par_id3155368.79.help.text
+msgid "GAUSS(Number)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060182.xhp#hd_id3150691.81.help.text
+#, fuzzy
+msgctxt "04060182.xhp#hd_id3150691.81.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060182.xhp#par_id3154867.82.help.text
+msgid " <item type=\"input\">=GAUSS(0.19)</item> = 0.08"
+msgstr ""
+
+#: 04060182.xhp#par_id3148594.83.help.text
+msgid " <item type=\"input\">=GAUSS(0.0375)</item> = 0.01"
+msgstr ""
+
+#: 04060182.xhp#bm_id3148425.help.text
+msgid "<bookmark_value>GEOMEAN function</bookmark_value> <bookmark_value>means;geometric</bookmark_value>"
+msgstr ""
+
+#: 04060182.xhp#hd_id3148425.85.help.text
+msgid "GEOMEAN"
+msgstr ""
+
+#: 04060182.xhp#par_id3156257.86.help.text
+msgid "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Returns the geometric mean of a sample.</ahelp>"
+msgstr ""
+
+#: 04060182.xhp#hd_id3147167.87.help.text
+msgctxt "04060182.xhp#hd_id3147167.87.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060182.xhp#par_id3153720.88.help.text
+msgid "GEOMEAN(Number1; Number2; ...Number30)"
+msgstr ""
+
+#: 04060182.xhp#par_id3152585.89.help.text
+msgid " <emph>Number1, Number2,...Number30</emph> are numeric arguments or ranges that represent a random sample."
+msgstr ""
+
+#: 04060182.xhp#hd_id3146146.90.help.text
+#, fuzzy
+msgctxt "04060182.xhp#hd_id3146146.90.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060182.xhp#hd_id3152966.94.help.text
+msgid "TRIMMEAN"
+msgstr ""
+
+#: 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 ""
+
+#: 04060182.xhp#hd_id3149281.96.help.text
+msgctxt "04060182.xhp#hd_id3149281.96.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060182.xhp#par_id3154821.97.help.text
+msgid "TRIMMEAN(Data; Alpha)"
+msgstr ""
+
+#: 04060182.xhp#par_id3155834.98.help.text
+msgid " <emph>Data</emph> is the array of data in the sample."
+msgstr ""
+
+#: 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 ""
+
+#: 04060182.xhp#hd_id3151180.100.help.text
+#, fuzzy
+msgctxt "04060182.xhp#hd_id3151180.100.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060182.xhp#bm_id3153216.help.text
+msgid "<bookmark_value>ZTEST function</bookmark_value>"
+msgstr ""
+
+#: 04060182.xhp#hd_id3153216.103.help.text
+msgid "ZTEST"
+msgstr ""
+
+#: 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 ""
+
+#: 04060182.xhp#hd_id3150872.105.help.text
+msgctxt "04060182.xhp#hd_id3150872.105.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060182.xhp#par_id3153274.106.help.text
+msgid "ZTEST(Data; mu; Sigma)"
+msgstr ""
+
+#: 04060182.xhp#par_id3156109.107.help.text
+msgid " <emph>Data</emph> is the given sample, drawn from a normally distributed population."
+msgstr ""
+
+#: 04060182.xhp#par_id3149977.108.help.text
+msgid " <emph>mu</emph> is the known mean of the population."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060182.xhp#bm_id3153623.help.text
+msgid "<bookmark_value>HARMEAN function</bookmark_value> <bookmark_value>means;harmonic</bookmark_value>"
+msgstr ""
+
+#: 04060182.xhp#hd_id3153623.113.help.text
+msgid "HARMEAN"
+msgstr ""
+
+#: 04060182.xhp#par_id3155102.114.help.text
+msgid "<ahelp hid=\"HID_FUNC_HARMITTEL\">Returns the harmonic mean of a data set.</ahelp>"
+msgstr ""
+
+#: 04060182.xhp#hd_id3146900.115.help.text
+msgctxt "04060182.xhp#hd_id3146900.115.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060182.xhp#par_id3149287.116.help.text
+msgid "HARMEAN(Number1; Number2; ...Number30)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060182.xhp#hd_id3159179.118.help.text
+#, fuzzy
+msgctxt "04060182.xhp#hd_id3159179.118.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060182.xhp#bm_id3152801.help.text
+msgid "<bookmark_value>HYPGEOMDIST function</bookmark_value> <bookmark_value>sampling without replacement</bookmark_value>"
+msgstr ""
+
+#: 04060182.xhp#hd_id3152801.122.help.text
+msgid "HYPGEOMDIST"
+msgstr ""
+
+#: 04060182.xhp#par_id3159341.123.help.text
+msgid "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Returns the hypergeometric distribution.</ahelp>"
+msgstr ""
+
+#: 04060182.xhp#hd_id3154697.124.help.text
+msgctxt "04060182.xhp#hd_id3154697.124.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060182.xhp#par_id3155388.125.help.text
+msgid "HYPGEOMDIST(X; NSample; Successes; NPopulation)"
+msgstr ""
+
+#: 04060182.xhp#par_id3154933.126.help.text
+msgid " <emph>X</emph> is the number of results achieved in the random sample."
+msgstr ""
+
+#: 04060182.xhp#par_id3153106.127.help.text
+msgid " <emph>NSample</emph> is the size of the random sample."
+msgstr ""
+
+#: 04060182.xhp#par_id3146992.128.help.text
+msgid " <emph>Successes</emph> is the number of possible results in the total population."
+msgstr ""
+
+#: 04060182.xhp#par_id3148826.129.help.text
+msgid " <emph>NPopulation </emph>is the size of the total population."
+msgstr ""
+
+#: 04060182.xhp#hd_id3150529.130.help.text
+#, fuzzy
+msgctxt "04060182.xhp#hd_id3150529.130.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: func_timevalue.xhp#tit.help.text
+msgid "TIMEVALUE "
+msgstr ""
+
+#: func_timevalue.xhp#bm_id3146755.help.text
+msgid "<bookmark_value>TIMEVALUE function</bookmark_value>"
+msgstr ""
+
+#: func_timevalue.xhp#hd_id3146755.160.help.text
+msgid "<variable id=\"timevalue\"><link href=\"text/scalc/01/func_timevalue.xhp\">TIMEVALUE</link></variable>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: func_timevalue.xhp#hd_id3150810.163.help.text
+msgctxt "func_timevalue.xhp#hd_id3150810.163.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: func_timevalue.xhp#par_id3150823.164.help.text
+msgid "TIMEVALUE(\"Text\")"
+msgstr ""
+
+#: 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 ""
+
+#: func_timevalue.xhp#hd_id3146815.166.help.text
+#, fuzzy
+msgctxt "func_timevalue.xhp#hd_id3146815.166.help.text"
+msgid "Examples"
+msgstr "Приклади:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 05050000.xhp#tit.help.text
+msgctxt "05050000.xhp#tit.help.text"
+msgid "Sheet"
+msgstr ""
+
+#: 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 ""
+
+#: 05050000.xhp#hd_id3155923.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/05050000.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 05050000.xhp#par_id3154758.2.help.text
+msgid "<ahelp hid=\".\">Sets the sheet name and hides or shows selected sheets.</ahelp>"
+msgstr ""
+
+#: 05050000.xhp#hd_id3156280.3.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/05050100.xhp\" name=\"Rename\">Rename</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 05050000.xhp#hd_id3145787.4.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\">Show</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 05050000.xhp#par_idN10656.help.text
+msgid "Right-To-Left"
+msgstr "Справа наліво"
+
+#: 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 ""
+
+#: func_weeknum.xhp#tit.help.text
+msgid "WEEKNUM"
+msgstr ""
+
+#: func_weeknum.xhp#bm_id3159161.help.text
+msgid "<bookmark_value>WEEKNUM function</bookmark_value>"
+msgstr ""
+
+#: func_weeknum.xhp#hd_id3159161.54.help.text
+msgid "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link></variable>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: func_weeknum.xhp#hd_id3153055.56.help.text
+msgctxt "func_weeknum.xhp#hd_id3153055.56.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: func_weeknum.xhp#par_id3147236.57.help.text
+msgid "WEEKNUM(Number; Mode)"
+msgstr ""
+
+#: func_weeknum.xhp#par_id3147511.58.help.text
+msgid "<emph>Number</emph> is the internal date number."
+msgstr ""
+
+#: func_weeknum.xhp#par_id3154269.59.help.text
+msgid "<emph>Mode</emph> sets the start of the week and the calculation type."
+msgstr ""
+
+#: func_weeknum.xhp#par_id3148930.60.help.text
+msgid "1 = Sunday"
+msgstr ""
+
+#: func_weeknum.xhp#par_id3154280.61.help.text
+msgid "2 = Monday"
+msgstr ""
+
+#: func_weeknum.xhp#hd_id3146948.62.help.text
+#, fuzzy
+msgctxt "func_weeknum.xhp#hd_id3146948.62.help.text"
+msgid "Examples"
+msgstr "Приклади:"
+
+#: func_weeknum.xhp#par_id3150704.65.help.text
+msgid "=WEEKNUM(\"1995-01-01\";1) returns 1"
+msgstr ""
+
+#: 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 ""
+
+#: 06080000.xhp#tit.help.text
+msgid "Recalculate"
+msgstr ""
+
+#: 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 ""
+
+#: 06080000.xhp#hd_id3157909.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/06080000.xhp\" name=\"Recalculate\">Recalculate</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 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 ""
+
+#: 06080000.xhp#par_id3150793.5.help.text
+msgid "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
+msgstr ""
+
+#: 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 ""
+
+#: format_graphic.xhp#tit.help.text
+msgid "Graphic"
+msgstr ""
+
+#: format_graphic.xhp#par_idN10548.help.text
+msgid "<link href=\"text/scalc/01/format_graphic.xhp\">Graphic</link>"
+msgstr ""
+
+#: format_graphic.xhp#par_idN10558.help.text
+msgid "<ahelp hid=\".\">Opens a submenu to edit the properties of the selected object.</ahelp>"
+msgstr ""
+
+#: format_graphic.xhp#par_id1650440.help.text
+msgid "<link href=\"text/shared/01/05990000.xhp\">Define Text Attributes</link>"
+msgstr ""
+
+#: format_graphic.xhp#par_id363475.help.text
+msgid "Sets the layout and anchoring properties for text in the selected drawing or text object."
+msgstr ""
+
+#: format_graphic.xhp#par_id9746696.help.text
+msgid "Points"
+msgstr ""
+
+#: 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 ""
+
+#: 04060199.xhp#tit.help.text
+msgctxt "04060199.xhp#tit.help.text"
+msgid "Operators in $[officename] Calc"
+msgstr ""
+
+#: 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 ""
+
+#: 04060199.xhp#hd_id3156445.1.help.text
+msgctxt "04060199.xhp#hd_id3156445.1.help.text"
+msgid "Operators in $[officename] Calc"
+msgstr ""
+
+#: 04060199.xhp#par_id3155812.2.help.text
+msgid "You can use the following operators in $[officename] Calc:"
+msgstr ""
+
+#: 04060199.xhp#hd_id3153066.3.help.text
+msgid "Arithmetical Operators"
+msgstr ""
+
+#: 04060199.xhp#par_id3148601.4.help.text
+msgid "These operators return numerical results."
+msgstr ""
+
+#: 04060199.xhp#par_id3144768.5.help.text
+msgctxt "04060199.xhp#par_id3144768.5.help.text"
+msgid "Operator"
+msgstr ""
+
+#: 04060199.xhp#par_id3157982.6.help.text
+msgctxt "04060199.xhp#par_id3157982.6.help.text"
+msgid "Name"
+msgstr ""
+
+#: 04060199.xhp#par_id3159096.7.help.text
+#, fuzzy
+msgctxt "04060199.xhp#par_id3159096.7.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060199.xhp#par_id3149126.8.help.text
+msgid "+ (Plus)"
+msgstr ""
+
+#: 04060199.xhp#par_id3150892.9.help.text
+#, fuzzy
+msgid "Addition"
+msgstr ""
+"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Додавання\n"
+"#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Складання"
+
+#: 04060199.xhp#par_id3153247.10.help.text
+msgid "1+1"
+msgstr ""
+
+#: 04060199.xhp#par_id3159204.11.help.text
+msgctxt "04060199.xhp#par_id3159204.11.help.text"
+msgid "- (Minus)"
+msgstr ""
+
+#: 04060199.xhp#par_id3145362.12.help.text
+msgid "Subtraction"
+msgstr "Віднімання"
+
+#: 04060199.xhp#par_id3153554.13.help.text
+msgid "2-1"
+msgstr ""
+
+#: 04060199.xhp#par_id3153808.14.help.text
+msgctxt "04060199.xhp#par_id3153808.14.help.text"
+msgid "- (Minus)"
+msgstr ""
+
+#: 04060199.xhp#par_id3151193.15.help.text
+msgid "Negation"
+msgstr ""
+
+#: 04060199.xhp#par_id3154712.16.help.text
+msgctxt "04060199.xhp#par_id3154712.16.help.text"
+msgid "-5"
+msgstr ""
+
+#: 04060199.xhp#par_id3149873.17.help.text
+msgid "* (asterisk)"
+msgstr ""
+
+#: 04060199.xhp#par_id3147504.18.help.text
+msgid "Multiplication"
+msgstr "Множення"
+
+#: 04060199.xhp#par_id3149055.19.help.text
+msgid "2*2"
+msgstr ""
+
+#: 04060199.xhp#par_id3151341.20.help.text
+msgid "/ (Slash)"
+msgstr ""
+
+#: 04060199.xhp#par_id3159260.21.help.text
+msgid "Division"
+msgstr "Розділення"
+
+#: 04060199.xhp#par_id3153027.22.help.text
+msgid "9/3"
+msgstr ""
+
+#: 04060199.xhp#par_id3156396.23.help.text
+msgid "% (Percent)"
+msgstr ""
+
+#: 04060199.xhp#par_id3150372.24.help.text
+msgid "Percent"
+msgstr "Відсотки"
+
+#: 04060199.xhp#par_id3145632.25.help.text
+msgid "15%"
+msgstr ""
+
+#: 04060199.xhp#par_id3149722.26.help.text
+msgid "^ (Caret)"
+msgstr ""
+
+#: 04060199.xhp#par_id3159127.27.help.text
+msgid "Exponentiation"
+msgstr ""
+
+#: 04060199.xhp#par_id3157873.28.help.text
+msgid "3^2"
+msgstr ""
+
+#: 04060199.xhp#hd_id3152981.29.help.text
+msgid "Comparative operators"
+msgstr ""
+
+#: 04060199.xhp#par_id3157902.30.help.text
+msgid "These operators return either true or false."
+msgstr ""
+
+#: 04060199.xhp#par_id3149889.31.help.text
+msgctxt "04060199.xhp#par_id3149889.31.help.text"
+msgid "Operator"
+msgstr ""
+
+#: 04060199.xhp#par_id3150743.32.help.text
+msgctxt "04060199.xhp#par_id3150743.32.help.text"
+msgid "Name"
+msgstr ""
+
+#: 04060199.xhp#par_id3146877.33.help.text
+#, fuzzy
+msgctxt "04060199.xhp#par_id3146877.33.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060199.xhp#par_id3148888.34.help.text
+msgid "= (equal sign)"
+msgstr ""
+
+#: 04060199.xhp#par_id3154845.35.help.text
+msgid "Equal"
+msgstr "Equal"
+
+#: 04060199.xhp#par_id3154546.36.help.text
+msgid "A1=B1"
+msgstr ""
+
+#: 04060199.xhp#par_id3154807.37.help.text
+#, fuzzy
+msgid "> (Greater than)"
+msgstr "Більше"
+
+#: 04060199.xhp#par_id3148580.38.help.text
+msgid "Greater than"
+msgstr "Більше"
+
+#: 04060199.xhp#par_id3145138.39.help.text
+msgid "A1>B1"
+msgstr ""
+
+#: 04060199.xhp#par_id3149507.40.help.text
+msgid "< (Less than)"
+msgstr ""
+
+#: 04060199.xhp#par_id3150145.41.help.text
+msgid "Less than"
+msgstr "Менше"
+
+#: 04060199.xhp#par_id3150901.42.help.text
+msgid "A1<B1"
+msgstr ""
+
+#: 04060199.xhp#par_id3153078.43.help.text
+#, fuzzy
+msgid ">= (Greater than or equal to)"
+msgstr "Більше або рівне"
+
+#: 04060199.xhp#par_id3150866.44.help.text
+msgid "Greater than or equal to"
+msgstr "Більше або рівне"
+
+#: 04060199.xhp#par_id3153111.45.help.text
+msgid "A1>=B1"
+msgstr ""
+
+#: 04060199.xhp#par_id3153004.46.help.text
+#, fuzzy
+msgid "<= (Less than or equal to)"
+msgstr "Менше або рівне"
+
+#: 04060199.xhp#par_id3150335.47.help.text
+msgid "Less than or equal to"
+msgstr "Менше або рівне"
+
+#: 04060199.xhp#par_id3148760.48.help.text
+msgid "A1<=B1"
+msgstr ""
+
+#: 04060199.xhp#par_id3157994.49.help.text
+msgid "<> (Inequality)"
+msgstr ""
+
+#: 04060199.xhp#par_id3150019.50.help.text
+msgid "Inequality"
+msgstr ""
+
+#: 04060199.xhp#par_id3149878.51.help.text
+msgid "A1<>B1"
+msgstr ""
+
+#: 04060199.xhp#hd_id3145241.52.help.text
+msgid "Text operators"
+msgstr ""
+
+#: 04060199.xhp#par_id3155438.53.help.text
+msgid "The operator combines separate texts into one text."
+msgstr ""
+
+#: 04060199.xhp#par_id3150566.54.help.text
+msgctxt "04060199.xhp#par_id3150566.54.help.text"
+msgid "Operator"
+msgstr ""
+
+#: 04060199.xhp#par_id3153048.55.help.text
+msgctxt "04060199.xhp#par_id3153048.55.help.text"
+msgid "Name"
+msgstr ""
+
+#: 04060199.xhp#par_id3149001.56.help.text
+#, fuzzy
+msgctxt "04060199.xhp#par_id3149001.56.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060199.xhp#par_id3148769.57.help.text
+msgid "& (And)"
+msgstr ""
+
+#: 04060199.xhp#bm_id3157975.help.text
+msgid "<bookmark_value>text concatenation AND</bookmark_value>"
+msgstr ""
+
+#: 04060199.xhp#par_id3157975.58.help.text
+msgid "text concatenation AND"
+msgstr ""
+
+#: 04060199.xhp#par_id3157993.59.help.text
+msgid "\"Sun\" & \"day\" is \"Sunday\""
+msgstr ""
+
+#: 04060199.xhp#hd_id3153550.60.help.text
+msgid "Reference operators"
+msgstr ""
+
+#: 04060199.xhp#par_id3149024.61.help.text
+msgid "These operators return a cell range of zero, one or more cells."
+msgstr ""
+
+#: 04060199.xhp#par_id2324900.help.text
+msgid "Range has the highest precedence, then intersection, and then finally union."
+msgstr ""
+
+#: 04060199.xhp#par_id3158416.62.help.text
+msgctxt "04060199.xhp#par_id3158416.62.help.text"
+msgid "Operator"
+msgstr ""
+
+#: 04060199.xhp#par_id3152822.63.help.text
+msgctxt "04060199.xhp#par_id3152822.63.help.text"
+msgid "Name"
+msgstr ""
+
+#: 04060199.xhp#par_id3154949.64.help.text
+#, fuzzy
+msgctxt "04060199.xhp#par_id3154949.64.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060199.xhp#par_id3156257.65.help.text
+msgid ": (Colon)"
+msgstr ""
+
+#: 04060199.xhp#par_id3153924.66.help.text
+msgctxt "04060199.xhp#par_id3153924.66.help.text"
+msgid "Range"
+msgstr ""
+
+#: 04060199.xhp#par_id3148432.67.help.text
+msgid "A1:C108"
+msgstr ""
+
+#: 04060199.xhp#par_id3152592.68.help.text
+msgid "! (Exclamation point)"
+msgstr ""
+
+#: 04060199.xhp#bm_id3150606.help.text
+msgid "<bookmark_value>intersection operator</bookmark_value>"
+msgstr ""
+
+#: 04060199.xhp#par_id3150606.69.help.text
+msgid "Intersection"
+msgstr "Перетин"
+
+#: 04060199.xhp#par_id3083445.70.help.text
+msgid "SUM(A1:B6!B5:C12)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060199.xhp#par_id4003723.help.text
+msgid "~ (Tilde)"
+msgstr ""
+
+#: 04060199.xhp#par_id838953.help.text
+msgid "Concatenation or union"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 12030000.xhp#tit.help.text
+msgctxt "12030000.xhp#tit.help.text"
+msgid "Sort"
+msgstr ""
+
+#: 12030000.xhp#hd_id3150275.1.help.text
+msgctxt "12030000.xhp#hd_id3150275.1.help.text"
+msgid "Sort"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 05030400.xhp#tit.help.text
+msgctxt "05030400.xhp#tit.help.text"
+msgid "Show"
+msgstr ""
+
+#: 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 ""
+
+#: 05030400.xhp#hd_id3147264.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/05030400.xhp\" name=\"Show\">Show</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 05100200.xhp#tit.help.text
+msgctxt "05100200.xhp#tit.help.text"
+msgid "Split Cells"
+msgstr ""
+
+#: 05100200.xhp#hd_id3154654.help.text
+msgctxt "05100200.xhp#hd_id3154654.help.text"
+msgid "Split Cells"
+msgstr ""
+
+#: 05100200.xhp#par_id3083451.help.text
+msgid "<ahelp hid=\".\">Splits previously merged cells.</ahelp>"
+msgstr ""
+
+#: 05100200.xhp#par_id3154023.help.text
+msgid "Choose <emph>Format - Merge Cells - Split Cells</emph>"
+msgstr ""
+
+#: 04060106.xhp#tit.help.text
+msgctxt "04060106.xhp#tit.help.text"
+msgid "Mathematical Functions"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3147124.1.help.text
+msgctxt "04060106.xhp#hd_id3147124.1.help.text"
+msgid "Mathematical Functions"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3146944.33.help.text
+msgid "ABS"
+msgstr ""
+
+#: 04060106.xhp#par_id3154546.34.help.text
+msgid "<ahelp hid=\"HID_FUNC_ABS\">Returns the absolute value of a number.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3154843.35.help.text
+msgctxt "04060106.xhp#hd_id3154843.35.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3147475.36.help.text
+msgid "ABS(Number)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3155823.38.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3155823.38.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3152787.39.help.text
+msgid "<item type=\"input\">=ABS(-56)</item> returns 56."
+msgstr ""
+
+#: 04060106.xhp#par_id3148752.40.help.text
+msgid "<item type=\"input\">=ABS(12)</item> returns 12."
+msgstr ""
+
+#: 04060106.xhp#par_id320139.help.text
+msgid "<item type=\"input\">=ABS(0)</item> returns 0."
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3150896.42.help.text
+msgid "COUNTBLANK"
+msgstr ""
+
+#: 04060106.xhp#par_id3155260.43.help.text
+msgid "<ahelp hid=\"HID_FUNC_ANZAHLLEEREZELLEN\">Returns the number of empty cells.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3145144.44.help.text
+msgctxt "04060106.xhp#hd_id3145144.44.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3153931.45.help.text
+msgid "COUNTBLANK(Range)"
+msgstr ""
+
+#: 04060106.xhp#par_id3149512.46.help.text
+msgid " Returns the number of empty cells in the cell range <emph>Range</emph>."
+msgstr ""
+
+#: 04060106.xhp#hd_id3146139.47.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3146139.47.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060106.xhp#bm_id3153114.help.text
+msgid "<bookmark_value>ACOS function</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3153565.52.help.text
+msgctxt "04060106.xhp#hd_id3153565.52.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3150020.53.help.text
+msgid "ACOS(Number)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3149882.55.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3149882.55.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3150128.56.help.text
+msgid "<item type=\"input\">=ACOS(-1)</item> returns 3.14159265358979 (PI radians)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#bm_id3145355.help.text
+msgid "<bookmark_value>ACOSH function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3145355.60.help.text
+#, fuzzy
+msgid "ACOSH"
+msgstr "ACOS"
+
+#: 04060106.xhp#par_id3157993.61.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARCOSHYP\">Returns the inverse hyperbolic cosine of a number.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3145295.62.help.text
+msgctxt "04060106.xhp#hd_id3145295.62.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3151017.63.help.text
+msgid "ACOSH(Number)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#par_id6393932.help.text
+msgid " Number must be greater than or equal to 1."
+msgstr ""
+
+#: 04060106.xhp#hd_id3150566.65.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3150566.65.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3145629.66.help.text
+msgid "<item type=\"input\">=ACOSH(1)</item> returns 0."
+msgstr ""
+
+#: 04060106.xhp#par_id951567.help.text
+msgid "<item type=\"input\">=ACOSH(COSH(4))</item> returns 4."
+msgstr ""
+
+#: 04060106.xhp#bm_id3149027.help.text
+msgid "<bookmark_value>ACOT function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3149027.70.help.text
+#, fuzzy
+msgid "ACOT"
+msgstr "ACOS"
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3153225.72.help.text
+msgctxt "04060106.xhp#hd_id3153225.72.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3158419.73.help.text
+msgid "ACOT(Number)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3147538.75.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3147538.75.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3155375.76.help.text
+msgid "<item type=\"input\">=ACOT(1)</item> returns 0.785398163397448 (PI/4 radians)."
+msgstr ""
+
+#: 04060106.xhp#par_id8589434.help.text
+msgid "<item type=\"input\">=DEGREES(ACOT(1))</item> returns 45. The tangent of 45 degrees is 1. "
+msgstr ""
+
+#: 04060106.xhp#bm_id3148426.help.text
+msgid "<bookmark_value>ACOTH function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3148426.80.help.text
+#, fuzzy
+msgid "ACOTH"
+msgstr "ACOS"
+
+#: 04060106.xhp#par_id3147478.81.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARCOTHYP\">Returns the inverse hyperbolic cotangent of the given number.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3152585.82.help.text
+msgctxt "04060106.xhp#hd_id3152585.82.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3147172.83.help.text
+msgid "ACOTH(Number)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#par_id5818659.help.text
+msgid "An error results if Number is between -1 and 1 inclusive."
+msgstr ""
+
+#: 04060106.xhp#hd_id3083452.85.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3083452.85.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060106.xhp#bm_id3145084.help.text
+msgid "<bookmark_value>ASIN function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3145084.90.help.text
+msgid "ASIN"
+msgstr "ASIN"
+
+#: 04060106.xhp#par_id3156296.91.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARCSIN\">Returns the inverse trigonometric sine of a number.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3149716.92.help.text
+msgctxt "04060106.xhp#hd_id3149716.92.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3156305.93.help.text
+msgid "ASIN(Number)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3149448.95.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3149448.95.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3156100.96.help.text
+msgid "<item type=\"input\">=ASIN(0)</item> returns 0."
+msgstr ""
+
+#: 04060106.xhp#par_id6853846.help.text
+msgid "<item type=\"input\">=ASIN(1)</item> returns 1.5707963267949 (PI/2 radians). "
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#bm_id3151266.help.text
+msgid "<bookmark_value>ASINH function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3151266.100.help.text
+#, fuzzy
+msgid "ASINH"
+msgstr "ASIN"
+
+#: 04060106.xhp#par_id3147077.101.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARSINHYP\">Returns the inverse hyperbolic sine of a number.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3150763.102.help.text
+msgctxt "04060106.xhp#hd_id3150763.102.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3150882.103.help.text
+msgid "ASINH(Number)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3153212.105.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3153212.105.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3156120.106.help.text
+msgid "<item type=\"input\">=ASINH(-90)</item> returns approximately -5.1929877."
+msgstr ""
+
+#: 04060106.xhp#par_id4808496.help.text
+msgid "<item type=\"input\">=ASINH(SINH(4))</item> returns 4."
+msgstr ""
+
+#: 04060106.xhp#bm_id3155996.help.text
+msgid "<bookmark_value>ATAN function</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3151294.112.help.text
+msgctxt "04060106.xhp#hd_id3151294.112.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3150261.113.help.text
+msgid "ATAN(Number)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3154054.115.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3154054.115.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3143229.116.help.text
+msgid "<item type=\"input\">=ATAN(1)</item> returns 0.785398163397448 (PI/4 radians)."
+msgstr ""
+
+#: 04060106.xhp#par_id8746299.help.text
+msgid "<item type=\"input\">=DEGREES(ATAN(1))</item> returns 45. The tangent of 45 degrees is 1."
+msgstr ""
+
+#: 04060106.xhp#bm_id3153983.help.text
+msgid "<bookmark_value>ATAN2 function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3153983.120.help.text
+#, fuzzy
+msgid "ATAN2"
+msgstr "ATAN"
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3149758.122.help.text
+msgctxt "04060106.xhp#hd_id3149758.122.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3156013.123.help.text
+msgid "ATAN2(NumberX; NumberY)"
+msgstr ""
+
+#: 04060106.xhp#par_id3151168.124.help.text
+msgid "<emph>NumberX</emph> is the value of the x coordinate."
+msgstr ""
+
+#: 04060106.xhp#par_id3152798.125.help.text
+msgid "<emph>NumberY</emph> is the value of the y coordinate."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3145663.126.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3145663.126.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3154692.127.help.text
+msgid "<item type=\"input\">=ATAN2(20;20)</item> returns 0.785398163397448 (PI/4 radians)."
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#bm_id3155398.help.text
+msgid "<bookmark_value>ATANH function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3155398.130.help.text
+#, fuzzy
+msgid "ATANH"
+msgstr "ATAN"
+
+#: 04060106.xhp#par_id3148829.131.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARTANHYP\">Returns the inverse hyperbolic tangent of a number.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3146997.132.help.text
+msgctxt "04060106.xhp#hd_id3146997.132.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3149912.133.help.text
+msgid "ATANH(Number)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#par_id9357280.help.text
+msgid " Number must obey the condition -1 < number < 1."
+msgstr ""
+
+#: 04060106.xhp#hd_id3148450.135.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3148450.135.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3145419.136.help.text
+msgid "<item type=\"input\">=ATANH(0)</item> returns 0."
+msgstr ""
+
+#: 04060106.xhp#bm_id3153062.help.text
+msgid "<bookmark_value>COS function</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3150779.151.help.text
+msgctxt "04060106.xhp#hd_id3150779.151.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3154213.152.help.text
+msgid "COS(Number)"
+msgstr ""
+
+#: 04060106.xhp#par_id3154285.153.help.text
+msgid " Returns the (trigonometric) cosine of <emph>Number</emph>, the angle in radians."
+msgstr ""
+
+#: 04060106.xhp#par_id831019.help.text
+msgid "To return the cosine of an angle in degrees, use the RADIANS function."
+msgstr ""
+
+#: 04060106.xhp#hd_id3153579.154.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3153579.154.help.text"
+msgid "Examples"
+msgstr "Приклади:"
+
+#: 04060106.xhp#par_id3147240.155.help.text
+msgid "<item type=\"input\">=COS(PI()/2)</item> returns 0, the cosine of PI/2 radians."
+msgstr ""
+
+#: 04060106.xhp#par_id3147516.156.help.text
+msgid "<item type=\"input\">=COS(RADIANS(60))</item> returns 0.5, the cosine of 60 degrees."
+msgstr ""
+
+#: 04060106.xhp#bm_id3154277.help.text
+msgid "<bookmark_value>COSH function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3154277.159.help.text
+#, fuzzy
+msgid "COSH"
+msgstr "COS"
+
+#: 04060106.xhp#par_id3146946.160.help.text
+msgid "<ahelp hid=\"HID_FUNC_COSHYP\">Returns the hyperbolic cosine of a number.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3149792.161.help.text
+msgctxt "04060106.xhp#hd_id3149792.161.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3166440.162.help.text
+msgid "COSH(Number)"
+msgstr ""
+
+#: 04060106.xhp#par_id3150710.163.help.text
+msgid "Returns the hyperbolic cosine of <emph>Number</emph>."
+msgstr ""
+
+#: 04060106.xhp#hd_id3153234.164.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3153234.164.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3154099.165.help.text
+msgid "<item type=\"input\">=COSH(0)</item> returns 1, the hyperbolic cosine of 0."
+msgstr ""
+
+#: 04060106.xhp#bm_id3152888.help.text
+msgid "<bookmark_value>COT function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3152888.169.help.text
+#, fuzzy
+msgid "COT"
+msgstr "ACOS"
+
+#: 04060106.xhp#par_id3153679.170.help.text
+msgid "<ahelp hid=\"HID_FUNC_COT\">Returns the cotangent of the given angle (in radians).</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3152943.171.help.text
+msgctxt "04060106.xhp#hd_id3152943.171.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3154856.172.help.text
+msgid "COT(Number)"
+msgstr ""
+
+#: 04060106.xhp#par_id3149969.173.help.text
+msgid " Returns the (trigonometric) cotangent of <emph>Number</emph>, the angle in radians."
+msgstr ""
+
+#: 04060106.xhp#par_id3444624.help.text
+msgid "To return the cotangent of an angle in degrees, use the RADIANS function."
+msgstr ""
+
+#: 04060106.xhp#par_id6814477.help.text
+msgid "The cotangent of an angle is equivalent to 1 divided by the tangent of that angle."
+msgstr ""
+
+#: 04060106.xhp#hd_id3149800.174.help.text
+msgid "Examples:"
+msgstr "Приклади:"
+
+#: 04060106.xhp#par_id3148616.175.help.text
+msgid "<item type=\"input\">=COT(PI()/4)</item> returns 1, the cotangent of PI/4 radians."
+msgstr ""
+
+#: 04060106.xhp#par_id3148986.176.help.text
+msgid "<item type=\"input\">=COT(RADIANS(45))</item> returns 1, the cotangent of 45 degrees."
+msgstr ""
+
+#: 04060106.xhp#bm_id3154337.help.text
+msgid "<bookmark_value>COTH function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3154337.178.help.text
+#, fuzzy
+msgid "COTH"
+msgstr "COS"
+
+#: 04060106.xhp#par_id3149419.179.help.text
+msgid "<ahelp hid=\"HID_FUNC_COTHYP\">Returns the hyperbolic cotangent of a given number (angle).</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3149242.180.help.text
+msgctxt "04060106.xhp#hd_id3149242.180.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3143280.181.help.text
+msgid "COTH(Number)"
+msgstr ""
+
+#: 04060106.xhp#par_id3154799.182.help.text
+msgid " Returns the hyperbolic cotangent of <emph>Number</emph>."
+msgstr ""
+
+#: 04060106.xhp#hd_id3155422.183.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3155422.183.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3144754.184.help.text
+msgid "<item type=\"input\">=COTH(1)</item> returns the hyperbolic cotangent of 1, approximately 1.3130."
+msgstr ""
+
+#: 04060106.xhp#bm_id6110552.help.text
+msgid "<bookmark_value>CSC function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id9523234.149.help.text
+msgid "CSC"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3534032.151.help.text
+msgctxt "04060106.xhp#hd_id3534032.151.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id4571344.152.help.text
+msgid "CSC(Number)"
+msgstr ""
+
+#: 04060106.xhp#par_id9859164.153.help.text
+msgid " Returns the (trigonometric) cosecant of <emph>Number</emph>, the angle in radians."
+msgstr ""
+
+#: 04060106.xhp#par_id3428494.help.text
+msgid "To return the cosecant of an angle in degrees, use the RADIANS function."
+msgstr ""
+
+#: 04060106.xhp#hd_id2577161.154.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id2577161.154.help.text"
+msgid "Examples"
+msgstr "Приклади:"
+
+#: 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
+msgid "<bookmark_value>CSCH function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id4325650.159.help.text
+msgid "CSCH"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#par_id3108851.162.help.text
+msgid "CSCH(Number)"
+msgstr ""
+
+#: 04060106.xhp#par_id1394188.163.help.text
+msgid "Returns the hyperbolic cosecant of <emph>Number</emph>."
+msgstr ""
+
+#: 04060106.xhp#hd_id6037477.164.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id6037477.164.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3145314.188.help.text
+msgid "DEGREES"
+msgstr ""
+
+#: 04060106.xhp#par_id3149939.189.help.text
+msgid "<ahelp hid=\"HID_FUNC_DEG\">Converts radians into degrees.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3150623.190.help.text
+msgctxt "04060106.xhp#hd_id3150623.190.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3145600.191.help.text
+msgid "DEGREES(Number)"
+msgstr ""
+
+#: 04060106.xhp#par_id3149484.192.help.text
+msgid "<emph>Number</emph> is the angle in radians to be converted to degrees."
+msgstr ""
+
+#: 04060106.xhp#hd_id3669545.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3669545.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3459578.help.text
+msgid "<item type=\"input\">=DEGREES(PI())</item> returns 180 degrees."
+msgstr ""
+
+#: 04060106.xhp#bm_id3148698.help.text
+msgid "<bookmark_value>EXP function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3148698.198.help.text
+msgid "EXP"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3150351.200.help.text
+msgctxt "04060106.xhp#hd_id3150351.200.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3146786.201.help.text
+msgid "EXP(Number)"
+msgstr ""
+
+#: 04060106.xhp#par_id3155608.202.help.text
+msgid "<emph>Number</emph> is the power to which e is to be raised."
+msgstr ""
+
+#: 04060106.xhp#hd_id3154418.203.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3154418.203.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060106.xhp#bm_id3145781.help.text
+msgid "<bookmark_value>FACT function</bookmark_value><bookmark_value>factorials;numbers</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3145781.208.help.text
+msgid "FACT"
+msgstr ""
+
+#: 04060106.xhp#par_id3151109.209.help.text
+msgid "<ahelp hid=\"HID_FUNC_FAKULTAET\">Returns the factorial of a number.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3146902.210.help.text
+msgctxt "04060106.xhp#hd_id3146902.210.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3154661.211.help.text
+msgid "FACT(Number)"
+msgstr ""
+
+#: 04060106.xhp#par_id3152952.212.help.text
+msgid " Returns Number!, the factorial of <emph>Number</emph>, calculated as 1*2*3*4* ... * Number."
+msgstr ""
+
+#: 04060106.xhp#par_id3834650.help.text
+msgid "=FACT(0) returns 1 by definition. "
+msgstr ""
+
+#: 04060106.xhp#par_id8429517.help.text
+msgid "The factorial of a negative number returns the \"invalid argument\" error."
+msgstr ""
+
+#: 04060106.xhp#hd_id3154569.213.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3154569.213.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3154476.216.help.text
+msgid "<item type=\"input\">=FACT(3)</item> returns 6."
+msgstr ""
+
+#: 04060106.xhp#par_id3147525.214.help.text
+msgid "<item type=\"input\">=FACT(0)</item> returns 1."
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3159084.218.help.text
+msgid "INT"
+msgstr ""
+
+#: 04060106.xhp#par_id3158441.219.help.text
+msgid "<ahelp hid=\"HID_FUNC_GANZZAHL\">Rounds a number down to the nearest integer.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3146132.220.help.text
+msgctxt "04060106.xhp#hd_id3146132.220.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3156146.221.help.text
+msgid "INT(Number)"
+msgstr ""
+
+#: 04060106.xhp#par_id3154117.222.help.text
+msgid "Returns <emph>Number</emph> rounded down to the nearest integer."
+msgstr ""
+
+#: 04060106.xhp#par_id153508.help.text
+msgid "Negative numbers round down to the integer below."
+msgstr ""
+
+#: 04060106.xhp#hd_id3155118.223.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3155118.223.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3156267.224.help.text
+msgid "<item type=\"input\">=INT(5.7)</item> returns 5."
+msgstr ""
+
+#: 04060106.xhp#par_id3147323.225.help.text
+msgid "<item type=\"input\">=INT(-1.3)</item> returns -2."
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3150938.227.help.text
+msgid "EVEN"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3148401.229.help.text
+msgctxt "04060106.xhp#hd_id3148401.229.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3150830.230.help.text
+msgid "EVEN(Number)"
+msgstr ""
+
+#: 04060106.xhp#par_id3153350.231.help.text
+msgid " Returns <emph>Number</emph> rounded to the next even integer up, away from zero. "
+msgstr ""
+
+#: 04060106.xhp#hd_id3155508.232.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3155508.232.help.text"
+msgid "Examples"
+msgstr "Приклади:"
+
+#: 04060106.xhp#par_id3154361.233.help.text
+msgid "<item type=\"input\">=EVEN(2.3)</item> returns 4."
+msgstr ""
+
+#: 04060106.xhp#par_id8477736.help.text
+msgid "<item type=\"input\">=EVEN(2)</item> returns 2."
+msgstr ""
+
+#: 04060106.xhp#par_id159611.help.text
+msgid "<item type=\"input\">=EVEN(0)</item> returns 0."
+msgstr ""
+
+#: 04060106.xhp#par_id6097598.help.text
+msgid "<item type=\"input\">=EVEN(-0.5)</item> returns -2."
+msgstr ""
+
+#: 04060106.xhp#bm_id3147356.help.text
+msgid "<bookmark_value>GCD function</bookmark_value><bookmark_value>greatest common divisor</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3147356.237.help.text
+msgid "GCD"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3150643.239.help.text
+msgctxt "04060106.xhp#hd_id3150643.239.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3154524.240.help.text
+msgid "GCD(Integer1; Integer2; ...; Integer30)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3147317.242.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3147317.242.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#bm_id3151221.help.text
+msgid "<bookmark_value>GCD_ADD function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3151221.677.help.text
+msgid "GCD_ADD"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3147548.679.help.text
+msgctxt "04060106.xhp#hd_id3147548.679.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3156205.680.help.text
+msgid "GCD_ADD(Number(s))"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3150239.682.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3150239.682.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3159192.683.help.text
+msgid "<item type=\"input\">=GCD_ADD(5;15;25)</item> returns 5."
+msgstr ""
+
+#: 04060106.xhp#bm_id3156048.help.text
+msgid "<bookmark_value>ISEVEN function</bookmark_value><bookmark_value>even integers</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3156048.245.help.text
+msgid "ISEVEN"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3146928.247.help.text
+msgctxt "04060106.xhp#hd_id3146928.247.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3151203.248.help.text
+msgid "ISEVEN(Value)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3154136.250.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3154136.250.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3163813.251.help.text
+msgid "<item type=\"input\">=ISEVEN(48)</item> returns TRUE"
+msgstr ""
+
+#: 04060106.xhp#par_id8378856.help.text
+msgid "<item type=\"input\">=ISEVEN(33)</item> returns FALSE"
+msgstr ""
+
+#: 04060106.xhp#par_id7154759.help.text
+msgid "<item type=\"input\">=ISEVEN(0)</item> returns TRUE"
+msgstr ""
+
+#: 04060106.xhp#par_id1912289.help.text
+msgid "<item type=\"input\">=ISEVEN(-2.1)</item> returns TRUE"
+msgstr ""
+
+#: 04060106.xhp#par_id5627307.help.text
+msgid "<item type=\"input\">=ISEVEN(3.999)</item> returns FALSE"
+msgstr ""
+
+#: 04060106.xhp#bm_id3156034.help.text
+msgid "<bookmark_value>ISODD function</bookmark_value><bookmark_value>odd integers</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3156034.255.help.text
+msgid "ISODD"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3151006.257.help.text
+msgctxt "04060106.xhp#hd_id3151006.257.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3151375.258.help.text
+msgid "ISODD(value)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3163723.260.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3163723.260.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3155345.261.help.text
+msgid "<item type=\"input\">=ISODD(33)</item> returns TRUE"
+msgstr ""
+
+#: 04060106.xhp#par_id9392986.help.text
+msgid "<item type=\"input\">=ISODD(48)</item> returns FALSE"
+msgstr ""
+
+#: 04060106.xhp#par_id5971251.help.text
+msgid "<item type=\"input\">=ISODD(3.999)</item> returns TRUE"
+msgstr ""
+
+#: 04060106.xhp#par_id4136478.help.text
+msgid "<item type=\"input\">=ISODD(-3.1)</item> returns TRUE"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3145213.265.help.text
+msgid "LCM"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3148632.267.help.text
+msgctxt "04060106.xhp#hd_id3148632.267.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3147279.268.help.text
+msgid "LCM(Integer1; Integer2; ...; Integer30)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3156431.270.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3156431.270.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060106.xhp#bm_id3154230.help.text
+msgid "<bookmark_value>LCM_ADD function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3154230.684.help.text
+msgid "LCM_ADD"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3153132.686.help.text
+msgctxt "04060106.xhp#hd_id3153132.686.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3154395.687.help.text
+msgid "LCM_ADD(Number(s))"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3145122.689.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3145122.689.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3145135.690.help.text
+msgid "<item type=\"input\">=LCM_ADD(5;15;25)</item> returns 75."
+msgstr ""
+
+#: 04060106.xhp#bm_id3155802.help.text
+msgid "<bookmark_value>COMBIN function</bookmark_value><bookmark_value>number of combinations</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3155802.273.help.text
+msgid "COMBIN"
+msgstr ""
+
+#: 04060106.xhp#par_id3156172.274.help.text
+msgid "<ahelp hid=\"HID_FUNC_KOMBINATIONEN\">Returns the number of combinations for elements without repetition.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3156193.275.help.text
+msgctxt "04060106.xhp#hd_id3156193.275.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3150223.276.help.text
+msgid "COMBIN(Count1; Count2)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#par_id7414471.help.text
+msgid "COMBIN implements the formula: Count1!/(Count2!*(Count1-Count2)!)"
+msgstr ""
+
+#: 04060106.xhp#hd_id3153171.279.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3153171.279.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3153517.280.help.text
+msgid "<item type=\"input\">=COMBIN(3;2)</item> returns 3."
+msgstr ""
+
+#: 04060106.xhp#bm_id3150284.help.text
+msgid "<bookmark_value>COMBINA function</bookmark_value><bookmark_value>number of combinations with repetitions</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3150284.282.help.text
+msgid "COMBINA"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3145752.284.help.text
+msgctxt "04060106.xhp#hd_id3145752.284.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3145765.285.help.text
+msgid "COMBINA(Count1; Count2)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#par_id2052064.help.text
+msgid "COMBINA implements the formula: (Count1+Count2-1)! / (Count2!(Count1-1)!)"
+msgstr ""
+
+#: 04060106.xhp#hd_id3154584.288.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3154584.288.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3152904.289.help.text
+msgid "<item type=\"input\">=COMBINA(3;2)</item> returns 6."
+msgstr ""
+
+#: 04060106.xhp#bm_id3156086.help.text
+msgid "<bookmark_value>TRUNC function</bookmark_value><bookmark_value>decimal places;cutting off</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3156086.291.help.text
+msgid "TRUNC"
+msgstr ""
+
+#: 04060106.xhp#par_id3157866.292.help.text
+msgid "<ahelp hid=\"HID_FUNC_KUERZEN\">Truncates a number by removing decimal places.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3148499.293.help.text
+msgctxt "04060106.xhp#hd_id3148499.293.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3148511.294.help.text
+msgid "TRUNC(Number; Count)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3152555.297.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3152555.297.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3152569.298.help.text
+msgid "<item type=\"input\">=TRUNC(1.239;2)</item> returns 1.23. The 9 is lost."
+msgstr ""
+
+#: 04060106.xhp#par_id7050080.help.text
+msgid "<item type=\"input\">=TRUNC(-1.234999;3)</item> returns -1.234. All the 9s are lost."
+msgstr ""
+
+#: 04060106.xhp#bm_id3153601.help.text
+msgid "<bookmark_value>LN function</bookmark_value><bookmark_value>natural logarithm</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3153601.301.help.text
+msgid "LN"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3154993.303.help.text
+msgctxt "04060106.xhp#hd_id3154993.303.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3155284.304.help.text
+msgid "LN(Number)"
+msgstr ""
+
+#: 04060106.xhp#par_id3155297.305.help.text
+msgid "<emph>Number</emph> is the value whose natural logarithm is to be calculated."
+msgstr ""
+
+#: 04060106.xhp#hd_id3153852.306.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3153852.306.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3153866.307.help.text
+msgid "<item type=\"input\">=LN(3)</item> returns the natural logarithm of 3 (approximately 1.0986)."
+msgstr ""
+
+#: 04060106.xhp#par_id5747245.help.text
+msgid "<item type=\"input\">=LN(EXP(321))</item> returns 321."
+msgstr ""
+
+#: 04060106.xhp#bm_id3109813.help.text
+msgid "<bookmark_value>LOG function</bookmark_value><bookmark_value>logarithms</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3109813.311.help.text
+msgid "LOG"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3144719.313.help.text
+msgctxt "04060106.xhp#hd_id3144719.313.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3144732.314.help.text
+msgid "LOG(Number; Base)"
+msgstr ""
+
+#: 04060106.xhp#par_id3144746.315.help.text
+msgid "<emph>Number</emph> is the value whose logarithm is to be calculated."
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3152860.317.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3152860.317.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060106.xhp#par_id5577562.help.text
+msgid "<item type=\"input\">=LOG(7^4;7)</item> returns 4."
+msgstr ""
+
+#: 04060106.xhp#bm_id3154187.help.text
+msgid "<bookmark_value>LOG10 function</bookmark_value><bookmark_value>base-10 logarithm</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3154187.322.help.text
+msgid "LOG10"
+msgstr ""
+
+#: 04060106.xhp#par_id3155476.323.help.text
+msgid "<ahelp hid=\"HID_FUNC_LOG10\">Returns the base-10 logarithm of a number.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3155494.324.help.text
+msgctxt "04060106.xhp#hd_id3155494.324.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3159294.325.help.text
+msgid "LOG10(Number)"
+msgstr ""
+
+#: 04060106.xhp#par_id3159308.326.help.text
+msgid "Returns the logarithm to base 10 of <emph>Number</emph>."
+msgstr ""
+
+#: 04060106.xhp#hd_id3159328.327.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3159328.327.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060106.xhp#bm_id3152518.help.text
+msgid "<bookmark_value>CEILING function</bookmark_value><bookmark_value>rounding;up to multiples of significance</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3152518.332.help.text
+msgid "CEILING"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3153440.334.help.text
+msgctxt "04060106.xhp#hd_id3153440.334.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3153454.335.help.text
+msgid "CEILING(Number; Significance; Mode)"
+msgstr ""
+
+#: 04060106.xhp#par_id3153467.336.help.text
+msgid "<emph>Number</emph> is the number that is to be rounded up."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3145697.338.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3145697.338.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3145710.339.help.text
+msgid "<item type=\"input\">=CEILING(-11;-2)</item> returns -10"
+msgstr ""
+
+#: 04060106.xhp#par_id3145725.340.help.text
+msgid "<item type=\"input\">=CEILING(-11;-2;0)</item> returns -10"
+msgstr ""
+
+#: 04060106.xhp#par_id3145740.341.help.text
+msgid "<item type=\"input\">=CEILING(-11;-2;1)</item> returns -12"
+msgstr ""
+
+#: 04060106.xhp#bm_id3157762.help.text
+msgid "<bookmark_value>PI function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3157762.343.help.text
+msgid "PI"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3157809.345.help.text
+msgctxt "04060106.xhp#hd_id3157809.345.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3157822.346.help.text
+msgid "PI()"
+msgstr ""
+
+#: 04060106.xhp#hd_id3157836.347.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3157836.347.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3152370.348.help.text
+msgid "<item type=\"input\">=PI()</item> returns 3.14159265358979."
+msgstr ""
+
+#: 04060106.xhp#bm_id3152418.help.text
+msgid "<bookmark_value>MULTINOMIAL function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3152418.635.help.text
+msgid "MULTINOMIAL"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3155646.637.help.text
+msgctxt "04060106.xhp#hd_id3155646.637.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3155660.638.help.text
+msgid "MULTINOMIAL(Number(s))"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3155687.640.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3155687.640.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060106.xhp#bm_id3155717.help.text
+msgid "<bookmark_value>POWER function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3155717.350.help.text
+msgid "POWER"
+msgstr ""
+
+#: 04060106.xhp#par_id3159495.351.help.text
+msgid "<ahelp hid=\"HID_FUNC_POTENZ\">Returns a number raised to another number.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3159513.352.help.text
+msgctxt "04060106.xhp#hd_id3159513.352.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3159526.353.help.text
+msgid "POWER(Base; Exponent)"
+msgstr ""
+
+#: 04060106.xhp#par_id3159540.354.help.text
+msgid "Returns <emph>Base</emph> raised to the power of <emph>Exponent</emph>."
+msgstr ""
+
+#: 04060106.xhp#par_id5081637.help.text
+msgid "The same result may be achieved by using the exponentiation operator ^:"
+msgstr ""
+
+#: 04060106.xhp#par_id9759514.help.text
+msgid "<item type=\"literal\">Base^Exponent</item>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3159580.356.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3159580.356.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060106.xhp#par_id1614429.help.text
+msgid "=4^3 also returns 4 to the power of 3."
+msgstr ""
+
+#: 04060106.xhp#bm_id3152651.help.text
+msgid "<bookmark_value>SERIESSUM function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3152651.642.help.text
+msgid "SERIESSUM"
+msgstr ""
+
+#: 04060106.xhp#par_id3152688.643.help.text
+msgid "<ahelp hid=\".\">Sums the first terms of a power series.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3152724.645.help.text
+msgctxt "04060106.xhp#hd_id3152724.645.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_idN11BD9.help.text
+msgid "SERIESSUM(X; N; M; Coefficients)"
+msgstr ""
+
+#: 04060106.xhp#par_id3152737.646.help.text
+msgid "<emph>X</emph> is the input value for the power series."
+msgstr ""
+
+#: 04060106.xhp#par_id3144344.647.help.text
+msgid "<emph>N</emph> is the initial power"
+msgstr ""
+
+#: 04060106.xhp#par_id3144357.648.help.text
+msgid "<emph>M</emph> is the increment to increase N"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3144386.361.help.text
+msgctxt "04060106.xhp#hd_id3144386.361.help.text"
+msgid "PRODUCT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3144433.363.help.text
+msgctxt "04060106.xhp#hd_id3144433.363.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3144446.364.help.text
+msgid "PRODUCT(Number1; Number2; ...; Number30)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#par_id1589098.help.text
+msgid "PRODUCT returns number1 * number2 * number3 * ..."
+msgstr ""
+
+#: 04060106.xhp#hd_id3144480.366.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3144480.366.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3144494.367.help.text
+msgid "<item type=\"input\">=PRODUCT(2;3;4)</item> returns 24."
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3160340.369.help.text
+msgid "SUMSQ"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3160388.371.help.text
+msgctxt "04060106.xhp#hd_id3160388.371.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3160402.372.help.text
+msgid "SUMSQ(Number1; Number2; ...; Number30)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3160436.374.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3160436.374.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060106.xhp#bm_id3158247.help.text
+msgid "<bookmark_value>MOD function</bookmark_value><bookmark_value>remainders of divisions</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3158247.387.help.text
+msgid "MOD"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3158294.389.help.text
+msgctxt "04060106.xhp#hd_id3158294.389.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3158308.390.help.text
+msgid "MOD(Dividend; Divisor)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3158361.393.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3158361.393.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060106.xhp#par_id1278420.help.text
+msgid "<item type=\"input\">=MOD(11.25;2.5)</item> returns 1.25."
+msgstr ""
+
+#: 04060106.xhp#bm_id3144592.help.text
+msgid "<bookmark_value>QUOTIENT function</bookmark_value><bookmark_value>divisions</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3144592.652.help.text
+msgid "QUOTIENT"
+msgstr ""
+
+#: 04060106.xhp#par_id3144627.653.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_QUOTIENT\">Returns the integer part of a division operation.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3144646.654.help.text
+msgctxt "04060106.xhp#hd_id3144646.654.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3144659.655.help.text
+msgid "QUOTIENT(Numerator; Denominator)"
+msgstr ""
+
+#: 04060106.xhp#par_id9038972.help.text
+msgid "Returns the integer part of <emph>Numerator</emph> divided by <emph>Denominator</emph>."
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3144674.656.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3144674.656.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3144687.657.help.text
+msgid "<item type=\"input\">=QUOTIENT(11;3)</item> returns 3. The remainder of 2 is lost."
+msgstr ""
+
+#: 04060106.xhp#bm_id3144702.help.text
+msgid "<bookmark_value>RADIANS function</bookmark_value><bookmark_value>converting;degrees, into radians</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3144702.377.help.text
+msgid "RADIANS"
+msgstr ""
+
+#: 04060106.xhp#par_id3158025.378.help.text
+msgid "<ahelp hid=\"HID_FUNC_RAD\">Converts degrees to radians.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3158042.379.help.text
+msgctxt "04060106.xhp#hd_id3158042.379.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3158055.380.help.text
+msgid "RADIANS(Number)"
+msgstr ""
+
+#: 04060106.xhp#par_id3158069.381.help.text
+msgid "<emph>Number</emph> is the angle in degrees to be converted to radians."
+msgstr ""
+
+#: 04060106.xhp#hd_id876186.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id876186.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060106.xhp#bm_id3158121.help.text
+msgid "<bookmark_value>ROUND function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3158121.398.help.text
+msgid "ROUND"
+msgstr "ROUND"
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3158169.400.help.text
+msgctxt "04060106.xhp#hd_id3158169.400.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3158182.401.help.text
+msgid "ROUND(Number; Count)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#par_id599688.help.text
+msgid "This function rounds to the nearest number. See ROUNDDOWN and ROUNDUP for alternatives."
+msgstr ""
+
+#: 04060106.xhp#hd_id3145863.404.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3145863.404.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3145876.405.help.text
+msgid "<item type=\"input\">=ROUND(2.348;2)</item> returns 2.35"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#par_id1371501.help.text
+msgid "<item type=\"input\">=ROUND(2.348;0)</item> returns 2."
+msgstr ""
+
+#: 04060106.xhp#par_id4661702.help.text
+msgid "<item type=\"input\">=ROUND(2.5)</item> returns 3. "
+msgstr ""
+
+#: 04060106.xhp#par_id7868892.help.text
+msgid "<item type=\"input\">=ROUND(987.65;-2)</item> returns 1000."
+msgstr ""
+
+#: 04060106.xhp#bm_id3145991.help.text
+msgid "<bookmark_value>ROUNDDOWN function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3145991.24.help.text
+msgid "ROUNDDOWN"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3146037.26.help.text
+msgctxt "04060106.xhp#hd_id3146037.26.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3146051.27.help.text
+msgid "ROUNDDOWN(Number; Count)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#par_id2188787.help.text
+msgid "This function rounds towards zero. See ROUNDUP and ROUND for alternatives."
+msgstr ""
+
+#: 04060106.xhp#hd_id3163164.30.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3163164.30.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3163178.31.help.text
+msgid "<item type=\"input\">=ROUNDDOWN(1.234;2)</item> returns 1.23."
+msgstr ""
+
+#: 04060106.xhp#par_id5833307.help.text
+msgid "<item type=\"input\">=ROUNDDOWN(45.67;0)</item> returns 45."
+msgstr ""
+
+#: 04060106.xhp#par_id7726676.help.text
+msgid "<item type=\"input\">=ROUNDDOWN(-45.67)</item> returns -45."
+msgstr ""
+
+#: 04060106.xhp#par_id3729361.help.text
+msgid "<item type=\"input\">=ROUNDDOWN(987.65;-2)</item> returns 900."
+msgstr ""
+
+#: 04060106.xhp#bm_id3163268.help.text
+msgid "<bookmark_value>ROUNDUP function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3163268.140.help.text
+msgid "ROUNDUP"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3163315.142.help.text
+msgctxt "04060106.xhp#hd_id3163315.142.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3163328.143.help.text
+msgid "ROUNDUP(Number; Count)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#par_id9573961.help.text
+msgid "This function rounds away from zero. See ROUNDDOWN and ROUND for alternatives."
+msgstr ""
+
+#: 04060106.xhp#hd_id3163381.146.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3163381.146.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3144786.147.help.text
+msgid "<item type=\"input\">=ROUNDUP(1.1111;2)</item> returns 1.12."
+msgstr ""
+
+#: 04060106.xhp#par_id7700430.help.text
+msgid "<item type=\"input\">=ROUNDUP(1.2345;1)</item> returns 1.3."
+msgstr ""
+
+#: 04060106.xhp#par_id1180455.help.text
+msgid "<item type=\"input\">=ROUNDUP(45.67;0)</item> returns 46."
+msgstr ""
+
+#: 04060106.xhp#par_id3405560.help.text
+msgid "<item type=\"input\">=ROUNDUP(-45.67)</item> returns -46."
+msgstr ""
+
+#: 04060106.xhp#par_id3409527.help.text
+msgid "<item type=\"input\">=ROUNDUP(987.65;-2)</item> returns 1000."
+msgstr ""
+
+#: 04060106.xhp#bm_id5256537.help.text
+msgid "<bookmark_value>SEC function</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#par_id2055913.152.help.text
+msgid "SEC(Number)"
+msgstr ""
+
+#: 04060106.xhp#par_id9568170.153.help.text
+msgid " Returns the (trigonometric) secant of <emph>Number</emph>, the angle in radians."
+msgstr ""
+
+#: 04060106.xhp#par_id9047465.help.text
+msgid "To return the secant of an angle in degrees, use the RADIANS function."
+msgstr ""
+
+#: 04060106.xhp#hd_id9878918.154.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id9878918.154.help.text"
+msgid "Examples"
+msgstr "Приклади:"
+
+#: 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
+msgid "<bookmark_value>SECH function</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id875988.161.help.text
+msgctxt "04060106.xhp#hd_id875988.161.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id4985391.162.help.text
+msgid "SECH(Number)"
+msgstr ""
+
+#: 04060106.xhp#par_id1952124.163.help.text
+msgid "Returns the hyperbolic secant of <emph>Number</emph>."
+msgstr ""
+
+#: 04060106.xhp#hd_id9838764.164.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id9838764.164.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3144877.408.help.text
+msgid "SIN"
+msgstr "SIN"
+
+#: 04060106.xhp#par_id3144906.409.help.text
+msgid "<ahelp hid=\"HID_FUNC_SIN\">Returns the sine of the given angle (in radians).</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3144923.410.help.text
+msgctxt "04060106.xhp#hd_id3144923.410.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3144937.411.help.text
+msgid "SIN(Number)"
+msgstr ""
+
+#: 04060106.xhp#par_id3144950.412.help.text
+msgid "Returns the (trigonometric) sine of <emph>Number</emph>, the angle in radians."
+msgstr ""
+
+#: 04060106.xhp#par_id8079470.help.text
+msgid "To return the sine of an angle in degrees, use the RADIANS function."
+msgstr ""
+
+#: 04060106.xhp#hd_id3144969.413.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3144969.413.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3144983.414.help.text
+msgid "<item type=\"input\">=SIN(PI()/2)</item> returns 1, the sine of PI/2 radians."
+msgstr ""
+
+#: 04060106.xhp#par_id3916440.help.text
+msgid "<item type=\"input\">=SIN(RADIANS(30))</item> returns 0.5, the sine of 30 degrees."
+msgstr ""
+
+#: 04060106.xhp#bm_id3163397.help.text
+msgid "<bookmark_value>SINH function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3163397.418.help.text
+#, fuzzy
+msgid "SINH"
+msgstr "SIN"
+
+#: 04060106.xhp#par_id3163426.419.help.text
+msgid "<ahelp hid=\"HID_FUNC_SINHYP\">Returns the hyperbolic sine of a number.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3163444.420.help.text
+msgctxt "04060106.xhp#hd_id3163444.420.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3163457.421.help.text
+msgid "SINH(Number)"
+msgstr ""
+
+#: 04060106.xhp#par_id3163471.422.help.text
+msgid "Returns the hyperbolic sine of <emph>Number</emph>."
+msgstr ""
+
+#: 04060106.xhp#hd_id3163491.423.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3163491.423.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3163504.424.help.text
+msgid "<item type=\"input\">=SINH(0)</item> returns 0, the hyperbolic sine of 0."
+msgstr ""
+
+#: 04060106.xhp#bm_id3163596.help.text
+msgid "<bookmark_value>SUM function</bookmark_value><bookmark_value>adding;numbers in cell ranges</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3163596.428.help.text
+msgctxt "04060106.xhp#hd_id3163596.428.help.text"
+msgid "SUM"
+msgstr ""
+
+#: 04060106.xhp#par_id3163625.429.help.text
+msgid "<ahelp hid=\"HID_FUNC_SUMME\">Adds all the numbers in a range of cells.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3163643.430.help.text
+msgctxt "04060106.xhp#hd_id3163643.430.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3163656.431.help.text
+msgid "SUM(Number1; Number2; ...; Number30)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3163690.433.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3163690.433.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#par_id3151756.619.help.text
+msgid "Conditions linked by AND can be used with the function SUM() in the following manner:"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#par_id3151799.621.help.text
+msgid "Enter the following formula as an array formula:"
+msgstr ""
+
+#: 04060106.xhp#par_id3151813.622.help.text
+msgid "<item type=\"input\">=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)</item>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#par_id3151869.624.help.text
+msgid "{=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)}"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#bm_id3151957.help.text
+msgid "<bookmark_value>SUMIF function</bookmark_value><bookmark_value>adding;specified numbers</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3151957.436.help.text
+msgid "SUMIF"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3152015.438.help.text
+msgctxt "04060106.xhp#hd_id3152015.438.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3152028.439.help.text
+msgid "SUMIF(Range; Criteria; SumRange)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3152110.443.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3152110.443.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3152148.626.help.text
+msgid "To sum up only negative numbers: <item type=\"input\">=SUMIF(A1:A10;\"<0\")</item>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#par_id6062196.help.text
+msgid "See COUNTIF() for some more syntax examples that can be used with SUMIF()."
+msgstr ""
+
+#: 04060106.xhp#bm_id3152195.help.text
+msgid "<bookmark_value>TAN function</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3152242.448.help.text
+msgctxt "04060106.xhp#hd_id3152242.448.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3152255.449.help.text
+msgid "TAN(Number)"
+msgstr ""
+
+#: 04060106.xhp#par_id3152269.450.help.text
+msgid "Returns the (trigonometric) tangent of <emph>Number</emph>, the angle in radians."
+msgstr ""
+
+#: 04060106.xhp#par_id5752128.help.text
+msgid "To return the tangent of an angle in degrees, use the RADIANS function."
+msgstr ""
+
+#: 04060106.xhp#hd_id3152287.451.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3152287.451.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3152301.452.help.text
+msgid "<item type=\"input\">=TAN(PI()/4) </item>returns 1, the tangent of PI/4 radians."
+msgstr ""
+
+#: 04060106.xhp#par_id1804864.help.text
+msgid "<item type=\"input\">=TAN(RADIANS(45))</item> returns 1, the tangent of 45 degrees."
+msgstr ""
+
+#: 04060106.xhp#bm_id3165434.help.text
+msgid "<bookmark_value>TANH function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3165434.456.help.text
+#, fuzzy
+msgid "TANH"
+msgstr "TAN"
+
+#: 04060106.xhp#par_id3165462.457.help.text
+msgid "<ahelp hid=\"HID_FUNC_TANHYP\">Returns the hyperbolic tangent of a number.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3165480.458.help.text
+msgctxt "04060106.xhp#hd_id3165480.458.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3165494.459.help.text
+msgid "TANH(Number)"
+msgstr ""
+
+#: 04060106.xhp#par_id3165508.460.help.text
+msgid "Returns the hyperbolic tangent of <emph>Number</emph>."
+msgstr ""
+
+#: 04060106.xhp#hd_id3165527.461.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3165527.461.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3165541.462.help.text
+msgid "<item type=\"input\">=TANH(0)</item> returns 0, the hyperbolic tangent of 0."
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3165633.466.help.text
+msgid "SUBTOTAL"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3165704.495.help.text
+msgctxt "04060106.xhp#hd_id3165704.495.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3165717.496.help.text
+msgid "SUBTOTAL(Function; Range)"
+msgstr ""
+
+#: 04060106.xhp#par_id3165731.497.help.text
+msgid "<emph>Function</emph> is a number that stands for one of the following functions:"
+msgstr ""
+
+#: 04060106.xhp#par_id3165782.469.help.text
+msgid "Function index"
+msgstr ""
+
+#: 04060106.xhp#par_id3165806.470.help.text
+#, fuzzy
+msgctxt "04060106.xhp#par_id3165806.470.help.text"
+msgid "Function"
+msgstr "Функції"
+
+#: 04060106.xhp#par_id3165833.471.help.text
+msgctxt "04060106.xhp#par_id3165833.471.help.text"
+msgid "1"
+msgstr ""
+
+#: 04060106.xhp#par_id3165856.472.help.text
+msgctxt "04060106.xhp#par_id3165856.472.help.text"
+msgid "AVERAGE"
+msgstr ""
+
+#: 04060106.xhp#par_id3165883.473.help.text
+msgctxt "04060106.xhp#par_id3165883.473.help.text"
+msgid "2"
+msgstr ""
+
+#: 04060106.xhp#par_id3165906.474.help.text
+msgctxt "04060106.xhp#par_id3165906.474.help.text"
+msgid "COUNT"
+msgstr ""
+
+#: 04060106.xhp#par_id3165933.475.help.text
+msgctxt "04060106.xhp#par_id3165933.475.help.text"
+msgid "3"
+msgstr ""
+
+#: 04060106.xhp#par_id3165956.476.help.text
+msgctxt "04060106.xhp#par_id3165956.476.help.text"
+msgid "COUNTA"
+msgstr ""
+
+#: 04060106.xhp#par_id3165983.477.help.text
+msgctxt "04060106.xhp#par_id3165983.477.help.text"
+msgid "4"
+msgstr ""
+
+#: 04060106.xhp#par_id3166006.478.help.text
+msgctxt "04060106.xhp#par_id3166006.478.help.text"
+msgid "MAX"
+msgstr ""
+
+#: 04060106.xhp#par_id3166033.479.help.text
+msgctxt "04060106.xhp#par_id3166033.479.help.text"
+msgid "5"
+msgstr ""
+
+#: 04060106.xhp#par_id3166056.480.help.text
+msgctxt "04060106.xhp#par_id3166056.480.help.text"
+msgid "MIN"
+msgstr ""
+
+#: 04060106.xhp#par_id3143316.481.help.text
+msgctxt "04060106.xhp#par_id3143316.481.help.text"
+msgid "6"
+msgstr ""
+
+#: 04060106.xhp#par_id3143339.482.help.text
+msgctxt "04060106.xhp#par_id3143339.482.help.text"
+msgid "PRODUCT"
+msgstr ""
+
+#: 04060106.xhp#par_id3143366.483.help.text
+msgctxt "04060106.xhp#par_id3143366.483.help.text"
+msgid "7"
+msgstr ""
+
+#: 04060106.xhp#par_id3143389.484.help.text
+msgctxt "04060106.xhp#par_id3143389.484.help.text"
+msgid "STDEV"
+msgstr ""
+
+#: 04060106.xhp#par_id3143416.485.help.text
+msgctxt "04060106.xhp#par_id3143416.485.help.text"
+msgid "8"
+msgstr ""
+
+#: 04060106.xhp#par_id3143439.486.help.text
+msgctxt "04060106.xhp#par_id3143439.486.help.text"
+msgid "STDEVP"
+msgstr ""
+
+#: 04060106.xhp#par_id3143466.487.help.text
+msgctxt "04060106.xhp#par_id3143466.487.help.text"
+msgid "9"
+msgstr ""
+
+#: 04060106.xhp#par_id3143489.488.help.text
+msgctxt "04060106.xhp#par_id3143489.488.help.text"
+msgid "SUM"
+msgstr ""
+
+#: 04060106.xhp#par_id3143516.489.help.text
+msgctxt "04060106.xhp#par_id3143516.489.help.text"
+msgid "10"
+msgstr ""
+
+#: 04060106.xhp#par_id3143539.490.help.text
+msgctxt "04060106.xhp#par_id3143539.490.help.text"
+msgid "VAR"
+msgstr ""
+
+#: 04060106.xhp#par_id3143566.491.help.text
+msgctxt "04060106.xhp#par_id3143566.491.help.text"
+msgid "11"
+msgstr ""
+
+#: 04060106.xhp#par_id3143589.492.help.text
+msgctxt "04060106.xhp#par_id3143589.492.help.text"
+msgid "VARP"
+msgstr ""
+
+#: 04060106.xhp#par_id3143606.498.help.text
+msgid "<emph>Range</emph> is the range whose cells are included."
+msgstr ""
+
+#: 04060106.xhp#hd_id3143625.499.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3143625.499.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060106.xhp#par_id3143658.563.help.text
+msgid "<item type=\"input\">=SUBTOTAL(9;B2:B5)</item>"
+msgstr ""
+
+#: 04060106.xhp#bm_id3143672.help.text
+msgid "<bookmark_value>Euro; converting</bookmark_value><bookmark_value>EUROCONVERT function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3143672.564.help.text
+msgid "EUROCONVERT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#par_id3143731.566.help.text
+msgctxt "04060106.xhp#par_id3143731.566.help.text"
+msgid "<emph>Syntax</emph>"
+msgstr ""
+
+#: 04060106.xhp#par_id3143748.567.help.text
+msgid "EUROCONVERT(Value; \"From_currency\"; \"To_currency\", full_precision, triangulation_precision)"
+msgstr ""
+
+#: 04060106.xhp#par_id3143763.568.help.text
+msgid "<emph>Value</emph> is the amount of the currency to be converted."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#par_id3143819.570.help.text
+msgid "<emph>Examples</emph>"
+msgstr ""
+
+#: 04060106.xhp#par_id3143837.571.help.text
+msgid "<item type=\"input\">=EUROCONVERT(100;\"ATS\";\"EUR\")</item> converts 100 Austrian Schillings into Euros."
+msgstr ""
+
+#: 04060106.xhp#par_id3143853.572.help.text
+msgid "<item type=\"input\">=EUROCONVERT(100;\"EUR\";\"DEM\")</item> converts 100 Euros into German Marks."
+msgstr ""
+
+#: 04060106.xhp#bm_id0908200902090676.help.text
+msgid "<bookmark_value>CONVERT function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id0908200902074836.help.text
+msgid "CONVERT"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id0908200902131071.help.text
+msgctxt "04060106.xhp#hd_id0908200902131071.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id0908200902131191.help.text
+msgid "CONVERT(value;\"text\";\"text\")"
+msgstr ""
+
+#: 04060106.xhp#hd_id0908200902131152.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id0908200902131152.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id090820090213112.help.text
+msgid "<item type=\"input\">=CONVERT(100;\"ATS\";\"EUR\")</item> returns the Euro value of 100 Austrian Schillings."
+msgstr ""
+
+#: 04060106.xhp#par_id0908200902475431.help.text
+msgid "=CONVERT(100;\"EUR\";\"DEM\") converts 100 Euros into German Marks. "
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3157177.502.help.text
+msgid "ODD"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3157223.504.help.text
+msgctxt "04060106.xhp#hd_id3157223.504.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3157237.505.help.text
+msgid "ODD(Number)"
+msgstr ""
+
+#: 04060106.xhp#par_id3157250.506.help.text
+msgid " Returns <emph>Number</emph> rounded to the next odd integer up, away from zero."
+msgstr ""
+
+#: 04060106.xhp#hd_id3157270.507.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3157270.507.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3157283.508.help.text
+msgid "<item type=\"input\">=ODD(1.2)</item> returns 3."
+msgstr ""
+
+#: 04060106.xhp#par_id8746910.help.text
+msgid "<item type=\"input\">=ODD(1)</item> returns 1."
+msgstr ""
+
+#: 04060106.xhp#par_id9636524.help.text
+msgid "<item type=\"input\">=ODD(0)</item> returns 1."
+msgstr ""
+
+#: 04060106.xhp#par_id5675527.help.text
+msgid "<item type=\"input\">=ODD(-3.1)</item> returns -5."
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3157404.512.help.text
+msgid "FLOOR"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3157451.514.help.text
+msgctxt "04060106.xhp#hd_id3157451.514.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3157464.515.help.text
+msgid "FLOOR(Number; Significance; Mode)"
+msgstr ""
+
+#: 04060106.xhp#par_id3157478.516.help.text
+msgid "<emph>Number</emph> is the number that is to be rounded down."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3163932.518.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3163932.518.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3163945.519.help.text
+msgid "<item type=\"input\">=FLOOR( -11;-2)</item> returns -12"
+msgstr ""
+
+#: 04060106.xhp#par_id3163966.520.help.text
+msgid "<item type=\"input\">=FLOOR( -11;-2;0)</item> returns -12"
+msgstr ""
+
+#: 04060106.xhp#par_id3163988.521.help.text
+msgid "<item type=\"input\">=FLOOR( -11;-2;1)</item> returns -10"
+msgstr ""
+
+#: 04060106.xhp#bm_id3164086.help.text
+msgid "<bookmark_value>SIGN function</bookmark_value><bookmark_value>algebraic signs</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3164086.523.help.text
+#, fuzzy
+msgid "SIGN"
+msgstr "SIN"
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3164136.525.help.text
+msgctxt "04060106.xhp#hd_id3164136.525.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3164150.526.help.text
+msgid "SIGN(Number)"
+msgstr ""
+
+#: 04060106.xhp#par_id3164164.527.help.text
+msgid "<emph>Number</emph> is the number whose sign is to be determined."
+msgstr ""
+
+#: 04060106.xhp#hd_id3164183.528.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3164183.528.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3164197.529.help.text
+msgid "<item type=\"input\">=SIGN(3.4)</item> returns 1."
+msgstr ""
+
+#: 04060106.xhp#par_id3164212.530.help.text
+msgid "<item type=\"input\">=SIGN(-4.5)</item> returns -1."
+msgstr ""
+
+#: 04060106.xhp#bm_id3164252.help.text
+msgid "<bookmark_value>MROUND function</bookmark_value><bookmark_value>nearest multiple</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3164252.658.help.text
+#, fuzzy
+msgid "MROUND"
+msgstr "ROUND"
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3164306.660.help.text
+msgctxt "04060106.xhp#hd_id3164306.660.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3164320.661.help.text
+msgid "MROUND(Number; Multiple)"
+msgstr ""
+
+#: 04060106.xhp#par_id3486434.help.text
+msgid "Returns <emph>Number</emph> rounded to the nearest multiple of <emph>Multiple</emph>. "
+msgstr ""
+
+#: 04060106.xhp#par_id3068636.help.text
+msgid "An alternative implementation would be <item type=\"literal\">Multiple * ROUND(Number/Multiple)</item>."
+msgstr ""
+
+#: 04060106.xhp#hd_id3164333.662.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3164333.662.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060106.xhp#par_idN14DD6.help.text
+msgid "<item type=\"input\">=MROUND(1.4;0.5)</item> returns 1.5 (= 0.5*3)."
+msgstr ""
+
+#: 04060106.xhp#bm_id3164375.help.text
+msgid "<bookmark_value>SQRT function</bookmark_value><bookmark_value>square roots;positive numbers</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3164375.532.help.text
+msgid "SQRT"
+msgstr "SQRT"
+
+#: 04060106.xhp#par_id3164404.533.help.text
+msgid "<ahelp hid=\"HID_FUNC_WURZEL\">Returns the positive square root of a number.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3164424.534.help.text
+msgctxt "04060106.xhp#hd_id3164424.534.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3164437.535.help.text
+msgid "SQRT(Number)"
+msgstr ""
+
+#: 04060106.xhp#par_id3164451.536.help.text
+msgid "Returns the positive square root of <emph>Number</emph>."
+msgstr ""
+
+#: 04060106.xhp#par_id6870021.help.text
+msgid " Number must be positive."
+msgstr ""
+
+#: 04060106.xhp#hd_id3164471.537.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3164471.537.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3164484.538.help.text
+msgid "<item type=\"input\">=SQRT(16)</item> returns 4."
+msgstr ""
+
+#: 04060106.xhp#par_id3591723.help.text
+msgid "<item type=\"input\">=SQRT(-16)</item> returns an <item type=\"literal\">invalid argument</item> error."
+msgstr ""
+
+#: 04060106.xhp#bm_id3164560.help.text
+msgid "<bookmark_value>SQRTPI function</bookmark_value><bookmark_value>square roots;products of Pi</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3164560.665.help.text
+msgid "SQRTPI"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3164614.667.help.text
+msgctxt "04060106.xhp#hd_id3164614.667.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3164627.668.help.text
+msgid "SQRTPI(Number)"
+msgstr ""
+
+#: 04060106.xhp#par_id1501510.help.text
+msgid "Returns the positive square root of (PI multiplied by <emph>Number</emph>)."
+msgstr ""
+
+#: 04060106.xhp#par_id9929197.help.text
+msgid "This is equivalent to <item type=\"literal\">SQRT(PI()*Number)</item>."
+msgstr ""
+
+#: 04060106.xhp#hd_id3164641.669.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3164641.669.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3164654.670.help.text
+msgid "<item type=\"input\">=SQRTPI(2)</item> returns the squareroot of (2PI), approximately 2.506628."
+msgstr ""
+
+#: 04060106.xhp#bm_id3164669.help.text
+msgid "<bookmark_value>random numbers; between limits</bookmark_value><bookmark_value>RANDBETWEEN function</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3164669.671.help.text
+msgid "RANDBETWEEN"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3164745.673.help.text
+msgctxt "04060106.xhp#hd_id3164745.673.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3164758.674.help.text
+msgid "RANDBETWEEN(Bottom; Top)"
+msgstr ""
+
+#: 04060106.xhp#par_id7112338.help.text
+msgid "Returns an integer random number between integers <emph>Bottom</emph> and <emph>Top</emph> (both inclusive)."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3164772.675.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3164772.675.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id3164785.676.help.text
+msgid "<item type=\"input\">=RANDBETWEEN(20;30)</item> returns an integer of between 20 and 30."
+msgstr ""
+
+#: 04060106.xhp#bm_id3164800.help.text
+msgid "<bookmark_value>RAND function</bookmark_value><bookmark_value>random numbers;between 0 and 1</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3164800.542.help.text
+#, fuzzy
+msgid "RAND"
+msgstr "AND"
+
+#: 04060106.xhp#par_id3164829.543.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZUFALLSZAHL\">Returns a random number between 0 and 1.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3164870.545.help.text
+msgctxt "04060106.xhp#hd_id3164870.545.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3164884.546.help.text
+msgid "RAND()"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id9089022.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id9089022.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060106.xhp#par_id9569078.help.text
+msgid "<item type=\"input\">=RAND()</item> returns a random number between 0 and 1."
+msgstr ""
+
+#: 04060106.xhp#bm_id3164897.help.text
+msgid "<bookmark_value>COUNTIF function</bookmark_value><bookmark_value>counting;specified cells</bookmark_value>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3164897.547.help.text
+msgid "COUNTIF"
+msgstr ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3164953.549.help.text
+msgctxt "04060106.xhp#hd_id3164953.549.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060106.xhp#par_id3164967.550.help.text
+msgid "COUNTIF(Range; Criteria)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3165037.553.help.text
+#, fuzzy
+msgctxt "04060106.xhp#hd_id3165037.553.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060106.xhp#par_id3581652.help.text
+msgid "<item type=\"input\">=COUNTIF(A1:A10;2006)</item> - this returns 1"
+msgstr ""
+
+#: 04060106.xhp#par_id708639.help.text
+msgid "<item type=\"input\">=COUNTIF(A1:A10;B1)</item> - this returns 1"
+msgstr ""
+
+#: 04060106.xhp#par_id5169225.help.text
+msgid "<item type=\"input\">=COUNTIF(A1:A10;\">=2006\") </item>- this returns 4"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#par_id6386913.help.text
+msgid "To count only negative numbers: <item type=\"input\">=COUNTIF(A1:A10;\"<0\")</item>"
+msgstr ""
+
+#: 02180000.xhp#tit.help.text
+msgctxt "02180000.xhp#tit.help.text"
+msgid "Move or Copy a Sheet"
+msgstr ""
+
+#: 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 ""
+
+#: 02180000.xhp#hd_id3153360.1.help.text
+msgctxt "02180000.xhp#hd_id3153360.1.help.text"
+msgid "Move or Copy a Sheet"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02180000.xhp#hd_id3163710.3.help.text
+msgid "To Document"
+msgstr ""
+
+#: 02180000.xhp#par_id3148645.4.help.text
+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 ""
+
+#: 02180000.xhp#hd_id3154012.5.help.text
+msgid "Insert Before"
+msgstr ""
+
+#: 02180000.xhp#par_id3145366.6.help.text
+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 ""
+
+#: 02180000.xhp#hd_id3153726.7.help.text
+msgid "Copy"
+msgstr "Копіювати"
+
+#: 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 ""
+
+#: 02140500.xhp#tit.help.text
+msgctxt "02140500.xhp#tit.help.text"
+msgid "Fill Sheet"
+msgstr ""
+
+#: 02140500.xhp#hd_id3153897.1.help.text
+msgctxt "02140500.xhp#hd_id3153897.1.help.text"
+msgid "Fill Sheet"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02140500.xhp#hd_id3155131.4.help.text
+msgid "Filling a Sheet"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02140500.xhp#par_id3154942.8.help.text
+msgctxt "02140500.xhp#par_id3154942.8.help.text"
+msgid "Click <emph>OK</emph>."
+msgstr "Натисніть <emph>Гаразд</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 ""
+
+#: 05080200.xhp#tit.help.text
+msgctxt "05080200.xhp#tit.help.text"
+msgid "Remove"
+msgstr ""
+
+#: 05080200.xhp#hd_id3153562.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/05080200.xhp\" name=\"Remove\">Remove</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 05080200.xhp#par_id3148550.2.help.text
+msgid "<ahelp hid=\".uno:DeletePrintArea\">Removes the defined print area.</ahelp>"
+msgstr ""
+
+#: 12100000.xhp#tit.help.text
+msgid "Refresh Range"
+msgstr ""
+
+#: 12100000.xhp#bm_id3153662.help.text
+msgid "<bookmark_value>database ranges; refreshing</bookmark_value>"
+msgstr ""
+
+#: 12100000.xhp#hd_id3153662.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 05060000.xhp#tit.help.text
+msgid "Merge and Center Cells"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 05060000.xhp#par_id3154020.18.help.text
+msgid "Choose <emph>Format - Merge Cells - Merge and Center Cells</emph>"
+msgstr ""
+
+#: 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 ""
+
+#: 05060000.xhp#par_id3149665.3.help.text
+msgid "If the cells to be merged have any contents, a security dialog is shown."
+msgstr ""
+
+#: 05060000.xhp#par_id3153718.help.text
+msgid "Merging cells can lead to calculation errors in formulas in the table."
+msgstr ""
+
+#: 12080600.xhp#tit.help.text
+msgctxt "12080600.xhp#tit.help.text"
+msgid "Remove"
+msgstr ""
+
+#: 12080600.xhp#hd_id3148947.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12080600.xhp\" name=\"Remove\">Remove</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: func_datevalue.xhp#tit.help.text
+msgid "DATEVALUE "
+msgstr ""
+
+#: func_datevalue.xhp#bm_id3145621.help.text
+msgid "<bookmark_value>DATEVALUE function</bookmark_value>"
+msgstr ""
+
+#: func_datevalue.xhp#hd_id3145621.18.help.text
+msgid "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp\">DATEVALUE</link></variable>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: func_datevalue.xhp#hd_id3156294.21.help.text
+msgctxt "func_datevalue.xhp#hd_id3156294.21.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: func_datevalue.xhp#par_id3149268.22.help.text
+msgid "DATEVALUE(\"Text\")"
+msgstr ""
+
+#: 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 ""
+
+#: func_datevalue.xhp#hd_id3156309.24.help.text
+#, fuzzy
+msgctxt "func_datevalue.xhp#hd_id3156309.24.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: func_datevalue.xhp#par_id3155841.25.help.text
+msgid " <emph>=DATEVALUE(\"1954-07-20\")</emph> yields 19925."
+msgstr ""
+
+#: 04060183.xhp#tit.help.text
+msgid "Statistical Functions Part Three"
+msgstr ""
+
+#: 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 ""
+
+#: 04060183.xhp#bm_id3149530.help.text
+msgid "<bookmark_value>LARGE function</bookmark_value>"
+msgstr ""
+
+#: 04060183.xhp#hd_id3149530.2.help.text
+msgid "LARGE"
+msgstr ""
+
+#: 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 ""
+
+#: 04060183.xhp#hd_id3152990.4.help.text
+msgctxt "04060183.xhp#hd_id3152990.4.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060183.xhp#par_id3154372.5.help.text
+msgid "LARGE(Data; RankC)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060183.xhp#par_id3156448.7.help.text
+msgid "<emph>RankC</emph> is the ranking of the value."
+msgstr ""
+
+#: 04060183.xhp#hd_id3152889.8.help.text
+#, fuzzy
+msgctxt "04060183.xhp#hd_id3152889.8.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060183.xhp#bm_id3154532.help.text
+msgid "<bookmark_value>SMALL function</bookmark_value>"
+msgstr ""
+
+#: 04060183.xhp#hd_id3154532.11.help.text
+msgid "SMALL"
+msgstr ""
+
+#: 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 ""
+
+#: 04060183.xhp#hd_id3154957.13.help.text
+msgctxt "04060183.xhp#hd_id3154957.13.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060183.xhp#par_id3153974.14.help.text
+msgid "SMALL(Data; RankC)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060183.xhp#par_id3155094.16.help.text
+msgid "<emph>RankC</emph> is the rank of the value."
+msgstr ""
+
+#: 04060183.xhp#hd_id3153247.17.help.text
+#, fuzzy
+msgctxt "04060183.xhp#hd_id3153247.17.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060183.xhp#bm_id3153559.help.text
+msgid "<bookmark_value>CONFIDENCE function</bookmark_value>"
+msgstr ""
+
+#: 04060183.xhp#hd_id3153559.20.help.text
+msgid "CONFIDENCE"
+msgstr ""
+
+#: 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 ""
+
+#: 04060183.xhp#hd_id3149315.22.help.text
+msgctxt "04060183.xhp#hd_id3149315.22.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060183.xhp#par_id3147501.23.help.text
+msgid "CONFIDENCE(Alpha; StDev; Size)"
+msgstr ""
+
+#: 04060183.xhp#par_id3149872.24.help.text
+msgid "<emph>Alpha</emph> is the level of the confidence interval."
+msgstr ""
+
+#: 04060183.xhp#par_id3145324.25.help.text
+msgid "<emph>StDev</emph> is the standard deviation for the total population."
+msgstr ""
+
+#: 04060183.xhp#par_id3153075.26.help.text
+msgid "<emph>Size</emph> is the size of the total population."
+msgstr ""
+
+#: 04060183.xhp#hd_id3150435.27.help.text
+#, fuzzy
+msgctxt "04060183.xhp#hd_id3150435.27.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060183.xhp#par_id3153335.28.help.text
+msgid "<item type=\"input\">=CONFIDENCE(0.05;1.5;100)</item> gives 0.29."
+msgstr ""
+
+#: 04060183.xhp#bm_id3148746.help.text
+msgid "<bookmark_value>CORREL function</bookmark_value><bookmark_value>coefficient of correlation</bookmark_value>"
+msgstr ""
+
+#: 04060183.xhp#hd_id3148746.30.help.text
+msgid "CORREL"
+msgstr ""
+
+#: 04060183.xhp#par_id3147299.31.help.text
+msgid "<ahelp hid=\"HID_FUNC_KORREL\">Returns the correlation coefficient between two data sets.</ahelp>"
+msgstr ""
+
+#: 04060183.xhp#hd_id3156397.32.help.text
+msgctxt "04060183.xhp#hd_id3156397.32.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060183.xhp#par_id3153023.33.help.text
+msgid "CORREL(Data1; Data2)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060183.xhp#hd_id3149720.36.help.text
+#, fuzzy
+msgctxt "04060183.xhp#hd_id3149720.36.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060183.xhp#bm_id3150652.help.text
+msgid "<bookmark_value>COVAR function</bookmark_value>"
+msgstr ""
+
+#: 04060183.xhp#hd_id3150652.39.help.text
+msgid "COVAR"
+msgstr ""
+
+#: 04060183.xhp#par_id3146875.40.help.text
+msgid "<ahelp hid=\"HID_FUNC_KOVAR\">Returns the covariance of the product of paired deviations.</ahelp>"
+msgstr ""
+
+#: 04060183.xhp#hd_id3149013.41.help.text
+msgctxt "04060183.xhp#hd_id3149013.41.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060183.xhp#par_id3150740.42.help.text
+msgid "COVAR(Data1; Data2)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060183.xhp#hd_id3154677.45.help.text
+#, fuzzy
+msgctxt "04060183.xhp#hd_id3154677.45.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060183.xhp#par_id3144748.46.help.text
+msgid "<item type=\"input\">=COVAR(A1:A30;B1:B30)</item>"
+msgstr ""
+
+#: 04060183.xhp#bm_id3147472.help.text
+msgid "<bookmark_value>CRITBINOM function</bookmark_value>"
+msgstr ""
+
+#: 04060183.xhp#hd_id3147472.48.help.text
+msgid "CRITBINOM"
+msgstr ""
+
+#: 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 ""
+
+#: 04060183.xhp#hd_id3153930.50.help.text
+msgctxt "04060183.xhp#hd_id3153930.50.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060183.xhp#par_id3148586.51.help.text
+msgid "CRITBINOM(Trials; SP; Alpha)"
+msgstr ""
+
+#: 04060183.xhp#par_id3145593.52.help.text
+msgid "<emph>Trials</emph> is the total number of trials."
+msgstr ""
+
+#: 04060183.xhp#par_id3153084.53.help.text
+msgid "<emph>SP</emph> is the probability of success for one trial."
+msgstr ""
+
+#: 04060183.xhp#par_id3149726.54.help.text
+msgid "<emph>Alpha</emph> is the threshold probability to be reached or exceeded."
+msgstr ""
+
+#: 04060183.xhp#hd_id3148752.55.help.text
+#, fuzzy
+msgctxt "04060183.xhp#hd_id3148752.55.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060183.xhp#par_id3148740.56.help.text
+msgid "<item type=\"input\">=CRITBINOM(100;0.5;0.1)</item> yields 44."
+msgstr ""
+
+#: 04060183.xhp#bm_id3155956.help.text
+msgid "<bookmark_value>KURT function</bookmark_value>"
+msgstr ""
+
+#: 04060183.xhp#hd_id3155956.58.help.text
+msgid "KURT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060183.xhp#hd_id3150334.60.help.text
+msgctxt "04060183.xhp#hd_id3150334.60.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060183.xhp#par_id3154508.61.help.text
+msgid "KURT(Number1; Number2; ...Number30)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060183.xhp#hd_id3158000.63.help.text
+#, fuzzy
+msgctxt "04060183.xhp#hd_id3158000.63.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060183.xhp#par_id3150016.64.help.text
+msgid "<item type=\"input\">=KURT(A1;A2;A3;A4;A5;A6)</item>"
+msgstr ""
+
+#: 04060183.xhp#bm_id3150928.help.text
+msgid "<bookmark_value>LOGINV function</bookmark_value><bookmark_value>inverse of lognormal distribution</bookmark_value>"
+msgstr ""
+
+#: 04060183.xhp#hd_id3150928.66.help.text
+msgid "LOGINV"
+msgstr ""
+
+#: 04060183.xhp#par_id3145297.67.help.text
+msgid "<ahelp hid=\"HID_FUNC_LOGINV\">Returns the inverse of the lognormal distribution.</ahelp>"
+msgstr ""
+
+#: 04060183.xhp#hd_id3151016.68.help.text
+msgctxt "04060183.xhp#hd_id3151016.68.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060183.xhp#par_id3153049.69.help.text
+msgid "LOGINV(Number; Mean; StDev)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060183.xhp#par_id3149538.71.help.text
+msgid "<emph>Mean</emph> is the arithmetic mean of the standard logarithmic distribution."
+msgstr ""
+
+#: 04060183.xhp#par_id3145355.72.help.text
+msgid "<emph>StDev</emph> is the standard deviation of the standard logarithmic distribution."
+msgstr ""
+
+#: 04060183.xhp#hd_id3148768.73.help.text
+#, fuzzy
+msgctxt "04060183.xhp#hd_id3148768.73.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060183.xhp#par_id3155623.74.help.text
+msgid "<item type=\"input\">=LOGINV(0.05;0;1)</item> returns 0.19."
+msgstr ""
+
+#: 04060183.xhp#bm_id3158417.help.text
+msgid "<bookmark_value>LOGNORMDIST function</bookmark_value><bookmark_value>cumulative lognormal distribution</bookmark_value>"
+msgstr ""
+
+#: 04060183.xhp#hd_id3158417.76.help.text
+msgid "LOGNORMDIST"
+msgstr ""
+
+#: 04060183.xhp#par_id3154953.77.help.text
+msgid "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Returns the cumulative lognormal distribution.</ahelp>"
+msgstr ""
+
+#: 04060183.xhp#hd_id3150474.78.help.text
+msgctxt "04060183.xhp#hd_id3150474.78.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060183.xhp#par_id3150686.79.help.text
+msgid "LOGNORMDIST(Number; Mean; StDev; Cumulative)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060183.xhp#par_id3155820.81.help.text
+msgid "<emph>Mean</emph> (optional) is the mean value of the standard logarithmic distribution."
+msgstr ""
+
+#: 04060183.xhp#par_id3155991.82.help.text
+msgid "<emph>StDev</emph> (optional) is the standard deviation of the standard logarithmic distribution."
+msgstr ""
+
+#: 04060183.xhp#par_id3155992.help.text
+msgid "<emph>Cumulative</emph> (optional) = 0 calculates the density function, Cumulative = 1 calculates the distribution."
+msgstr ""
+
+#: 04060183.xhp#hd_id3153178.83.help.text
+#, fuzzy
+msgctxt "04060183.xhp#hd_id3153178.83.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060183.xhp#par_id3149778.84.help.text
+msgid "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> returns 0.01."
+msgstr ""
+
+#: 02140200.xhp#tit.help.text
+msgctxt "02140200.xhp#tit.help.text"
+msgid "Right"
+msgstr ""
+
+#: 02140200.xhp#hd_id3153896.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/02140200.xhp\" name=\"Right\">Right</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 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 ""
+
+#: 06060100.xhp#tit.help.text
+msgctxt "06060100.xhp#tit.help.text"
+msgid "Protecting Sheet"
+msgstr ""
+
+#: 06060100.xhp#hd_id3153087.1.help.text
+msgctxt "06060100.xhp#hd_id3153087.1.help.text"
+msgid "Protecting Sheet"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 06060100.xhp#par_id3149123.16.help.text
+msgid "Select the cells that will be unprotected"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 06060100.xhp#hd_id3150206.4.help.text
+msgctxt "06060100.xhp#hd_id3150206.4.help.text"
+msgid "Password (optional)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: func_edate.xhp#tit.help.text
+msgid "EDATE"
+msgstr ""
+
+#: func_edate.xhp#bm_id3151184.help.text
+msgid "<bookmark_value>EDATE function</bookmark_value>"
+msgstr ""
+
+#: func_edate.xhp#hd_id3151184.213.help.text
+msgid "<variable id=\"edate\"><link href=\"text/scalc/01/func_edate.xhp\">EDATE</link></variable>"
+msgstr ""
+
+#: 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 ""
+
+#: func_edate.xhp#hd_id3154647.215.help.text
+msgctxt "func_edate.xhp#hd_id3154647.215.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: func_edate.xhp#par_id3153212.216.help.text
+msgid "EDATE(StartDate; Months)"
+msgstr ""
+
+#: func_edate.xhp#par_id3146860.217.help.text
+msgid "<emph>StartDate</emph> is a date."
+msgstr ""
+
+#: 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 ""
+
+#: func_edate.xhp#hd_id3151289.219.help.text
+#, fuzzy
+msgctxt "func_edate.xhp#hd_id3151289.219.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: func_edate.xhp#par_id3155845.220.help.text
+msgid "What date is one month prior to 3.31.2001?"
+msgstr ""
+
+#: func_edate.xhp#par_id3155999.221.help.text
+msgid "<item type=\"input\">=EDATE(3.31.2001;-1)</item> returns 2.28.2001."
+msgstr ""
+
+#: 04060110.xhp#tit.help.text
+msgctxt "04060110.xhp#tit.help.text"
+msgid "Text Functions"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3145389.1.help.text
+msgctxt "04060110.xhp#hd_id3145389.1.help.text"
+msgid "Text Functions"
+msgstr ""
+
+#: 04060110.xhp#par_id3152986.2.help.text
+msgid "<variable id=\"texttext\">This section contains descriptions of the <emph>Text</emph> functions.</variable>"
+msgstr ""
+
+#: 04060110.xhp#bm_id3149384.help.text
+msgid "<bookmark_value>ARABIC function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3149384.239.help.text
+msgid "ARABIC"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3153011.241.help.text
+msgctxt "04060110.xhp#hd_id3153011.241.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3155523.242.help.text
+msgid "ARABIC(\"Text\")"
+msgstr ""
+
+#: 04060110.xhp#par_id3151193.243.help.text
+msgid " <emph>Text</emph> is the text that represents a Roman number."
+msgstr ""
+
+#: 04060110.xhp#hd_id3155758.244.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3155758.244.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#par_id3154621.245.help.text
+msgid " <item type=\"input\">=ARABIC(\"MXIV\")</item> returns 1014"
+msgstr ""
+
+#: 04060110.xhp#par_id3147553.246.help.text
+msgid " <item type=\"input\">=ARABIC(\"MMII\")</item> returns 2002"
+msgstr ""
+
+#: 04060110.xhp#bm_id8796349.help.text
+msgid "<bookmark_value>ASC function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id7723929.help.text
+msgid "ASC"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id9204992.help.text
+msgctxt "04060110.xhp#hd_id9204992.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id1993774.help.text
+msgid "ASC(\"Text\")"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#par_id2355113.help.text
+msgid "See also JIS function."
+msgstr ""
+
+#: 04060110.xhp#bm_id9323709.help.text
+msgid "<bookmark_value>BAHTTEXT function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id6695455.help.text
+msgid "BAHTTEXT"
+msgstr ""
+
+#: 04060110.xhp#par_id354014.help.text
+msgid "Converts a number to Thai text, including the Thai currency names."
+msgstr ""
+
+#: 04060110.xhp#hd_id9942014.help.text
+msgctxt "04060110.xhp#hd_id9942014.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id8780785.help.text
+msgid "BAHTTEXT(Number)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id9694814.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id9694814.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060110.xhp#bm_id3153072.help.text
+msgid "<bookmark_value>BASE function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3153072.213.help.text
+msgid "BASE"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3146097.215.help.text
+msgctxt "04060110.xhp#hd_id3146097.215.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3155743.216.help.text
+msgid "BASE(Number; Radix; [MinimumLength])"
+msgstr ""
+
+#: 04060110.xhp#par_id3151339.217.help.text
+msgid " <emph>Number</emph> is the positive integer to be converted."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3146323.220.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3146323.220.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#bm_id3156399.help.text
+msgid "<bookmark_value>decimal system; converting to</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#par_id3156399.221.help.text
+msgid " <item type=\"input\">=BASE(17;10;4)</item> returns 0017 in the decimal system."
+msgstr ""
+
+#: 04060110.xhp#bm_id3157871.help.text
+msgid "<bookmark_value>binary system; converting to</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#par_id3157871.222.help.text
+msgid " <item type=\"input\">=BASE(17;2)</item> returns 10001 in the binary system."
+msgstr ""
+
+#: 04060110.xhp#bm_id3145226.help.text
+msgid "<bookmark_value>hexadecimal system; converting to</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#par_id3145226.223.help.text
+msgid " <item type=\"input\">=BASE(255;16;4)</item> returns 00FF in the hexadecimal system."
+msgstr ""
+
+#: 04060110.xhp#bm_id3149321.help.text
+msgid "<bookmark_value>CHAR function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3149321.201.help.text
+msgid "CHAR"
+msgstr "CHAR"
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3149945.203.help.text
+msgctxt "04060110.xhp#hd_id3149945.203.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3145634.204.help.text
+msgid "CHAR(Number)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3152982.207.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3152982.207.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#par_id3149890.208.help.text
+msgid " <item type=\"input\">=CHAR(100)</item> returns the character d."
+msgstr ""
+
+#: 04060110.xhp#par_id0907200910283297.help.text
+msgid "=\"abc\" & CHAR(10) & \"def\" inserts a newline character into the string."
+msgstr ""
+
+#: 04060110.xhp#bm_id3149009.help.text
+msgid "<bookmark_value>CLEAN function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3149009.132.help.text
+msgid "CLEAN"
+msgstr ""
+
+#: 04060110.xhp#par_id3150482.133.help.text
+msgid "<ahelp hid=\"HID_FUNC_SAEUBERN\">All non-printing characters are removed from the string.</ahelp>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3146880.134.help.text
+msgctxt "04060110.xhp#hd_id3146880.134.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3147472.135.help.text
+msgid "CLEAN(\"Text\")"
+msgstr ""
+
+#: 04060110.xhp#par_id3150695.136.help.text
+msgid " <emph>Text</emph> refers to the text from which to remove all non-printable characters."
+msgstr ""
+
+#: 04060110.xhp#bm_id3155498.help.text
+msgid "<bookmark_value>CODE function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3155498.3.help.text
+msgid "CODE"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3155830.5.help.text
+msgctxt "04060110.xhp#hd_id3155830.5.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3149188.6.help.text
+msgid "CODE(\"Text\")"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3154394.8.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3154394.8.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060110.xhp#bm_id3149688.help.text
+msgid "<bookmark_value>CONCATENATE function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3149688.167.help.text
+msgid "CONCATENATE"
+msgstr ""
+
+#: 04060110.xhp#par_id3154524.168.help.text
+msgid "<ahelp hid=\"HID_FUNC_VERKETTEN\">Combines several text strings into one string.</ahelp>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3149542.169.help.text
+msgctxt "04060110.xhp#hd_id3149542.169.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3155954.170.help.text
+msgid "CONCATENATE(\"Text1\"; ...; \"Text30\")"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3153110.172.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3153110.172.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#par_id3150008.173.help.text
+msgid " <item type=\"input\">=CONCATENATE(\"Good \";\"Morning \";\"Mrs. \";\"Doe\")</item> returns: Good Morning Mrs. Doe."
+msgstr ""
+
+#: 04060110.xhp#bm_id3145166.help.text
+msgid "<bookmark_value>DECIMAL function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3145166.225.help.text
+msgid "DECIMAL"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3150014.228.help.text
+msgctxt "04060110.xhp#hd_id3150014.228.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3154328.229.help.text
+msgid "DECIMAL(\"Text\"; Radix)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3156062.232.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3156062.232.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#par_id3145355.233.help.text
+msgid " <item type=\"input\">=DECIMAL(\"17\";10)</item> returns 17."
+msgstr ""
+
+#: 04060110.xhp#par_id3155622.234.help.text
+msgid " <item type=\"input\">=DECIMAL(\"FACE\";16)</item> returns 64206."
+msgstr ""
+
+#: 04060110.xhp#par_id3151015.235.help.text
+msgid " <item type=\"input\">=DECIMAL(\"0101\";2)</item> returns 5."
+msgstr ""
+
+#: 04060110.xhp#bm_id3148402.help.text
+msgid "<bookmark_value>DOLLAR function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3148402.11.help.text
+msgid "DOLLAR"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#par_id3151280.263.help.text
+msgid "You set the currency format in your system settings."
+msgstr ""
+
+#: 04060110.xhp#hd_id3150569.13.help.text
+msgctxt "04060110.xhp#hd_id3150569.13.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3154188.14.help.text
+msgid "DOLLAR(Value; Decimals)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#par_id3145629.16.help.text
+msgid " <emph>Decimals</emph> is the optional number of decimal places."
+msgstr ""
+
+#: 04060110.xhp#hd_id3149030.17.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3149030.17.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#par_id3153546.18.help.text
+msgid " <item type=\"input\">=DOLLAR(255)</item> returns $255.00."
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#bm_id3150685.help.text
+msgid "<bookmark_value>EXACT function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3150685.78.help.text
+msgid "EXACT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3152817.80.help.text
+msgctxt "04060110.xhp#hd_id3152817.80.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3148594.81.help.text
+msgid "EXACT(\"Text1\"; \"Text2\")"
+msgstr ""
+
+#: 04060110.xhp#par_id3153224.82.help.text
+msgid " <emph>Text1</emph> refers to the first text to compare."
+msgstr ""
+
+#: 04060110.xhp#par_id3148637.83.help.text
+msgid " <emph>Text2</emph> is the second text to compare."
+msgstr ""
+
+#: 04060110.xhp#hd_id3149777.84.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3149777.84.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#par_id3156263.85.help.text
+msgid " <item type=\"input\">=EXACT(\"microsystems\";\"Microsystems\")</item> returns FALSE."
+msgstr ""
+
+#: 04060110.xhp#bm_id3152589.help.text
+msgid "<bookmark_value>FIND function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3152589.44.help.text
+msgid "FIND"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3083284.46.help.text
+msgctxt "04060110.xhp#hd_id3083284.46.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3083452.47.help.text
+msgid "FIND(\"FindText\"; \"Text\"; Position)"
+msgstr ""
+
+#: 04060110.xhp#par_id3150608.48.help.text
+msgid " <emph>FindText</emph> refers to the text to be found."
+msgstr ""
+
+#: 04060110.xhp#par_id3152374.49.help.text
+msgid " <emph>Text</emph> is the text where the search takes place."
+msgstr ""
+
+#: 04060110.xhp#par_id3152475.50.help.text
+msgid " <emph>Position</emph> (optional) is the position in the text from which the search starts."
+msgstr ""
+
+#: 04060110.xhp#hd_id3154812.51.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3154812.51.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#par_id3156375.52.help.text
+msgid " <item type=\"input\">=FIND(76;998877665544)</item> returns 6."
+msgstr ""
+
+#: 04060110.xhp#bm_id3149268.help.text
+msgid "<bookmark_value>FIXED function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3149268.34.help.text
+msgid "FIXED"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3152470.36.help.text
+msgctxt "04060110.xhp#hd_id3152470.36.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3147567.37.help.text
+msgid "FIXED(Number; Decimals; NoThousandsSeparators)"
+msgstr ""
+
+#: 04060110.xhp#par_id3151272.38.help.text
+msgid " <emph>Number</emph> refers to the number to be formatted."
+msgstr ""
+
+#: 04060110.xhp#par_id3156322.39.help.text
+msgid " <emph>Decimals</emph> refers to the number of decimal places to be displayed."
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3149040.41.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3149040.41.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060110.xhp#par_id5282143.help.text
+msgid " <item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
+msgstr ""
+
+#: 04060110.xhp#bm_id7319864.help.text
+msgid "<bookmark_value>JIS function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3666188.help.text
+msgid "JIS"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id2212897.help.text
+msgctxt "04060110.xhp#hd_id2212897.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id2504654.help.text
+msgid "JIS(\"Text\")"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#par_id3984496.help.text
+msgid "See also ASC function."
+msgstr ""
+
+#: 04060110.xhp#bm_id3147083.help.text
+msgid "<bookmark_value>LEFT function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3147083.95.help.text
+msgid "LEFT"
+msgstr ""
+
+#: 04060110.xhp#par_id3153622.96.help.text
+msgid "<ahelp hid=\"HID_FUNC_LINKS\">Returns the first character or characters of a text.</ahelp>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3156116.97.help.text
+msgctxt "04060110.xhp#hd_id3156116.97.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3146786.98.help.text
+msgid "LEFT(\"Text\"; Number)"
+msgstr ""
+
+#: 04060110.xhp#par_id3147274.99.help.text
+msgid " <emph>Text</emph> is the text where the initial partial words are to be determined."
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3150260.101.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3150260.101.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#par_id3149141.102.help.text
+msgid " <item type=\"input\">=LEFT(\"output\";3)</item> returns “out”."
+msgstr ""
+
+#: 04060110.xhp#bm_id3156110.help.text
+msgid "<bookmark_value>LEN function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3156110.104.help.text
+msgid "LEN"
+msgstr ""
+
+#: 04060110.xhp#par_id3150147.105.help.text
+msgid "<ahelp hid=\"HID_FUNC_LAENGE\">Returns the length of a string including spaces.</ahelp>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3155108.106.help.text
+msgctxt "04060110.xhp#hd_id3155108.106.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3154063.107.help.text
+msgid "LEN(\"Text\")"
+msgstr ""
+
+#: 04060110.xhp#par_id3146894.108.help.text
+msgid " <emph>Text</emph> is the text whose length is to be determined."
+msgstr ""
+
+#: 04060110.xhp#hd_id3153884.109.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3153884.109.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#par_id3156008.110.help.text
+msgid " <item type=\"input\">=LEN(\"Good Afternoon\")</item> returns 14."
+msgstr ""
+
+#: 04060110.xhp#par_id3154300.111.help.text
+msgid " <item type=\"input\">=LEN(12345.67)</item> returns 8."
+msgstr ""
+
+#: 04060110.xhp#bm_id3153983.help.text
+msgid "<bookmark_value>LOWER function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3153983.87.help.text
+msgid "LOWER"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3155902.89.help.text
+msgctxt "04060110.xhp#hd_id3155902.89.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3150121.90.help.text
+msgid "LOWER(\"Text\")"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3159343.92.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3159343.92.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#par_id3155329.93.help.text
+msgid " <item type=\"input\">=LOWER(\"Sun\")</item> returns sun."
+msgstr ""
+
+#: 04060110.xhp#bm_id3154589.help.text
+msgid "<bookmark_value>MID function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3154589.148.help.text
+msgid "MID"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3148829.150.help.text
+msgctxt "04060110.xhp#hd_id3148829.150.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3150526.151.help.text
+msgid "MID(\"Text\"; Start; Number)"
+msgstr ""
+
+#: 04060110.xhp#par_id3148820.152.help.text
+msgid " <emph>Text</emph> is the text containing the characters to extract."
+msgstr ""
+
+#: 04060110.xhp#par_id3150774.153.help.text
+msgid " <emph>Start</emph> is the position of the first character in the text to extract."
+msgstr ""
+
+#: 04060110.xhp#par_id3153063.154.help.text
+msgid " <emph>Number</emph> specifies the number of characters in the part of the text."
+msgstr ""
+
+#: 04060110.xhp#hd_id3150509.155.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3150509.155.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#par_id3158407.156.help.text
+msgid " <item type=\"input\">=MID(\"office\";2;2)</item> returns ff."
+msgstr ""
+
+#: 04060110.xhp#bm_id3159143.help.text
+msgid "<bookmark_value>PROPER function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3159143.70.help.text
+msgid "PROPER"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3153573.72.help.text
+msgctxt "04060110.xhp#hd_id3153573.72.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3154260.73.help.text
+msgid "PROPER(\"Text\")"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3147529.75.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3147529.75.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#par_id3155364.76.help.text
+msgid " <item type=\"input\">=PROPER(\"open office\")</item> returns Open Office."
+msgstr ""
+
+#: 04060110.xhp#bm_id3149171.help.text
+msgid "<bookmark_value>REPLACE function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3149171.22.help.text
+msgid "REPLACE"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3149159.25.help.text
+msgctxt "04060110.xhp#hd_id3149159.25.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3147286.26.help.text
+msgid "REPLACE(\"Text\"; Position; Length; \"NewText\")"
+msgstr ""
+
+#: 04060110.xhp#par_id3149797.27.help.text
+msgid " <emph>Text</emph> refers to text of which a part will be replaced."
+msgstr ""
+
+#: 04060110.xhp#par_id3166451.28.help.text
+msgid " <emph>Position</emph> refers to the position within the text where the replacement will begin."
+msgstr ""
+
+#: 04060110.xhp#par_id3156040.29.help.text
+msgid " <emph>Length</emph> is the number of characters in <emph>Text</emph> to be replaced."
+msgstr ""
+
+#: 04060110.xhp#par_id3159188.30.help.text
+msgid " <emph>NewText</emph> refers to the text which replaces <emph>Text</emph>."
+msgstr ""
+
+#: 04060110.xhp#hd_id3146958.31.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3146958.31.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060110.xhp#bm_id3149741.help.text
+msgid "<bookmark_value>REPT function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3149741.193.help.text
+msgid "REPT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3152884.195.help.text
+msgctxt "04060110.xhp#hd_id3152884.195.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3150494.196.help.text
+msgid "REPT(\"Text\"; Number)"
+msgstr ""
+
+#: 04060110.xhp#par_id3154859.197.help.text
+msgid " <emph>Text</emph> is the text to be repeated."
+msgstr ""
+
+#: 04060110.xhp#par_id3150638.198.help.text
+msgid " <emph>Number</emph> is the number of repetitions."
+msgstr ""
+
+#: 04060110.xhp#par_id3149922.212.help.text
+msgid "The result can be a maximum of 255 characters."
+msgstr ""
+
+#: 04060110.xhp#hd_id3156213.199.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3156213.199.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#par_id3148626.200.help.text
+msgid " <item type=\"input\">=REPT(\"Good morning\";2)</item> returns Good morningGood morning."
+msgstr ""
+
+#: 04060110.xhp#bm_id3149805.help.text
+msgid "<bookmark_value>RIGHT function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3149805.113.help.text
+msgid "RIGHT"
+msgstr ""
+
+#: 04060110.xhp#par_id3145375.114.help.text
+msgid "<ahelp hid=\"HID_FUNC_RECHTS\">Returns the last character or characters of a text.</ahelp>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3150837.115.help.text
+msgctxt "04060110.xhp#hd_id3150837.115.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3154344.116.help.text
+msgid "RIGHT(\"Text\"; Number)"
+msgstr ""
+
+#: 04060110.xhp#par_id3149426.117.help.text
+msgid " <emph>Text</emph> is the text of which the right part is to be determined."
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3148661.119.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3148661.119.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#par_id3151132.120.help.text
+msgid " <item type=\"input\">=RIGHT(\"Sun\";2)</item> returns un."
+msgstr ""
+
+#: 04060110.xhp#bm_id3153534.help.text
+msgid "<bookmark_value>ROMAN function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3153534.248.help.text
+msgid "ROMAN"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3149299.250.help.text
+msgctxt "04060110.xhp#hd_id3149299.250.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3150593.251.help.text
+msgid "ROMAN(Number; Mode)"
+msgstr ""
+
+#: 04060110.xhp#par_id3156139.252.help.text
+msgid " <emph>Number</emph> is the number that is to be converted into a Roman numeral."
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3145306.254.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3145306.254.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#par_id3151371.255.help.text
+msgid " <item type=\"input\">=ROMAN(999)</item> returns CMXCIX"
+msgstr ""
+
+#: 04060110.xhp#par_id3153938.256.help.text
+msgid " <item type=\"input\">=ROMAN(999;0)</item> returns CMXCIX"
+msgstr ""
+
+#: 04060110.xhp#par_id3148412.257.help.text
+msgid " <item type=\"input\">=ROMAN (999;1)</item> returns LMVLIV"
+msgstr ""
+
+#: 04060110.xhp#par_id3155421.258.help.text
+msgid " <item type=\"input\">=ROMAN(999;2)</item> returns XMIX"
+msgstr ""
+
+#: 04060110.xhp#par_id3149235.259.help.text
+msgid " <item type=\"input\">=ROMAN(999;3)</item> returns VMIV"
+msgstr ""
+
+#: 04060110.xhp#par_id3150624.260.help.text
+msgid " <item type=\"input\">=ROMAN(999;4)</item> returns IM"
+msgstr ""
+
+#: 04060110.xhp#bm_id3151005.help.text
+msgid "<bookmark_value>SEARCH function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3151005.122.help.text
+msgid "SEARCH"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3152964.124.help.text
+msgctxt "04060110.xhp#hd_id3152964.124.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3154671.125.help.text
+msgid "SEARCH(\"FindText\"; \"Text\"; Position)"
+msgstr ""
+
+#: 04060110.xhp#par_id3146080.126.help.text
+msgid " <emph>FindText</emph> is the text to be searched for."
+msgstr ""
+
+#: 04060110.xhp#par_id3154111.127.help.text
+msgid " <emph>Text</emph> is the text where the search will take place."
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3147322.129.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3147322.129.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#par_id3154564.130.help.text
+msgid " <item type=\"input\">=SEARCH(54;998877665544)</item> returns 10."
+msgstr ""
+
+#: 04060110.xhp#bm_id3154830.help.text
+msgid "<bookmark_value>SUBSTITUTE function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3154830.174.help.text
+msgid "SUBSTITUTE"
+msgstr ""
+
+#: 04060110.xhp#par_id3153698.175.help.text
+msgid "<ahelp hid=\"HID_FUNC_WECHSELN\">Substitutes new text for old text in a string.</ahelp>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3150994.176.help.text
+msgctxt "04060110.xhp#hd_id3150994.176.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3147582.177.help.text
+msgid "SUBSTITUTE(\"Text\"; \"SearchText\"; \"NewText\"; Occurrence)"
+msgstr ""
+
+#: 04060110.xhp#par_id3153675.178.help.text
+msgid " <emph>Text</emph> is the text in which text segments are to be exchanged."
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#par_id3145779.180.help.text
+msgid " <emph>NewText</emph> is the text that is to replace the text segment."
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3150946.182.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3150946.182.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#par_id3150412.183.help.text
+msgid " <item type=\"input\">=SUBSTITUTE(\"123123123\";\"3\";\"abc\")</item> returns 12abc12abc12abc."
+msgstr ""
+
+#: 04060110.xhp#par_id3154915.238.help.text
+msgid " <item type=\"input\">=SUBSTITUTE(\"123123123\";\"3\";\"abc\";2)</item> returns 12312abc123."
+msgstr ""
+
+#: 04060110.xhp#bm_id3148977.help.text
+msgid "<bookmark_value>T function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3148977.140.help.text
+msgid "T"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3155858.142.help.text
+msgctxt "04060110.xhp#hd_id3155858.142.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3155871.143.help.text
+msgid "T(Value)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3155544.145.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3155544.145.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#par_id3151062.146.help.text
+msgid " <item type=\"input\">=T(12345)</item> returns an empty string. "
+msgstr ""
+
+#: 04060110.xhp#par_id4650105.help.text
+msgid " <item type=\"input\">=T(\"12345\")</item> returns the string 12345."
+msgstr ""
+
+#: 04060110.xhp#bm_id3147132.help.text
+msgid "<bookmark_value>TEXT function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3147132.158.help.text
+msgid "TEXT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3153129.160.help.text
+msgctxt "04060110.xhp#hd_id3153129.160.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3147377.161.help.text
+msgid "TEXT(Number; Format)"
+msgstr ""
+
+#: 04060110.xhp#par_id3147389.162.help.text
+msgid " <emph>Number</emph> is the numerical value to be converted."
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id1243629.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id1243629.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#par_id9044770.help.text
+msgid " <item type=\"input\">=TEXT(12.34567;\"###.##\")</item> returns the text 12.35"
+msgstr ""
+
+#: 04060110.xhp#par_id3674123.help.text
+msgid " <item type=\"input\">=TEXT(12.34567;\"000.00\")</item> returns the text 012.35"
+msgstr ""
+
+#: 04060110.xhp#bm_id3151039.help.text
+msgid "<bookmark_value>TRIM function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3151039.54.help.text
+msgid "TRIM"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3152913.56.help.text
+msgctxt "04060110.xhp#hd_id3152913.56.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3151349.57.help.text
+msgid "TRIM(\"Text\")"
+msgstr ""
+
+#: 04060110.xhp#par_id3151362.58.help.text
+msgid " <emph>Text</emph> refers to text in which spaces are removed."
+msgstr ""
+
+#: 04060110.xhp#hd_id3146838.59.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3146838.59.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#par_id3156074.60.help.text
+msgid " <item type=\"input\">=TRIM(\"hello\")</item> returns hello."
+msgstr ""
+
+#: 04060110.xhp#bm_id0907200904030935.help.text
+msgid "<bookmark_value>UNICHAR function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id0907200904022525.help.text
+msgid "UNICHAR"
+msgstr ""
+
+#: 04060110.xhp#par_id0907200904022538.help.text
+msgid "<ahelp hid=\".\">Converts a code number into a Unicode character or letter.</ahelp>"
+msgstr ""
+
+#: 04060110.xhp#hd_id0907200904123753.help.text
+msgctxt "04060110.xhp#hd_id0907200904123753.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id0907200904123753.help.text
+msgid "UNICHAR(number)"
+msgstr ""
+
+#: 04060110.xhp#hd_id0907200904123720.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id0907200904123720.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#par_id090720090412378.help.text
+msgid "=UNICHAR(169) returns the Copyright character <emph>©</emph>."
+msgstr ""
+
+#: 04060110.xhp#bm_id0907200904033543.help.text
+msgid "<bookmark_value>UNICODE function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id0907200904022588.help.text
+msgid "UNICODE"
+msgstr ""
+
+#: 04060110.xhp#par_id0907200904022594.help.text
+msgid "<ahelp hid=\".\">Returns the numeric code for the first Unicode character in a text string.</ahelp>"
+msgstr ""
+
+#: 04060110.xhp#hd_id0907200904123874.help.text
+msgctxt "04060110.xhp#hd_id0907200904123874.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id0907200904123846.help.text
+msgid "UNICODE(\"Text\")"
+msgstr ""
+
+#: 04060110.xhp#hd_id0907200904123899.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id0907200904123899.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#par_id0907200904123919.help.text
+msgid "=UNICODE(\"©\") returns the Unicode number 169 for the Copyright character."
+msgstr ""
+
+#: 04060110.xhp#bm_id3145178.help.text
+msgid "<bookmark_value>UPPER function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3145178.62.help.text
+msgid "UPPER"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3148526.64.help.text
+msgctxt "04060110.xhp#hd_id3148526.64.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3148539.65.help.text
+msgid "UPPER(\"Text\")"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id3148516.67.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3148516.67.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#par_id3146757.68.help.text
+msgid " <item type=\"input\">=UPPER(\"Good Morning\")</item> returns GOOD MORNING."
+msgstr ""
+
+#: 04060110.xhp#bm_id3150802.help.text
+msgid "<bookmark_value>VALUE function</bookmark_value>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3150802.185.help.text
+msgid "VALUE"
+msgstr ""
+
+#: 04060110.xhp#par_id3152551.186.help.text
+msgid "<ahelp hid=\"HID_FUNC_WERT\">Converts a text string into a number.</ahelp>"
+msgstr ""
+
+#: 04060110.xhp#hd_id3152568.187.help.text
+msgctxt "04060110.xhp#hd_id3152568.187.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060110.xhp#par_id3153638.188.help.text
+msgid "VALUE(\"Text\")"
+msgstr ""
+
+#: 04060110.xhp#par_id3153651.189.help.text
+msgid " <emph>Text</emph> is the text to be converted to a number."
+msgstr ""
+
+#: 04060110.xhp#hd_id3144719.190.help.text
+#, fuzzy
+msgctxt "04060110.xhp#hd_id3144719.190.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060110.xhp#par_id3144733.191.help.text
+msgid " <item type=\"input\">=VALUE(\"4321\")</item> returns 4321."
+msgstr ""
+
+#: 12080300.xhp#tit.help.text
+msgid "Group"
+msgstr ""
+
+#: 12080300.xhp#hd_id3153088.1.help.text
+#, fuzzy
+msgctxt "12080300.xhp#hd_id3153088.1.help.text"
+msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 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 ""
+
+#: 12080300.xhp#hd_id3125863.4.help.text
+msgid "Include"
+msgstr ""
+
+#: 12080300.xhp#hd_id3150448.6.help.text
+msgctxt "12080300.xhp#hd_id3150448.6.help.text"
+msgid "Rows"
+msgstr ""
+
+#: 12080300.xhp#par_id3153194.7.help.text
+msgid "<ahelp hid=\"HID_SC_GROUP_ROWS\" visibility=\"visible\">Groups the selected rows.</ahelp>"
+msgstr ""
+
+#: 12080300.xhp#hd_id3145786.8.help.text
+msgctxt "12080300.xhp#hd_id3145786.8.help.text"
+msgid "Columns"
+msgstr ""
+
+#: 12080300.xhp#par_id3146984.9.help.text
+msgid "<ahelp hid=\"HID_SC_GROUP_COLS\" visibility=\"visible\">Groups the selected columns.</ahelp>"
+msgstr ""
+
+#: 06130000.xhp#tit.help.text
+msgid "AutoInput"
+msgstr ""
+
+#: 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 ""
+
+#: 06130000.xhp#hd_id3148492.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"AutoInput\">AutoInput</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 06130000.xhp#par_id3156422.8.help.text
+msgid "The completion text is highlighted."
+msgstr ""
+
+#: 06130000.xhp#par_idN1065D.help.text
+msgid "To accept the completion, press <item type=\"keycode\">Enter</item> or a cursor key."
+msgstr ""
+
+#: 06130000.xhp#par_idN10665.help.text
+msgid "To append text or to edit the completion, press <item type=\"keycode\">F2</item>."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 12040100.xhp#tit.help.text
+msgid "AutoFilter"
+msgstr ""
+
+#: 12040100.xhp#hd_id3153541.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 12040100.xhp#par_id3145171.3.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Default filter\">Default filter</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 06020000.xhp#tit.help.text
+msgctxt "06020000.xhp#tit.help.text"
+msgid "Hyphenation"
+msgstr ""
+
+#: 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 ""
+
+#: 06020000.xhp#hd_id3159399.1.help.text
+msgctxt "06020000.xhp#hd_id3159399.1.help.text"
+msgid "Hyphenation"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 06020000.xhp#hd_id3153192.4.help.text
+msgid "Hyphenation for selected cells."
+msgstr ""
+
+#: 06020000.xhp#par_id3150868.5.help.text
+msgid "Select the cells for which you want to change the hyphenation."
+msgstr ""
+
+#: 06020000.xhp#par_id3150440.6.help.text
+msgctxt "06020000.xhp#par_id3150440.6.help.text"
+msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
+msgstr ""
+
+#: 06020000.xhp#par_id3156441.7.help.text
+msgid "The <emph>Format Cells</emph> dialog appears with the <emph>Alignment</emph> tab page open."
+msgstr ""
+
+#: 06020000.xhp#par_id3149260.12.help.text
+msgid "Mark the <emph>Wrap text automatically</emph> and <emph>Hyphenation active</emph> check boxes."
+msgstr ""
+
+#: 06020000.xhp#hd_id3153094.8.help.text
+msgid "Hyphenation for Drawing Objects"
+msgstr ""
+
+#: 06020000.xhp#par_id3148577.9.help.text
+msgid "Select a drawing object."
+msgstr ""
+
+#: 06020000.xhp#par_id3156285.10.help.text
+msgctxt "06020000.xhp#par_id3156285.10.help.text"
+msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
+msgstr ""
+
+#: 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 ""
+
+#: 02190100.xhp#tit.help.text
+msgctxt "02190100.xhp#tit.help.text"
+msgid "Row Break"
+msgstr ""
+
+#: 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 ""
+
+#: 02190100.xhp#hd_id3156326.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/02190100.xhp\" name=\"Row Break\">Row Break</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 02190100.xhp#par_id3154366.2.help.text
+msgid "<ahelp hid=\".uno:DeleteRowbreak\">Removes the manual row break above the active cell.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 06030800.xhp#tit.help.text
+msgid "Mark Invalid Data"
+msgstr ""
+
+#: 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 ""
+
+#: 06030800.xhp#hd_id3153821.1.help.text
+msgid "<link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\">Mark Invalid Data</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 12090105.xhp#tit.help.text
+msgctxt "12090105.xhp#tit.help.text"
+msgid "Data field"
+msgstr ""
+
+#: 12090105.xhp#bm_id7292397.help.text
+#, fuzzy
+msgid "<bookmark_value>calculating;pivot table</bookmark_value>"
+msgstr "<bookmark_value>пошук; повторення пошуку</bookmark_value>"
+
+#: 12090105.xhp#hd_id3150871.1.help.text
+msgctxt "12090105.xhp#hd_id3150871.1.help.text"
+msgid "Data field"
+msgstr ""
+
+#: 12090105.xhp#par_id3154124.16.help.text
+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 ""
+
+#: 12090105.xhp#hd_id3152596.2.help.text
+msgctxt "12090105.xhp#hd_id3152596.2.help.text"
+msgid "Subtotals"
+msgstr ""
+
+#: 12090105.xhp#par_id3151113.3.help.text
+msgid "<ahelp hid=\"HID_SC_PIVOTSUBT\">Specify the subtotals that you want to calculate.</ahelp>"
+msgstr ""
+
+#: 12090105.xhp#hd_id3145366.4.help.text
+msgid "None"
+msgstr ""
+
+#: 12090105.xhp#par_id3152576.5.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_NONE\">Does not calculate subtotals.</ahelp>"
+msgstr ""
+
+#: 12090105.xhp#hd_id3154012.6.help.text
+msgid "Automatic"
+msgstr ""
+
+#: 12090105.xhp#par_id3155856.7.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_AUTO\">Automatically calculates subtotals.</ahelp>"
+msgstr ""
+
+#: 12090105.xhp#hd_id3155411.8.help.text
+msgid "User-defined"
+msgstr ""
+
+#: 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 ""
+
+#: 12090105.xhp#hd_id3147124.10.help.text
+#, fuzzy
+msgctxt "12090105.xhp#hd_id3147124.10.help.text"
+msgid "Function"
+msgstr "Функції"
+
+#: 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 ""
+
+#: 12090105.xhp#hd_id3154944.14.help.text
+msgid "Show elements without data"
+msgstr ""
+
+#: 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 ""
+
+#: 12090105.xhp#hd_id3149122.12.help.text
+msgid "Name:"
+msgstr ""
+
+#: 12090105.xhp#par_id3150749.13.help.text
+msgid "Lists the name of the selected data field."
+msgstr ""
+
+#: 12090105.xhp#par_idN106EC.help.text
+msgctxt "12090105.xhp#par_idN106EC.help.text"
+msgid "More"
+msgstr ""
+
+#: 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 ""
+
+#: 12090105.xhp#par_idN106F3.help.text
+msgctxt "12090105.xhp#par_idN106F3.help.text"
+msgid "Options"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 12090105.xhp#par_idN1070B.help.text
+msgctxt "12090105.xhp#par_idN1070B.help.text"
+msgid "Displayed value"
+msgstr ""
+
+#: 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 ""
+
+#: 12090105.xhp#par_idN10712.help.text
+msgctxt "12090105.xhp#par_idN10712.help.text"
+msgid "Type"
+msgstr ""
+
+#: 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 ""
+
+#: 12090105.xhp#par_idN10724.help.text
+msgctxt "12090105.xhp#par_idN10724.help.text"
+msgid "Type"
+msgstr ""
+
+#: 12090105.xhp#par_idN1072A.help.text
+msgctxt "12090105.xhp#par_idN1072A.help.text"
+msgid "Displayed value"
+msgstr ""
+
+#: 12090105.xhp#par_idN10731.help.text
+msgid "Normal"
+msgstr ""
+
+#: 12090105.xhp#par_idN10737.help.text
+msgid "Results are shown unchanged"
+msgstr ""
+
+#: 12090105.xhp#par_idN1073E.help.text
+msgid "Difference from"
+msgstr ""
+
+#: 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 ""
+
+#: 12090105.xhp#par_idN10747.help.text
+msgid "<emph>Named item</emph>"
+msgstr ""
+
+#: 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 ""
+
+#: 12090105.xhp#par_idN1074F.help.text
+msgid "<emph>Previous item or Next item</emph>"
+msgstr ""
+
+#: 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 ""
+
+#: 12090105.xhp#par_idN1075B.help.text
+msgid "% Of"
+msgstr ""
+
+#: 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 ""
+
+#: 12090105.xhp#par_idN1076A.help.text
+msgid "% Difference from"
+msgstr ""
+
+#: 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 ""
+
+#: 12090105.xhp#par_idN10777.help.text
+msgid "Running total in"
+msgstr ""
+
+#: 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 ""
+
+#: 12090105.xhp#par_idN10780.help.text
+msgid "Results are always summed, even if a different summary function was used to get each result."
+msgstr ""
+
+#: 12090105.xhp#par_idN10787.help.text
+msgid "% of row"
+msgstr ""
+
+#: 12090105.xhp#par_idN1078D.help.text
+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 ""
+
+#: 12090105.xhp#par_idN10794.help.text
+msgid "% of column"
+msgstr ""
+
+#: 12090105.xhp#par_idN1079A.help.text
+msgid "Same as \"% of row\", but the total for the result's column is used."
+msgstr ""
+
+#: 12090105.xhp#par_idN107A1.help.text
+msgid "% of total"
+msgstr ""
+
+#: 12090105.xhp#par_idN107A7.help.text
+msgid "Same as \"% of row\", but the grand total for the result's data field is used."
+msgstr ""
+
+#: 12090105.xhp#par_idN107AE.help.text
+msgid "Index"
+msgstr ""
+
+#: 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 ""
+
+#: 12090105.xhp#par_idN107B7.help.text
+msgid "( original result * grand total ) / ( row total * column total )"
+msgstr ""
+
+#: 12090105.xhp#par_idN107BA.help.text
+msgid "Base field"
+msgstr ""
+
+#: 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 ""
+
+#: 12090105.xhp#par_idN107C1.help.text
+msgid "Base item"
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#tit.help.text
+msgctxt "04060119.xhp#tit.help.text"
+msgid "Financial Functions Part Two"
+msgstr ""
+
+#: 04060119.xhp#hd_id3149052.1.help.text
+msgctxt "04060119.xhp#hd_id3149052.1.help.text"
+msgid "Financial Functions Part Two"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#bm_id3150026.help.text
+msgid "<bookmark_value>PPMT function</bookmark_value>"
+msgstr ""
+
+#: 04060119.xhp#hd_id3150026.238.help.text
+msgid "PPMT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3150459.240.help.text
+msgctxt "04060119.xhp#hd_id3150459.240.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060119.xhp#par_id3146878.241.help.text
+msgid "PPMT(Rate; Period; NPer; PV; FV; Type)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#par_id3148436.244.help.text
+msgid "<emph>NPer</emph> is the total number of periods during which annuity is paid."
+msgstr ""
+
+#: 04060119.xhp#par_id3153035.245.help.text
+msgid "<emph>PV</emph> is the present value in the sequence of payments."
+msgstr ""
+
+#: 04060119.xhp#par_id3147474.246.help.text
+msgid "<emph>FV</emph> (optional) is the desired (future) value."
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#par_idN1067C.help.text
+msgctxt "04060119.xhp#par_idN1067C.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr ""
+
+#: 04060119.xhp#hd_id3148582.248.help.text
+#, fuzzy
+msgctxt "04060119.xhp#hd_id3148582.248.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3146139.252.help.text
+msgid "CUMPRINC"
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3149188.254.help.text
+msgctxt "04060119.xhp#hd_id3149188.254.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060119.xhp#par_id3148733.255.help.text
+msgid "CUMPRINC(Rate; NPer; PV; S; E; Type)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#par_id3153112.259.help.text
+msgctxt "04060119.xhp#par_id3153112.259.help.text"
+msgid "<emph>S</emph> is the first period."
+msgstr ""
+
+#: 04060119.xhp#par_id3146847.260.help.text
+msgctxt "04060119.xhp#par_id3146847.260.help.text"
+msgid "<emph>E</emph> is the last period."
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3154502.262.help.text
+#, fuzzy
+msgctxt "04060119.xhp#hd_id3154502.262.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#bm_id3150019.help.text
+msgid "<bookmark_value>CUMPRINC_ADD function</bookmark_value>"
+msgstr ""
+
+#: 04060119.xhp#hd_id3150019.182.help.text
+msgid "CUMPRINC_ADD"
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3153047.184.help.text
+msgctxt "04060119.xhp#hd_id3153047.184.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060119.xhp#par_id3157970.185.help.text
+msgid "CUMPRINC_ADD(Rate; NPer; PV; StartPeriod; EndPeriod; Type)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#par_id3155620.188.help.text
+msgctxt "04060119.xhp#par_id3155620.188.help.text"
+msgid "<emph>PV</emph> is the current value."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3150269.192.help.text
+#, fuzzy
+msgctxt "04060119.xhp#hd_id3150269.192.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#par_id3149026.197.help.text
+msgid "In the first month you will be repaying the following amount:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3155370.266.help.text
+msgid "CUMIPMT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3155814.268.help.text
+msgctxt "04060119.xhp#hd_id3155814.268.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060119.xhp#par_id3147536.269.help.text
+msgid "CUMIPMT(Rate; NPer; PV; S; E; Type)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#par_id3156259.273.help.text
+msgctxt "04060119.xhp#par_id3156259.273.help.text"
+msgid "<emph>S</emph> is the first period."
+msgstr ""
+
+#: 04060119.xhp#par_id3155990.274.help.text
+msgctxt "04060119.xhp#par_id3155990.274.help.text"
+msgid "<emph>E</emph> is the last period."
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3153723.276.help.text
+#, fuzzy
+msgctxt "04060119.xhp#hd_id3153723.276.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#bm_id3083280.help.text
+msgid "<bookmark_value>CUMIPMT_ADD function</bookmark_value>"
+msgstr ""
+
+#: 04060119.xhp#hd_id3083280.165.help.text
+msgid "CUMIPMT_ADD"
+msgstr ""
+
+#: 04060119.xhp#par_id3152482.166.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_CUMIPMT\">Calculates the accumulated interest for a period.</ahelp>"
+msgstr ""
+
+#: 04060119.xhp#hd_id3149713.167.help.text
+msgctxt "04060119.xhp#hd_id3149713.167.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060119.xhp#par_id3145087.168.help.text
+msgid "CUMIPMT_ADD(Rate; NPer; PV; StartPeriod; EndPeriod; Type)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#par_id3152967.171.help.text
+msgctxt "04060119.xhp#par_id3152967.171.help.text"
+msgid "<emph>PV</emph> is the current value."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3152933.175.help.text
+#, fuzzy
+msgctxt "04060119.xhp#hd_id3152933.175.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#par_id3150764.180.help.text
+msgid "How much interest must you pay in the first month?"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3150878.9.help.text
+msgid "PRICE"
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3154646.11.help.text
+msgctxt "04060119.xhp#hd_id3154646.11.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060119.xhp#par_id3152804.12.help.text
+msgid "PRICE(Settlement; Maturity; Rate; Yield; Redemption; Frequency; Basis)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#par_id3153755.15.help.text
+msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3153148.19.help.text
+#, fuzzy
+msgctxt "04060119.xhp#hd_id3153148.19.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3151297.22.help.text
+msgid "PRICEDISC"
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3149294.24.help.text
+msgctxt "04060119.xhp#hd_id3149294.24.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060119.xhp#par_id3146084.25.help.text
+msgid "PRICEDISC(Settlement; Maturity; Discount; Redemption; Basis)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#par_id3156014.28.help.text
+msgid "<emph>Discount</emph> is the discount of a security as a percentage."
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3152794.30.help.text
+#, fuzzy
+msgctxt "04060119.xhp#hd_id3152794.30.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060119.xhp#par_id3151178.32.help.text
+msgid "=PRICEDISC(\"1999-02-15\"; \"1999-03-01\"; 0.0525; 100; 2) returns 99.79583."
+msgstr ""
+
+#: 04060119.xhp#bm_id3154693.help.text
+msgid "<bookmark_value>PRICEMAT function</bookmark_value><bookmark_value>prices;interest-bearing securities</bookmark_value>"
+msgstr ""
+
+#: 04060119.xhp#hd_id3154693.33.help.text
+msgid "PRICEMAT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3154933.35.help.text
+msgctxt "04060119.xhp#hd_id3154933.35.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060119.xhp#par_id3155393.36.help.text
+msgid "PRICEMAT(Settlement; Maturity; Issue; Rate; Yield; Basis)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3150507.42.help.text
+#, fuzzy
+msgctxt "04060119.xhp#hd_id3150507.42.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060119.xhp#par_id3154905.44.help.text
+msgid "The price is calculated as follows:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3148448.280.help.text
+msgid "DURATION"
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3145421.282.help.text
+msgctxt "04060119.xhp#hd_id3145421.282.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060119.xhp#par_id3148933.283.help.text
+msgid "DURATION(Rate; PV; FV)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3153579.287.help.text
+#, fuzzy
+msgctxt "04060119.xhp#hd_id3153579.287.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3148912.290.help.text
+msgid "SLN"
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3153240.292.help.text
+msgctxt "04060119.xhp#hd_id3153240.292.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060119.xhp#par_id3166456.293.help.text
+msgid "SLN(Cost; Salvage; Life)"
+msgstr ""
+
+#: 04060119.xhp#par_id3146955.294.help.text
+msgid "<emph>Cost</emph> is the initial cost of an asset."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3155579.297.help.text
+#, fuzzy
+msgctxt "04060119.xhp#hd_id3155579.297.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#bm_id3153739.help.text
+msgid "<bookmark_value>MDURATION function</bookmark_value><bookmark_value>Macauley duration</bookmark_value>"
+msgstr ""
+
+#: 04060119.xhp#hd_id3153739.217.help.text
+msgid "MDURATION"
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3149964.219.help.text
+msgctxt "04060119.xhp#hd_id3149964.219.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060119.xhp#par_id3148987.220.help.text
+msgid "MDURATION(Settlement; Maturity; Coupon; Yield; Frequency; Basis)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#par_id3154338.223.help.text
+msgid "<emph>Coupon</emph> is the annual nominal rate of interest (coupon interest rate)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3154602.226.help.text
+#, fuzzy
+msgctxt "04060119.xhp#hd_id3154602.226.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3149242.301.help.text
+msgid "NPV"
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3149937.303.help.text
+msgctxt "04060119.xhp#hd_id3149937.303.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060119.xhp#par_id3153321.304.help.text
+msgid "NPV(Rate; Value1; Value2; ...)"
+msgstr ""
+
+#: 04060119.xhp#par_id3150630.305.help.text
+msgid "<emph>Rate</emph> is the discount rate for a period."
+msgstr ""
+
+#: 04060119.xhp#par_id3150427.306.help.text
+msgid "<emph>Value1;...</emph> are up to 30 values, which represent deposits or withdrawals."
+msgstr ""
+
+#: 04060119.xhp#hd_id3153538.307.help.text
+#, fuzzy
+msgctxt "04060119.xhp#hd_id3153538.307.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3149484.311.help.text
+msgid "NOMINAL"
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3151252.313.help.text
+msgctxt "04060119.xhp#hd_id3151252.313.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060119.xhp#par_id3152769.314.help.text
+msgid "NOMINAL(EffectiveRate; NPerY)"
+msgstr ""
+
+#: 04060119.xhp#par_id3147521.315.help.text
+msgid "<emph>EffectiveRate</emph> is the effective interest rate"
+msgstr ""
+
+#: 04060119.xhp#par_id3156334.316.help.text
+msgid "<emph>NPerY</emph> is the number of periodic interest payments per year."
+msgstr ""
+
+#: 04060119.xhp#hd_id3154473.317.help.text
+#, fuzzy
+msgctxt "04060119.xhp#hd_id3154473.317.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#bm_id3155123.help.text
+msgid "<bookmark_value>NOMINAL_ADD function</bookmark_value>"
+msgstr ""
+
+#: 04060119.xhp#hd_id3155123.229.help.text
+msgid "NOMINAL_ADD"
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3155611.231.help.text
+msgctxt "04060119.xhp#hd_id3155611.231.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060119.xhp#par_id3156157.232.help.text
+msgid "NOMINAL_ADD(EffectiveRate; NPerY)"
+msgstr ""
+
+#: 04060119.xhp#par_id3153777.233.help.text
+msgid "<emph>EffectiveRate</emph> is the effective annual rate of interest."
+msgstr ""
+
+#: 04060119.xhp#par_id3150409.234.help.text
+msgid "<emph>NPerY</emph> the number of interest payments per year."
+msgstr ""
+
+#: 04060119.xhp#hd_id3146789.235.help.text
+#, fuzzy
+msgctxt "04060119.xhp#hd_id3146789.235.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060119.xhp#par_id3156146.237.help.text
+msgid "<item type=\"input\">=NOMINAL_ADD(5.3543%;4)</item> returns 0.0525 or 5.25%."
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3159087.208.help.text
+msgid "DOLLARFR"
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3151106.210.help.text
+msgctxt "04060119.xhp#hd_id3151106.210.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060119.xhp#par_id3152959.211.help.text
+msgid "DOLLARFR(DecimalDollar; Fraction)"
+msgstr ""
+
+#: 04060119.xhp#par_id3149558.212.help.text
+msgid "<emph>DecimalDollar</emph> is a decimal number."
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3156274.214.help.text
+#, fuzzy
+msgctxt "04060119.xhp#hd_id3156274.214.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3154671.199.help.text
+msgid "DOLLARDE"
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3146124.201.help.text
+msgctxt "04060119.xhp#hd_id3146124.201.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060119.xhp#par_id3150348.202.help.text
+msgid "DOLLARDE(FractionalDollar; Fraction)"
+msgstr ""
+
+#: 04060119.xhp#par_id3154111.203.help.text
+msgid "<emph>FractionalDollar</emph> is a number given as a decimal fraction."
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3153884.205.help.text
+#, fuzzy
+msgctxt "04060119.xhp#hd_id3153884.205.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3148974.321.help.text
+msgid "MIRR"
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3154354.323.help.text
+msgctxt "04060119.xhp#hd_id3154354.323.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060119.xhp#par_id3148399.324.help.text
+msgid "MIRR(Values; Investment; ReinvestRate)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3154714.328.help.text
+#, fuzzy
+msgctxt "04060119.xhp#hd_id3154714.328.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3149323.129.help.text
+msgid "YIELD"
+msgstr ""
+
+#: 04060119.xhp#par_id3150643.130.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_YIELD\">Calculates the yield of a security.</ahelp>"
+msgstr ""
+
+#: 04060119.xhp#hd_id3149344.131.help.text
+msgctxt "04060119.xhp#hd_id3149344.131.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060119.xhp#par_id3149744.132.help.text
+msgid "YIELD(Settlement; Maturity; Rate; Price; Redemption; Frequency; Basis)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#par_id3147314.136.help.text
+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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3147547.139.help.text
+#, fuzzy
+msgctxt "04060119.xhp#hd_id3147547.139.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3150100.142.help.text
+msgid "YIELDDISC"
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3149171.144.help.text
+msgctxt "04060119.xhp#hd_id3149171.144.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060119.xhp#par_id3159191.145.help.text
+msgid "YIELDDISC(Settlement; Maturity; Price; Redemption; Basis)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3154139.150.help.text
+#, fuzzy
+msgctxt "04060119.xhp#hd_id3154139.150.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3155140.153.help.text
+msgid "YIELDMAT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3159100.155.help.text
+msgctxt "04060119.xhp#hd_id3159100.155.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060119.xhp#par_id3159113.156.help.text
+msgid "YIELDMAT(Settlement; Maturity; Issue; Rate; Price; Basis)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3155342.162.help.text
+#, fuzzy
+msgctxt "04060119.xhp#hd_id3155342.162.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3149577.330.help.text
+msgid "PMT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3145257.332.help.text
+msgctxt "04060119.xhp#hd_id3145257.332.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060119.xhp#par_id3147278.333.help.text
+msgid "PMT(Rate; NPer; PV; FV; Type)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#par_id3148641.335.help.text
+msgid "<emph>NPer</emph> is the number of periods in which annuity is paid."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#par_idN11645.help.text
+msgctxt "04060119.xhp#par_idN11645.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr ""
+
+#: 04060119.xhp#hd_id3152358.339.help.text
+#, fuzzy
+msgctxt "04060119.xhp#hd_id3152358.339.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3155799.58.help.text
+msgid "TBILLEQ"
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3155080.60.help.text
+msgctxt "04060119.xhp#hd_id3155080.60.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060119.xhp#par_id3150224.61.help.text
+msgid "TBILLEQ(Settlement; Maturity; Discount)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#par_id3150310.64.help.text
+msgid "<emph>Discount</emph> is the percentage discount on acquisition of the security."
+msgstr ""
+
+#: 04060119.xhp#hd_id3150324.65.help.text
+#, fuzzy
+msgctxt "04060119.xhp#hd_id3150324.65.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060119.xhp#par_id3153173.66.help.text
+msgid "Settlement date: March 31 1999, maturity date: June 1 1999, discount: 9.14 per cent."
+msgstr ""
+
+#: 04060119.xhp#par_id3153520.67.help.text
+msgid "The return on the treasury bill corresponding to a security is worked out as follows:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3151032.69.help.text
+msgid "TBILLPRICE"
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3156374.71.help.text
+msgctxt "04060119.xhp#hd_id3156374.71.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060119.xhp#par_id3150284.72.help.text
+msgid "TBILLPRICE(Settlement; Maturity; Discount)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#par_id3145765.75.help.text
+msgid "<emph>Discount</emph> is the percentage discount upon acquisition of the security."
+msgstr ""
+
+#: 04060119.xhp#hd_id3153373.76.help.text
+#, fuzzy
+msgctxt "04060119.xhp#hd_id3153373.76.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060119.xhp#par_id3155542.77.help.text
+msgid "Settlement date: March 31 1999, maturity date: June 1 1999, discount: 9 per cent."
+msgstr ""
+
+#: 04060119.xhp#par_id3154578.78.help.text
+msgid "The price of the treasury bill is worked out as follows:"
+msgstr ""
+
+#: 04060119.xhp#par_id3154592.79.help.text
+msgid "=TBILLPRICE(\"1999-03-31\";\"1999-06-01\"; 0.09) returns 98.45."
+msgstr ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3152912.80.help.text
+msgid "TBILLYIELD"
+msgstr ""
+
+#: 04060119.xhp#par_id3145560.81.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLYIELD\">Calculates the yield of a treasury bill.</ahelp>"
+msgstr ""
+
+#: 04060119.xhp#hd_id3145578.82.help.text
+msgctxt "04060119.xhp#hd_id3145578.82.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060119.xhp#par_id3156077.83.help.text
+msgid "TBILLYIELD(Settlement; Maturity; Price)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060119.xhp#hd_id3149642.87.help.text
+#, fuzzy
+msgctxt "04060119.xhp#hd_id3149642.87.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060119.xhp#par_id3145178.88.help.text
+msgid "Settlement date: March 31 1999, maturity date: June 1 1999, price: 98.45 currency units."
+msgstr ""
+
+#: 04060119.xhp#par_id3145193.89.help.text
+msgid "The yield of the treasury bill is worked out as follows:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: func_weeknumadd.xhp#tit.help.text
+msgid "WEEKNUM_ADD "
+msgstr ""
+
+#: func_weeknumadd.xhp#bm_id3166443.help.text
+msgid "<bookmark_value>WEEKNUM_ADD function</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: func_weeknumadd.xhp#hd_id3153745.224.help.text
+msgctxt "func_weeknumadd.xhp#hd_id3153745.224.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: func_weeknumadd.xhp#par_id3153685.225.help.text
+msgid "WEEKNUM_ADD(Date; ReturnType)"
+msgstr ""
+
+#: func_weeknumadd.xhp#par_id3159277.226.help.text
+msgid "<emph>Date</emph> is the date within the calendar week."
+msgstr ""
+
+#: 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 ""
+
+#: func_weeknumadd.xhp#hd_id3152886.228.help.text
+#, fuzzy
+msgctxt "func_weeknumadd.xhp#hd_id3152886.228.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: func_weeknumadd.xhp#par_id3149973.229.help.text
+msgid "In which week number does 12.24.2001 fall?"
+msgstr ""
+
+#: func_weeknumadd.xhp#par_id3149914.230.help.text
+msgid "<item type=\"input\">=WEEKNUM_ADD(24.12.2001;1)</item> returns 52."
+msgstr ""
+
+#: 06031000.xhp#tit.help.text
+msgid "AutoRefresh"
+msgstr ""
+
+#: 06031000.xhp#bm_id3154515.help.text
+msgid "<bookmark_value>cells; autorefreshing traces</bookmark_value><bookmark_value>traces; autorefreshing</bookmark_value>"
+msgstr ""
+
+#: 06031000.xhp#hd_id3154515.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/06031000.xhp\" name=\"AutoRefresh\">AutoRefresh</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 12090103.xhp#tit.help.text
+msgctxt "12090103.xhp#tit.help.text"
+msgid "Filter"
+msgstr ""
+
+#: 12090103.xhp#hd_id3153970.1.help.text
+msgctxt "12090103.xhp#hd_id3153970.1.help.text"
+msgid "Filter"
+msgstr ""
+
+#: 12090103.xhp#par_id3150448.2.help.text
+msgid "Set the filtering options for the data."
+msgstr ""
+
+#: 12090103.xhp#hd_id3151043.3.help.text
+msgid "Filter Criteria"
+msgstr ""
+
+#: 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 ""
+
+#: 12090103.xhp#hd_id3159153.5.help.text
+msgctxt "12090103.xhp#hd_id3159153.5.help.text"
+msgid "Operator"
+msgstr ""
+
+#: 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 ""
+
+#: 12090103.xhp#hd_id3152462.7.help.text
+msgid "Field name"
+msgstr ""
+
+#: 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 ""
+
+#: 12090103.xhp#hd_id3148575.9.help.text
+msgctxt "12090103.xhp#hd_id3148575.9.help.text"
+msgid "Condition"
+msgstr ""
+
+#: 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 ""
+
+#: 12090103.xhp#par_id3144764.11.help.text
+msgid "The following operators are available:"
+msgstr ""
+
+#: 12090103.xhp#par_id3153415.12.help.text
+msgid "<emph>Conditions:</emph>"
+msgstr ""
+
+#: 12090103.xhp#par_id3150324.13.help.text
+msgid "="
+msgstr ""
+
+#: 12090103.xhp#par_id3153714.14.help.text
+#, fuzzy
+msgid "equal"
+msgstr "Equal"
+
+#: 12090103.xhp#par_id3154254.15.help.text
+msgid "<"
+msgstr ""
+
+#: 12090103.xhp#par_id3154703.16.help.text
+msgid "less than"
+msgstr "менше, ніж"
+
+#: 12090103.xhp#par_id3155335.17.help.text
+msgid ">"
+msgstr ""
+
+#: 12090103.xhp#par_id3147003.18.help.text
+msgid "greater than"
+msgstr "більше, ніж"
+
+#: 12090103.xhp#par_id3153270.19.help.text
+msgid "<="
+msgstr ""
+
+#: 12090103.xhp#par_id3145257.20.help.text
+msgid "less than or equal to"
+msgstr "менше або дорівнює"
+
+#: 12090103.xhp#par_id3145134.21.help.text
+msgid ">="
+msgstr ""
+
+#: 12090103.xhp#par_id3151214.22.help.text
+msgid "greater than or equal to"
+msgstr "більше або дорівнює"
+
+#: 12090103.xhp#par_id3150345.23.help.text
+msgid "<>"
+msgstr ""
+
+#: 12090103.xhp#par_id3159101.24.help.text
+msgid "not equal to"
+msgstr ""
+
+#: 12090103.xhp#hd_id3150886.25.help.text
+msgctxt "12090103.xhp#hd_id3150886.25.help.text"
+msgid "Value"
+msgstr ""
+
+#: 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 ""
+
+#: 12090103.xhp#hd_id3146980.27.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"More>>\">More>></link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 05020600.xhp#tit.help.text
+msgid "Cell Protection"
+msgstr ""
+
+#: 05020600.xhp#hd_id3145119.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/05020600.xhp\" name=\"Cell Protection\">Cell Protection</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 05020600.xhp#par_id3150398.2.help.text
+msgid "<ahelp hid=\"HID_SCPAGE_PROTECTION\">Defines protection options for selected cells.</ahelp>"
+msgstr ""
+
+#: 05020600.xhp#hd_id3150447.3.help.text
+msgid "Protection"
+msgstr ""
+
+#: 05020600.xhp#hd_id3125864.9.help.text
+msgid "Hide all"
+msgstr ""
+
+#: 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 ""
+
+#: 05020600.xhp#hd_id3153190.5.help.text
+msgid "Protected"
+msgstr "Захищено"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 05020600.xhp#hd_id3149377.7.help.text
+msgid "Hide formula"
+msgstr ""
+
+#: 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 ""
+
+#: 05020600.xhp#hd_id3155602.11.help.text
+msgctxt "05020600.xhp#hd_id3155602.11.help.text"
+msgid "Print"
+msgstr ""
+
+#: 05020600.xhp#par_id3153836.12.help.text
+msgid "Defines print options for the sheet."
+msgstr ""
+
+#: 05020600.xhp#hd_id3155065.13.help.text
+msgid "Hide when printing"
+msgstr ""
+
+#: 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 ""
+
+#: 12090102.xhp#tit.help.text
+#, fuzzy
+msgctxt "12090102.xhp#tit.help.text"
+msgid "Pivot Table"
+msgstr "Таблиця"
+
+#: 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>таблиці; вставка рядків</bookmark_value><bookmark_value>рядки; вставка в таблиці, користувацьких іконок</bookmark_value>"
+
+#: 12090102.xhp#hd_id3149165.1.help.text
+#, fuzzy
+msgctxt "12090102.xhp#hd_id3149165.1.help.text"
+msgid "Pivot Table"
+msgstr "Таблиця"
+
+#: 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:RecSave\">Збереження нового запису даних. Ця міна реєструється у базі даних.</ahelp>"
+
+#: 12090102.xhp#par_id3148798.34.help.text
+msgid "The pivot table displays data fields as buttons which you can drag and drop to define the pivot table."
+msgstr ""
+
+#: 12090102.xhp#hd_id3154908.18.help.text
+msgctxt "12090102.xhp#hd_id3154908.18.help.text"
+msgid "Layout"
+msgstr ""
+
+#: 12090102.xhp#par_id3150768.19.help.text
+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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 12090102.xhp#hd_id3149260.28.help.text
+msgctxt "12090102.xhp#hd_id3149260.28.help.text"
+msgid "Remove"
+msgstr ""
+
+#: 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 ""
+
+#: 12090102.xhp#hd_id3145273.26.help.text
+msgctxt "12090102.xhp#hd_id3145273.26.help.text"
+msgid "Options"
+msgstr ""
+
+#: 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 ""
+
+#: 12090102.xhp#hd_id3154944.22.help.text
+msgctxt "12090102.xhp#hd_id3154944.22.help.text"
+msgid "More"
+msgstr ""
+
+#: 12090102.xhp#par_id3145647.23.help.text
+msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_PIVOT_LAYOUT:BTN_MORE\">Displays or hides additional options for defining the pivot table.</ahelp>"
+msgstr ""
+
+#: 12090102.xhp#hd_id3151073.2.help.text
+msgctxt "12090102.xhp#hd_id3151073.2.help.text"
+msgid "Result"
+msgstr ""
+
+#: 12090102.xhp#par_id3155417.3.help.text
+msgid "Specify the settings for displaying the results of the pivot table."
+msgstr ""
+
+#: 12090102.xhp#hd_id0509200913025625.help.text
+msgid "Selection from"
+msgstr ""
+
+#: 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=\"20515\">Вибирає поточну таблицю.</ahelp>"
+
+#: 12090102.xhp#hd_id3155603.4.help.text
+msgid "Results to"
+msgstr ""
+
+#: 12090102.xhp#par_id3153838.5.help.text
+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 ""
+
+#: 12090102.xhp#par_id3155961.6.help.text
+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 ""
+
+#: 12090102.xhp#hd_id3147364.7.help.text
+msgid "Ignore empty rows"
+msgstr ""
+
+#: 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 ""
+
+#: 12090102.xhp#hd_id3155114.9.help.text
+msgid "Identify categories"
+msgstr ""
+
+#: 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 ""
+
+#: 12090102.xhp#hd_id3149207.14.help.text
+msgid "Total columns"
+msgstr ""
+
+#: 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 ""
+
+#: 12090102.xhp#hd_id3150364.16.help.text
+msgid "Total rows"
+msgstr ""
+
+#: 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 ""
+
+#: 12090102.xhp#par_idN10897.help.text
+msgid "Add filter"
+msgstr ""
+
+#: 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=\".\">Панель \"Таблиця даних\" призначена для керування представленням даних. </ahelp>"
+
+#: 12090102.xhp#par_idN108B2.help.text
+msgid "<ahelp hid=\".\">Opens the Filter dialog.</ahelp>"
+msgstr ""
+
+#: 12090102.xhp#par_idN108C9.help.text
+msgid "Enable drill to details"
+msgstr ""
+
+#: 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 ""
+
+#: 12090102.xhp#par_idN108DC.help.text
+msgid "To examine details inside a pivot table"
+msgstr ""
+
+#: 12090102.xhp#par_idN108E0.help.text
+msgid "Do one of the following:"
+msgstr ""
+
+#: 12090102.xhp#par_idN108E6.help.text
+msgid "Select a range of cells and choose <emph>Data - Group and Outline - Show Details</emph>."
+msgstr ""
+
+#: 12090102.xhp#par_idN108EE.help.text
+msgid "Double-click a field in the table."
+msgstr ""
+
+#: 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 ""
+
+#: 12090102.xhp#par_idN10900.help.text
+msgid "Show Detail"
+msgstr ""
+
+#: 12090102.xhp#par_idN10904.help.text
+msgid "<ahelp hid=\".\">Choose the field that you want to view the details for.</ahelp>"
+msgstr ""
+
+#: 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/shared/main0400.xhp\" name=\"Комбінації клавіш\">Комбінації клавіш</link>"
+
+#: func_eomonth.xhp#tit.help.text
+msgid "EOMONTH"
+msgstr ""
+
+#: func_eomonth.xhp#bm_id3150991.help.text
+msgid "<bookmark_value>EOMONTH function</bookmark_value>"
+msgstr ""
+
+#: func_eomonth.xhp#hd_id3150991.231.help.text
+msgid "<variable id=\"eomonth\"><link href=\"text/scalc/01/func_eomonth.xhp\">EOMONTH</link></variable>"
+msgstr ""
+
+#: 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 ""
+
+#: func_eomonth.xhp#hd_id3150597.233.help.text
+msgctxt "func_eomonth.xhp#hd_id3150597.233.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: func_eomonth.xhp#par_id3150351.234.help.text
+msgid "EOMONTH(StartDate; Months)"
+msgstr ""
+
+#: func_eomonth.xhp#par_id3146787.235.help.text
+msgid "<emph>StartDate</emph> is a date (the starting point of the calculation)."
+msgstr ""
+
+#: 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 ""
+
+#: func_eomonth.xhp#hd_id3156335.237.help.text
+#, fuzzy
+msgctxt "func_eomonth.xhp#hd_id3156335.237.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02120100.xhp#tit.help.text
+msgctxt "02120100.xhp#tit.help.text"
+msgid "Header/Footer"
+msgstr ""
+
+#: 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 ""
+
+#: 02120100.xhp#hd_id3153360.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/02120100.xhp\" name=\"Header/Footer\">Header/Footer</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 02120100.xhp#hd_id3145748.3.help.text
+msgid "Left Area"
+msgstr ""
+
+#: 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 ""
+
+#: 02120100.xhp#hd_id3148648.5.help.text
+msgid "Center Area"
+msgstr ""
+
+#: 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 ""
+
+#: 02120100.xhp#hd_id3154942.7.help.text
+msgid "Right Area"
+msgstr ""
+
+#: 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 ""
+
+#: 02120100.xhp#par_idN10811.help.text
+msgctxt "02120100.xhp#par_idN10811.help.text"
+msgid "Header/Footer"
+msgstr ""
+
+#: 02120100.xhp#par_idN10815.help.text
+msgid "<ahelp hid=\".\">Select a predefined header or footer from the list.</ahelp>"
+msgstr ""
+
+#: 02120100.xhp#hd_id3154729.9.help.text
+msgid "Text attributes"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02120100.xhp#par_id3155336.25.help.text
+msgid "Text Attributes"
+msgstr ""
+
+#: 02120100.xhp#hd_id3145792.11.help.text
+msgid "File Name "
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02120100.xhp#par_id3154487.26.help.text
+msgid "File Name"
+msgstr ""
+
+#: 02120100.xhp#hd_id3155812.13.help.text
+msgctxt "02120100.xhp#hd_id3155812.13.help.text"
+msgid "Sheet Name"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02120100.xhp#par_id3147071.27.help.text
+msgctxt "02120100.xhp#par_id3147071.27.help.text"
+msgid "Sheet Name"
+msgstr ""
+
+#: 02120100.xhp#hd_id3144768.15.help.text
+msgctxt "02120100.xhp#hd_id3144768.15.help.text"
+msgid "Page"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02120100.xhp#par_id3150048.28.help.text
+msgctxt "02120100.xhp#par_id3150048.28.help.text"
+msgid "Page"
+msgstr ""
+
+#: 02120100.xhp#hd_id3146962.17.help.text
+msgctxt "02120100.xhp#hd_id3146962.17.help.text"
+msgid "Pages"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02120100.xhp#par_id3147499.29.help.text
+msgctxt "02120100.xhp#par_id3147499.29.help.text"
+msgid "Pages"
+msgstr ""
+
+#: 02120100.xhp#hd_id3149050.19.help.text
+msgctxt "02120100.xhp#hd_id3149050.19.help.text"
+msgid "Date"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02120100.xhp#par_id3150540.30.help.text
+msgctxt "02120100.xhp#par_id3150540.30.help.text"
+msgid "Date"
+msgstr ""
+
+#: 02120100.xhp#hd_id3147610.21.help.text
+msgctxt "02120100.xhp#hd_id3147610.21.help.text"
+msgid "Time"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02120100.xhp#par_id3157904.31.help.text
+msgctxt "02120100.xhp#par_id3157904.31.help.text"
+msgid "Time"
+msgstr ""
+
+#: 04060120.xhp#tit.help.text
+msgctxt "04060120.xhp#tit.help.text"
+msgid "Bit Operation Functions"
+msgstr ""
+
+#: 04060120.xhp#hd_id4149052.1.help.text
+msgctxt "04060120.xhp#hd_id4149052.1.help.text"
+msgid "Bit Operation Functions"
+msgstr ""
+
+#: 04060120.xhp#bm_id4150026.help.text
+msgid "<bookmark_value>BITAND function</bookmark_value>"
+msgstr ""
+
+#: 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
+msgctxt "04060120.xhp#hd_id4150459.240.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 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 ""
+
+#: 04060120.xhp#hd_id4148582.248.help.text
+#, fuzzy
+msgctxt "04060120.xhp#hd_id4148582.248.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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
+msgid "<bookmark_value>BITOR function</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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
+msgid "<bookmark_value>BITXOR function</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060120.xhp#hd_id4150269.192.help.text
+#, fuzzy
+msgctxt "04060120.xhp#hd_id4150269.192.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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
+msgid "<bookmark_value>BITLSHIFT function</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060120.xhp#hd_id4155814.268.help.text
+msgctxt "04060120.xhp#hd_id4155814.268.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 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 ""
+
+#: 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 "Приклад:"
+
+#: 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
+msgid "<bookmark_value>BITRSHIFT function</bookmark_value>"
+msgstr ""
+
+#: 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
+msgctxt "04060120.xhp#hd_id4149713.167.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 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 ""
+
+#: 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 "Приклад:"
+
+#: 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 ""
+
+#: 04070100.xhp#hd_id3156330.1.help.text
+msgctxt "04070100.xhp#hd_id3156330.1.help.text"
+msgid "Define Names"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04070100.xhp#hd_id3151118.3.help.text
+msgctxt "04070100.xhp#hd_id3151118.3.help.text"
+msgid "Name"
+msgstr ""
+
+#: 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 ""
+
+#: 04070100.xhp#hd_id3153728.9.help.text
+msgid "Assigned to"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04070100.xhp#hd_id3154729.13.help.text
+msgctxt "04070100.xhp#hd_id3154729.13.help.text"
+msgid "More"
+msgstr ""
+
+#: 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 ""
+
+#: 04070100.xhp#hd_id3147394.15.help.text
+msgid "Area type"
+msgstr ""
+
+#: 04070100.xhp#par_id3155416.16.help.text
+msgid "Defines additional options related to the type of reference area."
+msgstr ""
+
+#: 04070100.xhp#hd_id3150716.17.help.text
+msgctxt "04070100.xhp#hd_id3150716.17.help.text"
+msgid "Print range"
+msgstr ""
+
+#: 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 ""
+
+#: 04070100.xhp#hd_id3153764.19.help.text
+msgctxt "04070100.xhp#hd_id3153764.19.help.text"
+msgid "Filter"
+msgstr ""
+
+#: 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 ""
+
+#: 04070100.xhp#hd_id3159267.21.help.text
+msgid "Repeat column"
+msgstr ""
+
+#: 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 ""
+
+#: 04070100.xhp#hd_id3153966.23.help.text
+msgid "Repeat row"
+msgstr ""
+
+#: 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 ""
+
+#: 04070100.xhp#hd_id3155112.27.help.text
+msgctxt "04070100.xhp#hd_id3155112.27.help.text"
+msgid "Add/Modify"
+msgstr ""
+
+#: 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 ""
+
+#: 12040400.xhp#tit.help.text
+msgid "Remove Filter"
+msgstr ""
+
+#: 12040400.xhp#hd_id3153087.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12040400.xhp\" name=\"Remove Filter\">Remove Filter</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 12090000.xhp#tit.help.text
+#, fuzzy
+msgctxt "12090000.xhp#tit.help.text"
+msgid "Pivot Table"
+msgstr "Таблиця"
+
+#: 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/swriter/01/04150000.xhp\" name=\"Table\">Таблиця</link>"
+
+#: 12090000.xhp#par_id3153562.2.help.text
+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 ""
+
+#: 12090000.xhp#hd_id3155923.3.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12090100.xhp\" name=\"Create\">Create</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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/smath/01/06010000.xhp\" name=\"Каталог\">Каталог</link>"
+
+#: solver.xhp#tit.help.text
+msgid "Solver"
+msgstr ""
+
+#: 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 ""
+
+#: solver.xhp#hd_id9216284.help.text
+msgid "<variable id=\"solver\"><link href=\"text/scalc/01/solver.xhp\">Solver</link></variable>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: solver.xhp#par_id7141026.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value or a cell reference.</ahelp>"
+msgstr ""
+
+#: solver.xhp#par_id8531449.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the cell range that can be changed.</ahelp>"
+msgstr ""
+
+#: solver.xhp#par_id9183935.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a cell reference.</ahelp>"
+msgstr ""
+
+#: solver.xhp#par_id946684.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select an operator from the list.</ahelp>"
+msgstr ""
+
+#: solver.xhp#par_id9607226.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a value or a cell reference.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: solver.xhp#par_id2423780.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Options dialog.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: solver.xhp#par_id5474410.help.text
+msgid "To solve equations with the solver"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: solver.xhp#par_id5323953.help.text
+msgid "The default solver engine supports only linear equations."
+msgstr ""
+
+#: solver_options.xhp#tit.help.text
+msgctxt "solver_options.xhp#tit.help.text"
+msgid "Options"
+msgstr ""
+
+#: solver_options.xhp#hd_id2794274.help.text
+msgctxt "solver_options.xhp#hd_id2794274.help.text"
+msgid "Options"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: solver_options.xhp#par_id5871761.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Configure the current solver.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: solver_options.xhp#par_id3912778.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter or change the value.</ahelp>"
+msgstr ""
+
+#: solver_options.xhp#par_id3163853.help.text
+msgid "Use the Options dialog to configure the current solver engine."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02160000.xhp#tit.help.text
+msgctxt "02160000.xhp#tit.help.text"
+msgid "Delete Cells"
+msgstr ""
+
+#: 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 ""
+
+#: 02160000.xhp#hd_id3153726.1.help.text
+msgctxt "02160000.xhp#hd_id3153726.1.help.text"
+msgid "Delete Cells"
+msgstr ""
+
+#: 02160000.xhp#par_id3154490.2.help.text
+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 ""
+
+#: 02160000.xhp#hd_id3149121.3.help.text
+msgctxt "02160000.xhp#hd_id3149121.3.help.text"
+msgid "Selection"
+msgstr ""
+
+#: 02160000.xhp#par_id3150751.4.help.text
+msgid "This area contains options for specifying how sheets are displayed after deleting cells."
+msgstr ""
+
+#: 02160000.xhp#hd_id3155767.5.help.text
+msgid "Shift cells up"
+msgstr ""
+
+#: 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 ""
+
+#: 02160000.xhp#hd_id3156382.7.help.text
+msgid "Shift cells left"
+msgstr ""
+
+#: 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 ""
+
+#: 02160000.xhp#hd_id3146918.9.help.text
+msgid "Delete entire row(s)"
+msgstr ""
+
+#: 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 ""
+
+#: 02160000.xhp#hd_id3155114.11.help.text
+msgid "Delete entire column(s)"
+msgstr ""
+
+#: 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 ""
+
+#: 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/smath/01/05040000.xhp\" name=\"Вирівнювання\">Вирівнювання</link>"
+
+#: 05040200.xhp#tit.help.text
+msgctxt "05040200.xhp#tit.help.text"
+msgid "Optimal Column Width"
+msgstr ""
+
+#: 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 ""
+
+#: 05040200.xhp#hd_id3155628.1.help.text
+msgctxt "05040200.xhp#hd_id3155628.1.help.text"
+msgid "Optimal Column Width"
+msgstr ""
+
+#: 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 ""
+
+#: 05040200.xhp#hd_id3150767.3.help.text
+msgctxt "05040200.xhp#hd_id3150767.3.help.text"
+msgid "Add"
+msgstr ""
+
+#: 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 ""
+
+#: 05040200.xhp#hd_id3145785.5.help.text
+msgctxt "05040200.xhp#hd_id3145785.5.help.text"
+msgid "Default value"
+msgstr ""
+
+#: 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 ""
+
+#: 12040000.xhp#tit.help.text
+msgctxt "12040000.xhp#tit.help.text"
+msgid "Filter"
+msgstr ""
+
+#: 12040000.xhp#hd_id3150767.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12040000.xhp\" name=\"Filter\">Filter</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 12040000.xhp#par_id3155131.2.help.text
+msgid "<ahelp hid=\".\">Shows commands to filter your data.</ahelp>"
+msgstr ""
+
+#: 12040000.xhp#par_id3146119.7.help.text
+msgid "$[officename] automatically recognizes predefined database ranges."
+msgstr ""
+
+#: 12040000.xhp#par_id3153363.3.help.text
+msgid "The following filtering options are available:"
+msgstr ""
+
+#: 12040000.xhp#hd_id3153728.4.help.text
+msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Standard filter\">Standard filter</link>"
+msgstr ""
+
+#: 12040000.xhp#hd_id3159153.5.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced filter\">Advanced filter</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 04090000.xhp#tit.help.text
+msgid "Link to External Data"
+msgstr ""
+
+#: 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 ""
+
+#: 04090000.xhp#hd_id3145785.3.help.text
+msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\">Link to External Data</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 04090000.xhp#hd_id3146984.5.help.text
+msgid "URL of external data source."
+msgstr ""
+
+#: 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 ""
+
+#: 04090000.xhp#hd_id3145251.7.help.text
+msgid "Available tables/ranges"
+msgstr ""
+
+#: 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 ""
+
+#: 04090000.xhp#hd_id3154492.9.help.text
+msgid "Update every"
+msgstr ""
+
+#: 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 ""
+
+#: 04070400.xhp#tit.help.text
+msgid "Define Label Range"
+msgstr ""
+
+#: 04070400.xhp#bm_id3150791.help.text
+msgid "<bookmark_value>sheets; defining label ranges</bookmark_value><bookmark_value>label ranges in sheets</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04070400.xhp#hd_id3145801.3.help.text
+msgctxt "04070400.xhp#hd_id3145801.3.help.text"
+msgid "Range"
+msgstr ""
+
+#: 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 ""
+
+#: 04070400.xhp#hd_id3149121.5.help.text
+msgctxt "04070400.xhp#hd_id3149121.5.help.text"
+msgid "Contains column labels"
+msgstr ""
+
+#: 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 ""
+
+#: 04070400.xhp#hd_id3149020.7.help.text
+msgid "Contains row labels"
+msgstr ""
+
+#: 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 ""
+
+#: 04070400.xhp#hd_id3159264.11.help.text
+msgid "For data range"
+msgstr ""
+
+#: 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 ""
+
+#: 04070400.xhp#hd_id3145789.9.help.text
+msgctxt "04070400.xhp#hd_id3145789.9.help.text"
+msgid "Add"
+msgstr ""
+
+#: 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 ""
+
+#: func_date.xhp#tit.help.text
+msgid "DATE"
+msgstr ""
+
+#: func_date.xhp#bm_id3155511.help.text
+msgid "<bookmark_value>DATE function</bookmark_value>"
+msgstr ""
+
+#: func_date.xhp#hd_id3155511.3.help.text
+msgid "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">DATE</link></variable>"
+msgstr ""
+
+#: 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 ""
+
+#: func_date.xhp#hd_id3148590.5.help.text
+msgctxt "func_date.xhp#hd_id3148590.5.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: func_date.xhp#par_id3150474.6.help.text
+msgid "DATE(Year; Month; Day)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: func_date.xhp#par_id3155817.8.help.text
+msgid "<emph>Month</emph> is an integer indicating the month."
+msgstr ""
+
+#: func_date.xhp#par_id3153183.9.help.text
+msgid "<emph>Day</emph> is an integer indicating the day of the month."
+msgstr ""
+
+#: 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 ""
+
+#: func_date.xhp#hd_id3147477.12.help.text
+#, fuzzy
+msgctxt "func_date.xhp#hd_id3147477.12.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: func_days360.xhp#tit.help.text
+msgid "DAYS360 "
+msgstr ""
+
+#: func_days360.xhp#bm_id3148555.help.text
+msgid "<bookmark_value>DAYS360 function</bookmark_value>"
+msgstr ""
+
+#: func_days360.xhp#hd_id3148555.124.help.text
+msgid "<variable id=\"days360\"><link href=\"text/scalc/01/func_days360.xhp\">DAYS360</link></variable>"
+msgstr ""
+
+#: 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 ""
+
+#: func_days360.xhp#hd_id3155347.126.help.text
+msgctxt "func_days360.xhp#hd_id3155347.126.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: func_days360.xhp#par_id3155313.127.help.text
+msgid "DAYS360(\"Date1\"; \"Date2\"; Type)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: func_days360.xhp#hd_id3148641.130.help.text
+#, fuzzy
+msgctxt "func_days360.xhp#hd_id3148641.130.help.text"
+msgid "Examples"
+msgstr "Приклади:"
+
+#: 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 ""
+
+#: text2columns.xhp#tit.help.text
+msgid "Text to Columns"
+msgstr ""
+
+#: text2columns.xhp#bm_id8004394.help.text
+msgid "<bookmark_value>text to columns</bookmark_value>"
+msgstr ""
+
+#: text2columns.xhp#hd_id2300180.help.text
+msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
+msgstr ""
+
+#: 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 ""
+
+#: text2columns.xhp#hd_id9599597.help.text
+msgid "To expand cell contents to multiple cells"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: text2columns.xhp#par_id7242042.help.text
+msgid "Select the cell or cells that you want to expand."
+msgstr ""
+
+#: text2columns.xhp#par_id6999420.help.text
+msgid "Choose <emph>Data - Text to Columns</emph>."
+msgstr ""
+
+#: text2columns.xhp#par_id6334116.help.text
+msgid "You see the Text to Columns dialog."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 05050300.xhp#tit.help.text
+msgctxt "05050300.xhp#tit.help.text"
+msgid "Show Sheet"
+msgstr ""
+
+#: 05050300.xhp#bm_id3148946.help.text
+msgid "<bookmark_value>sheets; displaying</bookmark_value><bookmark_value>displaying; sheets</bookmark_value>"
+msgstr ""
+
+#: 05050300.xhp#hd_id3148946.1.help.text
+msgctxt "05050300.xhp#hd_id3148946.1.help.text"
+msgid "Show Sheet"
+msgstr ""
+
+#: 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 ""
+
+#: 05050300.xhp#hd_id3151112.3.help.text
+msgid "Hidden sheets"
+msgstr ""
+
+#: 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 ""
+
+#: 06030100.xhp#tit.help.text
+msgid "Trace Precedents"
+msgstr ""
+
+#: 06030100.xhp#bm_id3155628.help.text
+msgid "<bookmark_value>cells; tracing precedents</bookmark_value><bookmark_value>formula cells;tracing precedents</bookmark_value>"
+msgstr ""
+
+#: 06030100.xhp#hd_id3155628.1.help.text
+msgid "<link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedents\">Trace Precedents</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04080000.xhp#tit.help.text
+msgctxt "04080000.xhp#tit.help.text"
+msgid "Function List"
+msgstr ""
+
+#: 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 ""
+
+#: 04080000.xhp#hd_id3154126.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04080000.xhp\" name=\"Function List\">Function List</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 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 ""
+
+#: 04080000.xhp#hd_id3145799.4.help.text
+msgid "Category List"
+msgstr ""
+
+#: 04080000.xhp#hd_id3153160.5.help.text
+msgctxt "04080000.xhp#hd_id3153160.5.help.text"
+msgid "Function List"
+msgstr ""
+
+#: 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 ""
+
+#: 04080000.xhp#hd_id3146971.7.help.text
+msgid "Insert Function into calculation sheet"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 05070000.xhp#tit.help.text
+msgctxt "05070000.xhp#tit.help.text"
+msgid "Page Style"
+msgstr ""
+
+#: 05070000.xhp#hd_id3157910.1.help.text
+msgctxt "05070000.xhp#hd_id3157910.1.help.text"
+msgid "Page Style"
+msgstr ""
+
+#: 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 ""
+
+#: 02150000.xhp#tit.help.text
+msgctxt "02150000.xhp#tit.help.text"
+msgid "Deleting Contents"
+msgstr ""
+
+#: 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 ""
+
+#: 02150000.xhp#hd_id3143284.1.help.text
+msgctxt "02150000.xhp#hd_id3143284.1.help.text"
+msgid "Deleting Contents"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02150000.xhp#hd_id3148575.3.help.text
+msgctxt "02150000.xhp#hd_id3148575.3.help.text"
+msgid "Selection"
+msgstr ""
+
+#: 02150000.xhp#par_id3149665.4.help.text
+msgid "This area lists the options for deleting contents."
+msgstr ""
+
+#: 02150000.xhp#hd_id3146975.5.help.text
+msgid "Delete All"
+msgstr ""
+
+#: 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 ""
+
+#: 02150000.xhp#hd_id3156286.7.help.text
+#, fuzzy
+msgid "Text"
+msgstr "Далі"
+
+#: 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 ""
+
+#: 02150000.xhp#hd_id3153840.9.help.text
+msgid "Numbers"
+msgstr "Цифри"
+
+#: 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 ""
+
+#: 02150000.xhp#hd_id3155764.11.help.text
+msgid "Date & time"
+msgstr ""
+
+#: 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 ""
+
+#: 02150000.xhp#hd_id3154703.13.help.text
+#, fuzzy
+msgctxt "02150000.xhp#hd_id3154703.13.help.text"
+msgid "Formulas"
+msgstr "Формула"
+
+#: 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 ""
+
+#: 02150000.xhp#hd_id3150300.15.help.text
+msgctxt "02150000.xhp#hd_id3150300.15.help.text"
+msgid "Comments"
+msgstr ""
+
+#: 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 ""
+
+#: 02150000.xhp#hd_id3155112.17.help.text
+msgid "Formats"
+msgstr "Формати"
+
+#: 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 ""
+
+#: 02150000.xhp#hd_id3150088.19.help.text
+msgctxt "02150000.xhp#hd_id3150088.19.help.text"
+msgid "Objects"
+msgstr ""
+
+#: 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 ""
+
+#: 07090000.xhp#tit.help.text
+msgid "Freeze"
+msgstr ""
+
+#: 07090000.xhp#hd_id3150517.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"Freeze\">Freeze</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 12070100.xhp#tit.help.text
+msgctxt "12070100.xhp#tit.help.text"
+msgid "Consolidate by"
+msgstr ""
+
+#: 12070100.xhp#hd_id3151210.1.help.text
+msgctxt "12070100.xhp#hd_id3151210.1.help.text"
+msgid "Consolidate by"
+msgstr ""
+
+#: 12070100.xhp#hd_id3125864.2.help.text
+msgctxt "12070100.xhp#hd_id3125864.2.help.text"
+msgid "Consolidate by"
+msgstr ""
+
+#: 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 ""
+
+#: 12070100.xhp#hd_id3153968.4.help.text
+msgid "Row labels"
+msgstr ""
+
+#: 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 ""
+
+#: 12070100.xhp#hd_id3146976.6.help.text
+msgid "Column labels"
+msgstr ""
+
+#: 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 ""
+
+#: 12070100.xhp#hd_id3153191.12.help.text
+msgctxt "12070100.xhp#hd_id3153191.12.help.text"
+msgid "Options"
+msgstr ""
+
+#: 12070100.xhp#hd_id3159154.8.help.text
+msgid "Link to source data"
+msgstr ""
+
+#: 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 ""
+
+#: 12070100.xhp#hd_id3163708.10.help.text
+msgctxt "12070100.xhp#hd_id3163708.10.help.text"
+msgid "More <<"
+msgstr ""
+
+#: 12070100.xhp#par_id3151118.11.help.text
+msgctxt "12070100.xhp#par_id3151118.11.help.text"
+msgid "Hides the additional options."
+msgstr ""
+
+#: 02110000.xhp#tit.help.text
+msgid "Navigator"
+msgstr "Навігатор"
+
+#: 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 ""
+
+#: 02110000.xhp#hd_id3150791.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 02110000.xhp#par_id3145271.40.help.text
+msgid "Choose <emph>View - Navigator</emph> to display the Navigator."
+msgstr ""
+
+#: 02110000.xhp#hd_id3159155.4.help.text
+msgctxt "02110000.xhp#hd_id3159155.4.help.text"
+msgid "Column"
+msgstr ""
+
+#: 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 ""
+
+#: 02110000.xhp#hd_id3147126.6.help.text
+msgctxt "02110000.xhp#hd_id3147126.6.help.text"
+msgid "Row"
+msgstr ""
+
+#: 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 ""
+
+#: 02110000.xhp#hd_id3150717.8.help.text
+msgctxt "02110000.xhp#hd_id3150717.8.help.text"
+msgid "Data Range"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02110000.xhp#par_id3146919.9.help.text
+msgctxt "02110000.xhp#par_id3146919.9.help.text"
+msgid "Data Range"
+msgstr ""
+
+#: 02110000.xhp#hd_id3148488.14.help.text
+msgctxt "02110000.xhp#hd_id3148488.14.help.text"
+msgid "Start"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02110000.xhp#par_id3154372.15.help.text
+msgctxt "02110000.xhp#par_id3154372.15.help.text"
+msgid "Start"
+msgstr ""
+
+#: 02110000.xhp#hd_id3146982.17.help.text
+msgctxt "02110000.xhp#hd_id3146982.17.help.text"
+msgid "End"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02110000.xhp#par_id3147072.18.help.text
+msgctxt "02110000.xhp#par_id3147072.18.help.text"
+msgid "End"
+msgstr ""
+
+#: 02110000.xhp#hd_id3150107.20.help.text
+msgctxt "02110000.xhp#hd_id3150107.20.help.text"
+msgid "Toggle"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02110000.xhp#par_id3159229.21.help.text
+msgctxt "02110000.xhp#par_id3159229.21.help.text"
+msgid "Toggle"
+msgstr ""
+
+#: 02110000.xhp#hd_id3149381.11.help.text
+msgctxt "02110000.xhp#hd_id3149381.11.help.text"
+msgid "Contents"
+msgstr ""
+
+#: 02110000.xhp#par_id3150051.13.help.text
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ZOOM\">Allows you to hide/show the contents.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 02110000.xhp#par_id3150955.12.help.text
+msgctxt "02110000.xhp#par_id3150955.12.help.text"
+msgid "Contents"
+msgstr ""
+
+#: 02110000.xhp#hd_id3147244.23.help.text
+msgctxt "02110000.xhp#hd_id3147244.23.help.text"
+msgid "Scenarios"
+msgstr ""
+
+#: 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 ""
+
+#: 02110000.xhp#par_id3148745.help.text
+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 ""
+
+#: 02110000.xhp#par_id3166466.24.help.text
+msgctxt "02110000.xhp#par_id3166466.24.help.text"
+msgid "Scenarios"
+msgstr ""
+
+#: 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 ""
+
+#: 02110000.xhp#par_idN10A77.help.text
+msgctxt "02110000.xhp#par_idN10A77.help.text"
+msgid "Delete"
+msgstr ""
+
+#: 02110000.xhp#par_idN10A7B.help.text
+msgid "<ahelp hid=\"HID_SC_SCENARIO_DELETE\">Deletes the selected scenario.</ahelp>"
+msgstr ""
+
+#: 02110000.xhp#par_idN10A92.help.text
+msgid "Properties"
+msgstr ""
+
+#: 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 ""
+
+#: 02110000.xhp#hd_id3150037.26.help.text
+msgctxt "02110000.xhp#hd_id3150037.26.help.text"
+msgid "Drag Mode"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02110000.xhp#par_id3150656.27.help.text
+msgctxt "02110000.xhp#par_id3150656.27.help.text"
+msgid "Drag Mode"
+msgstr ""
+
+#: 02110000.xhp#hd_id3149009.29.help.text
+msgid "Insert as Hyperlink"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02110000.xhp#hd_id3154682.31.help.text
+msgid "Insert as Link"
+msgstr ""
+
+#: 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 ""
+
+#: 02110000.xhp#hd_id3145824.33.help.text
+msgid "Insert as Copy"
+msgstr ""
+
+#: 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 ""
+
+#: 02110000.xhp#hd_id3147423.38.help.text
+msgctxt "02110000.xhp#hd_id3147423.38.help.text"
+msgid "Objects"
+msgstr ""
+
+#: 02110000.xhp#par_id3150700.39.help.text
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ENTRIES\">Displays all objects in your document.</ahelp>"
+msgstr ""
+
+#: 02110000.xhp#hd_id3150860.35.help.text
+msgid "Documents"
+msgstr ""
+
+#: 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 ""
+
+#: 02200000.xhp#tit.help.text
+msgctxt "02200000.xhp#tit.help.text"
+msgid "Sheet"
+msgstr ""
+
+#: 02200000.xhp#hd_id3146794.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/02200000.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 02200000.xhp#par_id3149456.2.help.text
+msgid "<ahelp hid=\".\">Edit commands for entire sheets.</ahelp>"
+msgstr ""
+
+#: 02200000.xhp#hd_id3150792.3.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/02180000.xhp\" name=\"Move/Copy\">Move/Copy</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 02200000.xhp#hd_id3153968.4.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/02210000.xhp\" name=\"Select\">Select</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 02200000.xhp#hd_id3163708.5.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/02170000.xhp\" name=\"Delete\">Delete</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 02200000.xhp#hd_id3163733308.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Events</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 04060116.xhp#tit.help.text
+msgctxt "04060116.xhp#tit.help.text"
+msgid "Add-in Functions, List of Analysis Functions Part Two"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060116.xhp#par_id3151242.174.help.text
+msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Category Statistics\">Category Statistics</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060116.xhp#bm_id3154959.help.text
+msgid "<bookmark_value>IMABS function</bookmark_value>"
+msgstr ""
+
+#: 04060116.xhp#hd_id3154959.44.help.text
+msgid "IMABS"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3155382.46.help.text
+msgctxt "04060116.xhp#hd_id3155382.46.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060116.xhp#par_id3151302.47.help.text
+msgid "IMABS(\"ComplexNumber\")"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3149697.49.help.text
+#, fuzzy
+msgctxt "04060116.xhp#hd_id3149697.49.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060116.xhp#par_id3143222.50.help.text
+msgid " <item type=\"input\">=IMABS(\"5+12j\")</item> returns 13."
+msgstr ""
+
+#: 04060116.xhp#bm_id3145357.help.text
+msgid "<bookmark_value>IMAGINARY function</bookmark_value>"
+msgstr ""
+
+#: 04060116.xhp#hd_id3145357.51.help.text
+msgid "IMAGINARY"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3153555.53.help.text
+msgctxt "04060116.xhp#hd_id3153555.53.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060116.xhp#par_id3155522.54.help.text
+msgid "IMAGINARY(\"ComplexNumber\")"
+msgstr ""
+
+#: 04060116.xhp#hd_id3151193.56.help.text
+#, fuzzy
+msgctxt "04060116.xhp#hd_id3151193.56.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060116.xhp#par_id3155592.57.help.text
+msgid " <item type=\"input\">=IMAGINARY(\"4+3j\")</item> returns 3."
+msgstr ""
+
+#: 04060116.xhp#bm_id3146106.help.text
+msgid "<bookmark_value>IMPOWER function</bookmark_value>"
+msgstr ""
+
+#: 04060116.xhp#hd_id3146106.58.help.text
+msgid "IMPOWER"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3150954.60.help.text
+msgctxt "04060116.xhp#hd_id3150954.60.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060116.xhp#par_id3147501.61.help.text
+msgid "IMPOWER(\"ComplexNumber\"; Number)"
+msgstr ""
+
+#: 04060116.xhp#par_id3155743.63.help.text
+msgid " <emph>Number</emph> is the exponent."
+msgstr ""
+
+#: 04060116.xhp#hd_id3149048.64.help.text
+#, fuzzy
+msgctxt "04060116.xhp#hd_id3149048.64.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060116.xhp#par_id3151393.65.help.text
+msgid " <item type=\"input\">=IMPOWER(\"2+3i\";2)</item> returns -5+12i."
+msgstr ""
+
+#: 04060116.xhp#bm_id3148748.help.text
+msgid "<bookmark_value>IMARGUMENT function</bookmark_value>"
+msgstr ""
+
+#: 04060116.xhp#hd_id3148748.66.help.text
+msgid "IMARGUMENT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3150533.68.help.text
+msgctxt "04060116.xhp#hd_id3150533.68.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060116.xhp#par_id3156402.69.help.text
+msgid "IMARGUMENT(\"ComplexNumber\")"
+msgstr ""
+
+#: 04060116.xhp#hd_id3153019.71.help.text
+#, fuzzy
+msgctxt "04060116.xhp#hd_id3153019.71.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060116.xhp#par_id3159125.72.help.text
+msgid " <item type=\"input\">=IMARGUMENT(\"3+4j\")</item> returns 0.927295."
+msgstr ""
+
+#: 04060116.xhp#bm_id3149146.help.text
+msgid "<bookmark_value>IMCOS function</bookmark_value>"
+msgstr ""
+
+#: 04060116.xhp#hd_id3149146.73.help.text
+msgid "IMCOS"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3159116.75.help.text
+msgctxt "04060116.xhp#hd_id3159116.75.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060116.xhp#par_id3147415.76.help.text
+msgid "IMCOS(\"ComplexNumber\")"
+msgstr ""
+
+#: 04060116.xhp#hd_id3152980.78.help.text
+#, fuzzy
+msgctxt "04060116.xhp#hd_id3152980.78.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060116.xhp#par_id3157901.79.help.text
+msgid " <item type=\"input\">=IMCOS(\"3+4j\") </item>returns -27.03-3.85i (rounded)."
+msgstr ""
+
+#: 04060116.xhp#bm_id3150024.help.text
+msgid "<bookmark_value>IMDIV function</bookmark_value>"
+msgstr ""
+
+#: 04060116.xhp#hd_id3150024.80.help.text
+msgid "IMDIV"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3150465.82.help.text
+msgctxt "04060116.xhp#hd_id3150465.82.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060116.xhp#par_id3146942.83.help.text
+msgid "IMDIV(\"Numerator\"; \"Denominator\")"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3151229.85.help.text
+#, fuzzy
+msgctxt "04060116.xhp#hd_id3151229.85.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060116.xhp#par_id3148440.86.help.text
+msgid " <item type=\"input\">=IMDIV(\"-238+240i\";\"10+24i\")</item> returns 5+12i."
+msgstr ""
+
+#: 04060116.xhp#bm_id3153039.help.text
+msgid "<bookmark_value>IMEXP function</bookmark_value>"
+msgstr ""
+
+#: 04060116.xhp#hd_id3153039.87.help.text
+msgid "IMEXP"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3145591.89.help.text
+msgctxt "04060116.xhp#hd_id3145591.89.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060116.xhp#par_id3154810.90.help.text
+msgid "IMEXP(\"ComplexNumber\")"
+msgstr ""
+
+#: 04060116.xhp#hd_id3148581.92.help.text
+#, fuzzy
+msgctxt "04060116.xhp#hd_id3148581.92.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060116.xhp#par_id3149253.93.help.text
+msgid " <item type=\"input\">=IMEXP(\"1+j\") </item>returns 1.47+2.29j (rounded)."
+msgstr ""
+
+#: 04060116.xhp#bm_id3149955.help.text
+msgid "<bookmark_value>IMCONJUGATE function</bookmark_value>"
+msgstr ""
+
+#: 04060116.xhp#hd_id3149955.94.help.text
+msgid "IMCONJUGATE"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3148750.96.help.text
+msgctxt "04060116.xhp#hd_id3148750.96.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060116.xhp#par_id3153082.97.help.text
+msgid "IMCONJUGATE(\"ComplexNumber\")"
+msgstr ""
+
+#: 04060116.xhp#hd_id3153326.99.help.text
+#, fuzzy
+msgctxt "04060116.xhp#hd_id3153326.99.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060116.xhp#par_id3149688.100.help.text
+msgid " <item type=\"input\">=IMCONJUGATE(\"1+j\")</item> returns 1-j."
+msgstr ""
+
+#: 04060116.xhp#bm_id3150898.help.text
+msgid "<bookmark_value>IMLN function</bookmark_value>"
+msgstr ""
+
+#: 04060116.xhp#hd_id3150898.101.help.text
+msgid "IMLN"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3150008.103.help.text
+msgctxt "04060116.xhp#hd_id3150008.103.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060116.xhp#par_id3155954.104.help.text
+msgid "IMLN(\"ComplexNumber\")"
+msgstr ""
+
+#: 04060116.xhp#hd_id3153565.106.help.text
+#, fuzzy
+msgctxt "04060116.xhp#hd_id3153565.106.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060116.xhp#par_id3153736.107.help.text
+msgid " <item type=\"input\">=IMLN(\"1+j\")</item> returns 0.35+0.79j (rounded)."
+msgstr ""
+
+#: 04060116.xhp#bm_id3155929.help.text
+msgid "<bookmark_value>IMLOG10 function</bookmark_value>"
+msgstr ""
+
+#: 04060116.xhp#hd_id3155929.108.help.text
+msgid "IMLOG10"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3154327.110.help.text
+msgctxt "04060116.xhp#hd_id3154327.110.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060116.xhp#par_id3150128.111.help.text
+msgid "IMLOG10(\"ComplexNumber\")"
+msgstr ""
+
+#: 04060116.xhp#hd_id3149003.113.help.text
+#, fuzzy
+msgctxt "04060116.xhp#hd_id3149003.113.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060116.xhp#par_id3151021.114.help.text
+msgid " <item type=\"input\">=IMLOG10(\"1+j\")</item> returns 0.15+0.34j (rounded)."
+msgstr ""
+
+#: 04060116.xhp#bm_id3155623.help.text
+msgid "<bookmark_value>IMLOG2 function</bookmark_value>"
+msgstr ""
+
+#: 04060116.xhp#hd_id3155623.115.help.text
+msgid "IMLOG2"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3153046.117.help.text
+msgctxt "04060116.xhp#hd_id3153046.117.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060116.xhp#par_id3145355.118.help.text
+msgid "IMLOG2(\"ComplexNumber\")"
+msgstr ""
+
+#: 04060116.xhp#hd_id3148768.120.help.text
+#, fuzzy
+msgctxt "04060116.xhp#hd_id3148768.120.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060116.xhp#par_id3149536.121.help.text
+msgid " <item type=\"input\">=IMLOG2(\"1+j\")</item> returns 0.50+1.13j (rounded)."
+msgstr ""
+
+#: 04060116.xhp#bm_id3145626.help.text
+msgid "<bookmark_value>IMPRODUCT function</bookmark_value>"
+msgstr ""
+
+#: 04060116.xhp#hd_id3145626.122.help.text
+msgid "IMPRODUCT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3149388.124.help.text
+msgctxt "04060116.xhp#hd_id3149388.124.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060116.xhp#par_id3149027.125.help.text
+msgid "IMPRODUCT(\"ComplexNumber\"; \"ComplexNumber1\"; ...)"
+msgstr ""
+
+#: 04060116.xhp#hd_id3153228.127.help.text
+#, fuzzy
+msgctxt "04060116.xhp#hd_id3153228.127.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060116.xhp#par_id3155815.128.help.text
+msgid " <item type=\"input\">=IMPRODUCT(\"3+4j\";\"5-3j\")</item> returns 27+11j."
+msgstr ""
+
+#: 04060116.xhp#bm_id3147539.help.text
+msgid "<bookmark_value>IMREAL function</bookmark_value>"
+msgstr ""
+
+#: 04060116.xhp#hd_id3147539.129.help.text
+msgid "IMREAL"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3154951.131.help.text
+msgctxt "04060116.xhp#hd_id3154951.131.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060116.xhp#par_id3153927.132.help.text
+msgid "IMREAL(\"ComplexNumber\")"
+msgstr ""
+
+#: 04060116.xhp#hd_id3155409.134.help.text
+#, fuzzy
+msgctxt "04060116.xhp#hd_id3155409.134.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060116.xhp#par_id3155986.135.help.text
+msgid " <item type=\"input\">=IMREAL(\"1+3j\")</item> returns 1."
+msgstr ""
+
+#: 04060116.xhp#bm_id3148431.help.text
+msgid "<bookmark_value>IMSIN function</bookmark_value>"
+msgstr ""
+
+#: 04060116.xhp#hd_id3148431.136.help.text
+msgid "IMSIN"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3149822.138.help.text
+msgctxt "04060116.xhp#hd_id3149822.138.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060116.xhp#par_id3150387.139.help.text
+msgid "IMSIN(\"ComplexNumber\")"
+msgstr ""
+
+#: 04060116.xhp#hd_id3150613.141.help.text
+#, fuzzy
+msgctxt "04060116.xhp#hd_id3150613.141.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060116.xhp#par_id3154310.142.help.text
+msgid " <item type=\"input\">=IMSIN(\"3+4j\")</item> returns 3.85+27.02j (rounded)."
+msgstr ""
+
+#: 04060116.xhp#bm_id3163826.help.text
+msgid "<bookmark_value>IMSUB function</bookmark_value>"
+msgstr ""
+
+#: 04060116.xhp#hd_id3163826.143.help.text
+msgid "IMSUB"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3149264.145.help.text
+msgctxt "04060116.xhp#hd_id3149264.145.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060116.xhp#par_id3149710.146.help.text
+msgid "IMSUB(\"ComplexNumber1\"; \"ComplexNumber2\")"
+msgstr ""
+
+#: 04060116.xhp#hd_id3155833.148.help.text
+#, fuzzy
+msgctxt "04060116.xhp#hd_id3155833.148.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060116.xhp#par_id3150963.149.help.text
+msgid " <item type=\"input\">=IMSUB(\"13+4j\";\"5+3j\")</item> returns 8+j."
+msgstr ""
+
+#: 04060116.xhp#bm_id3156312.help.text
+msgid "<bookmark_value>IMSUM function</bookmark_value>"
+msgstr ""
+
+#: 04060116.xhp#hd_id3156312.150.help.text
+msgid "IMSUM"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3156095.152.help.text
+msgctxt "04060116.xhp#hd_id3156095.152.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060116.xhp#par_id3152930.153.help.text
+msgid "IMSUM(\"ComplexNumber1\"; \"ComplexNumber2\"; ...)"
+msgstr ""
+
+#: 04060116.xhp#hd_id3154640.155.help.text
+#, fuzzy
+msgctxt "04060116.xhp#hd_id3154640.155.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060116.xhp#par_id3147081.156.help.text
+msgid " <item type=\"input\">=IMSUM(\"13+4j\";\"5+3j\")</item> returns 18+7j."
+msgstr ""
+
+#: 04060116.xhp#bm_id3147570.help.text
+msgid "<bookmark_value>IMSQRT function</bookmark_value>"
+msgstr ""
+
+#: 04060116.xhp#hd_id3147570.167.help.text
+msgid "IMSQRT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3145202.169.help.text
+msgctxt "04060116.xhp#hd_id3145202.169.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060116.xhp#par_id3150760.170.help.text
+msgid "IMSQRT(\"ComplexNumber\")"
+msgstr ""
+
+#: 04060116.xhp#hd_id3147268.172.help.text
+#, fuzzy
+msgctxt "04060116.xhp#hd_id3147268.172.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060116.xhp#par_id3152807.173.help.text
+msgid " <item type=\"input\">=IMSQRT(\"3+4i\")</item> returns 2+1i."
+msgstr ""
+
+#: 04060116.xhp#bm_id3154054.help.text
+msgid "<bookmark_value>COMPLEX function</bookmark_value>"
+msgstr ""
+
+#: 04060116.xhp#hd_id3154054.157.help.text
+msgid "COMPLEX"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3154744.159.help.text
+msgctxt "04060116.xhp#hd_id3154744.159.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060116.xhp#par_id3155999.160.help.text
+msgid "COMPLEX(RealNum; INum; Suffix)"
+msgstr ""
+
+#: 04060116.xhp#par_id3153626.161.help.text
+msgid " <emph>RealNum</emph> is the real coefficient of the complex number."
+msgstr ""
+
+#: 04060116.xhp#par_id3149135.162.help.text
+msgid " <emph>INum</emph> is the imaginary coefficient of the complex number."
+msgstr ""
+
+#: 04060116.xhp#par_id3155849.163.help.text
+msgid " <emph>Suffix</emph> is a list of options, \"i\" or \"j\"."
+msgstr ""
+
+#: 04060116.xhp#hd_id3145659.164.help.text
+#, fuzzy
+msgctxt "04060116.xhp#hd_id3145659.164.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060116.xhp#par_id3143229.165.help.text
+msgid " <item type=\"input\">=COMPLEX(3;4;\"j\")</item> returns 3+4j."
+msgstr ""
+
+#: 04060116.xhp#bm_id3155103.help.text
+msgid "<bookmark_value>OCT2BIN function</bookmark_value> <bookmark_value>converting;octal numbers, into binary numbers</bookmark_value>"
+msgstr ""
+
+#: 04060116.xhp#hd_id3155103.217.help.text
+msgid "OCT2BIN"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3146088.219.help.text
+msgctxt "04060116.xhp#hd_id3146088.219.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060116.xhp#par_id3154303.220.help.text
+msgid "OCT2BIN(Number; Places)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3147493.223.help.text
+#, fuzzy
+msgctxt "04060116.xhp#hd_id3147493.223.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060116.xhp#par_id3147260.224.help.text
+msgid " <item type=\"input\">=OCT2BIN(3;3)</item> returns 011."
+msgstr ""
+
+#: 04060116.xhp#bm_id3152791.help.text
+msgid "<bookmark_value>OCT2DEC function</bookmark_value> <bookmark_value>converting;octal numbers, into decimal numbers</bookmark_value>"
+msgstr ""
+
+#: 04060116.xhp#hd_id3152791.225.help.text
+msgid "OCT2DEC"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3159337.227.help.text
+msgctxt "04060116.xhp#hd_id3159337.227.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060116.xhp#par_id3153902.228.help.text
+msgid "OCT2DEC(Number)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3154698.230.help.text
+#, fuzzy
+msgctxt "04060116.xhp#hd_id3154698.230.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060116.xhp#par_id3154930.231.help.text
+msgid " <item type=\"input\">=OCT2DEC(144)</item> returns 100."
+msgstr ""
+
+#: 04060116.xhp#bm_id3155391.help.text
+msgid "<bookmark_value>OCT2HEX function</bookmark_value> <bookmark_value>converting;octal numbers, into hexadecimal numbers</bookmark_value>"
+msgstr ""
+
+#: 04060116.xhp#hd_id3155391.232.help.text
+msgid "OCT2HEX"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3146988.234.help.text
+msgctxt "04060116.xhp#hd_id3146988.234.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060116.xhp#par_id3150523.235.help.text
+msgid "OCT2HEX(Number; Places)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3150504.238.help.text
+#, fuzzy
+msgctxt "04060116.xhp#hd_id3150504.238.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060116.xhp#par_id3148802.239.help.text
+msgid " <item type=\"input\">=OCT2HEX(144;4)</item> returns 0064."
+msgstr ""
+
+#: 04060116.xhp#bm_id3148446.help.text
+msgid "<bookmark_value>CONVERT_ADD function</bookmark_value>"
+msgstr ""
+
+#: 04060116.xhp#hd_id3148446.175.help.text
+msgid "CONVERT_ADD"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#par_id3153055.177.help.text
+msgid "Property"
+msgstr "Властивість"
+
+#: 04060116.xhp#par_id3147234.178.help.text
+msgid "Units"
+msgstr ""
+
+#: 04060116.xhp#par_id3147512.179.help.text
+msgid "Weight"
+msgstr "Ширина"
+
+#: 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 "Довжина"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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
+#, fuzzy
+msgid "Power"
+msgstr ""
+"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Степінь\n"
+"#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ступінь"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060116.xhp#par_id0908200903090966.help.text
+msgid "ki kibi 1024"
+msgstr ""
+
+#: 04060116.xhp#par_id0908200903090958.help.text
+msgid "Mi mebi 1048576"
+msgstr ""
+
+#: 04060116.xhp#par_id0908200903090936.help.text
+msgid "Gi gibi 1073741824"
+msgstr ""
+
+#: 04060116.xhp#par_id0908200903090975.help.text
+msgid "Ti tebi 1099511627776"
+msgstr ""
+
+#: 04060116.xhp#par_id0908200903090930.help.text
+msgid "Pi pebi 1125899906842620"
+msgstr ""
+
+#: 04060116.xhp#par_id0908200903091070.help.text
+msgid "Ei exbi 1152921504606850000"
+msgstr ""
+
+#: 04060116.xhp#par_id0908200903091097.help.text
+msgid "Zi zebi 1180591620717410000000"
+msgstr ""
+
+#: 04060116.xhp#par_id0908200903091010.help.text
+msgid "Yi yobi 1208925819614630000000000"
+msgstr ""
+
+#: 04060116.xhp#hd_id3146125.209.help.text
+msgctxt "04060116.xhp#hd_id3146125.209.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060116.xhp#par_id3153695.210.help.text
+msgid "CONVERT_ADD(Number; \"FromUnit\"; \"ToUnit\")"
+msgstr ""
+
+#: 04060116.xhp#par_id3147522.211.help.text
+msgid " <emph>Number</emph> is the number to be converted."
+msgstr ""
+
+#: 04060116.xhp#par_id3154472.212.help.text
+msgid " <emph>FromUnit</emph> is the unit from which conversion is taking place."
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#hd_id3156270.214.help.text
+#, fuzzy
+msgctxt "04060116.xhp#hd_id3156270.214.help.text"
+msgid "Examples"
+msgstr "Приклади:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060116.xhp#bm_id3147096.help.text
+msgid "<bookmark_value>FACTDOUBLE function</bookmark_value> <bookmark_value>factorials;numbers with increments of two</bookmark_value>"
+msgstr ""
+
+#: 04060116.xhp#hd_id3147096.36.help.text
+msgid "FACTDOUBLE"
+msgstr ""
+
+#: 04060116.xhp#par_id3151309.37.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">Returns the double factorial of a number.</ahelp>"
+msgstr ""
+
+#: 04060116.xhp#hd_id3154666.38.help.text
+msgctxt "04060116.xhp#hd_id3154666.38.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060116.xhp#par_id3155121.39.help.text
+msgid "FACTDOUBLE(Number)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060116.xhp#par_id2480849.help.text
+msgid "For even numbers FACTDOUBLE(n) returns:"
+msgstr ""
+
+#: 04060116.xhp#par_id4181951.help.text
+msgid "2*4*6*8* ... *n"
+msgstr ""
+
+#: 04060116.xhp#par_id2927335.help.text
+msgid "For odd numbers FACTDOUBLE(n) returns:"
+msgstr ""
+
+#: 04060116.xhp#par_id2107303.help.text
+msgid "1*3*5*7* ... *n"
+msgstr ""
+
+#: 04060116.xhp#par_id4071779.help.text
+msgid "FACTDOUBLE(0) returns 1 by definition."
+msgstr ""
+
+#: 04060116.xhp#hd_id3154622.42.help.text
+#, fuzzy
+msgctxt "04060116.xhp#hd_id3154622.42.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060116.xhp#par_id7844477.help.text
+msgid " <item type=\"input\">=FACTDOUBLE(5)</item> returns 15."
+msgstr ""
+
+#: 04060116.xhp#par_id3154116.43.help.text
+msgid " <item type=\"input\">=FACTDOUBLE(6)</item> returns 48."
+msgstr ""
+
+#: 04060116.xhp#par_id6478469.help.text
+msgid " <item type=\"input\">=FACTDOUBLE(0)</item> returns 1."
+msgstr ""
+
+#: 05050100.xhp#tit.help.text
+msgctxt "05050100.xhp#tit.help.text"
+msgid "Rename Sheet"
+msgstr ""
+
+#: 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 ""
+
+#: 05050100.xhp#hd_id3147336.1.help.text
+msgctxt "05050100.xhp#hd_id3147336.1.help.text"
+msgid "Rename Sheet"
+msgstr ""
+
+#: 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 ""
+
+#: 05050100.xhp#hd_id3153968.3.help.text
+msgctxt "05050100.xhp#hd_id3153968.3.help.text"
+msgid "Name"
+msgstr ""
+
+#: 05050100.xhp#par_id3155131.help.text
+msgid "<ahelp hid=\"HID_SC_APPEND_NAME\">Enter a new name for the sheet here.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 07080000.xhp#tit.help.text
+msgid "Split"
+msgstr ""
+
+#: 07080000.xhp#hd_id3163800.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"Split\">Split</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: func_now.xhp#tit.help.text
+msgid "NOW"
+msgstr ""
+
+#: func_now.xhp#bm_id3150521.help.text
+msgid "<bookmark_value>NOW function</bookmark_value>"
+msgstr ""
+
+#: func_now.xhp#hd_id3150521.47.help.text
+msgid "<variable id=\"now\"><link href=\"text/scalc/01/func_now.xhp\">NOW</link></variable>"
+msgstr ""
+
+#: 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 ""
+
+#: func_now.xhp#hd_id3146988.49.help.text
+msgctxt "func_now.xhp#hd_id3146988.49.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: func_now.xhp#par_id3154897.50.help.text
+msgid "NOW()"
+msgstr ""
+
+#: func_now.xhp#par_id4598529.help.text
+msgid "NOW is a function without arguments."
+msgstr ""
+
+#: func_now.xhp#hd_id3154205.51.help.text
+#, fuzzy
+msgctxt "func_now.xhp#hd_id3154205.51.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 12120100.xhp#tit.help.text
+msgid "Criteria"
+msgstr ""
+
+#: 12120100.xhp#bm_id1464278.help.text
+msgid "<bookmark_value>selection lists;validity</bookmark_value>"
+msgstr ""
+
+#: 12120100.xhp#hd_id3153032.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12120100.xhp\" name=\"Criteria\">Criteria</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 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 ""
+
+#: 12120100.xhp#hd_id3153896.5.help.text
+msgid "Allow"
+msgstr ""
+
+#: 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 ""
+
+#: 12120100.xhp#par_id3148797.17.help.text
+msgid "The following conditions are available:"
+msgstr ""
+
+#: 12120100.xhp#par_id3150447.18.help.text
+msgctxt "12120100.xhp#par_id3150447.18.help.text"
+msgid "Condition"
+msgstr ""
+
+#: 12120100.xhp#par_id3155854.19.help.text
+msgid "Effect"
+msgstr "Результат"
+
+#: 12120100.xhp#par_id3153092.20.help.text
+msgid "All values"
+msgstr ""
+
+#: 12120100.xhp#par_id3155411.21.help.text
+msgid "No limitation."
+msgstr ""
+
+#: 12120100.xhp#par_id3147434.22.help.text
+msgid "Whole number"
+msgstr ""
+
+#: 12120100.xhp#par_id3154319.23.help.text
+msgid "Only whole numbers corresponding to the condition."
+msgstr ""
+
+#: 12120100.xhp#par_id3145802.24.help.text
+msgid "Decimal"
+msgstr ""
+
+#: 12120100.xhp#par_id3153160.25.help.text
+msgid "All numbers corresponding to the condition."
+msgstr ""
+
+#: 12120100.xhp#par_id3149377.26.help.text
+msgctxt "12120100.xhp#par_id3149377.26.help.text"
+msgid "Date"
+msgstr ""
+
+#: 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 ""
+
+#: 12120100.xhp#par_id3146969.28.help.text
+msgctxt "12120100.xhp#par_id3146969.28.help.text"
+msgid "Time"
+msgstr ""
+
+#: 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 ""
+
+#: 12120100.xhp#par_idN106A0.help.text
+msgid "Cell range"
+msgstr ""
+
+#: 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 ""
+
+#: 12120100.xhp#par_idN106AB.help.text
+msgid "List"
+msgstr ""
+
+#: 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 ""
+
+#: 12120100.xhp#par_id3154756.30.help.text
+msgid "Text length"
+msgstr ""
+
+#: 12120100.xhp#par_id3147339.31.help.text
+msgid "Entries whose length corresponds to the condition."
+msgstr ""
+
+#: 12120100.xhp#hd_id3154704.7.help.text
+msgid "Allow blank cells"
+msgstr ""
+
+#: 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 ""
+
+#: 12120100.xhp#par_idN10709.help.text
+msgid "Show selection list"
+msgstr ""
+
+#: 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 ""
+
+#: 12120100.xhp#par_idN10724.help.text
+msgid "Sort entries ascending"
+msgstr ""
+
+#: 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 ""
+
+#: 12120100.xhp#par_idN1073F.help.text
+msgid "Source"
+msgstr ""
+
+#: 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 ""
+
+#: 12120100.xhp#par_idN1075A.help.text
+msgid "Entries"
+msgstr ""
+
+#: 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 ""
+
+#: 12120100.xhp#hd_id3163807.9.help.text
+msgid "Data"
+msgstr ""
+
+#: 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 ""
+
+#: 12120100.xhp#hd_id3153782.11.help.text
+msgctxt "12120100.xhp#hd_id3153782.11.help.text"
+msgid "Value"
+msgstr ""
+
+#: 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 ""
+
+#: 12120100.xhp#hd_id3149814.13.help.text
+msgid "Minimum"
+msgstr ""
+
+#: 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 ""
+
+#: 12120100.xhp#hd_id3149035.15.help.text
+msgid "Maximum"
+msgstr ""
+
+#: 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 ""
+
+#: 12080200.xhp#tit.help.text
+msgid "Show Details"
+msgstr ""
+
+#: 12080200.xhp#bm_id3153561.help.text
+msgid "<bookmark_value>tables; showing details</bookmark_value>"
+msgstr ""
+
+#: 12080200.xhp#hd_id3153561.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\">Show Details</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 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 ""
+
+#: 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/12030100.xhp\">Сортувати за спаданням / Сортувати за спаданням</link>"
+
+#: 05030200.xhp#tit.help.text
+msgctxt "05030200.xhp#tit.help.text"
+msgid "Optimal Row Heights"
+msgstr ""
+
+#: 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 ""
+
+#: 05030200.xhp#hd_id3148491.1.help.text
+msgctxt "05030200.xhp#hd_id3148491.1.help.text"
+msgid "Optimal Row Heights"
+msgstr ""
+
+#: 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 ""
+
+#: 05030200.xhp#hd_id3154908.3.help.text
+msgctxt "05030200.xhp#hd_id3154908.3.help.text"
+msgid "Add"
+msgstr ""
+
+#: 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 ""
+
+#: 05030200.xhp#hd_id3150439.5.help.text
+msgctxt "05030200.xhp#hd_id3150439.5.help.text"
+msgid "Default value"
+msgstr ""
+
+#: 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 ""
+
+#: 04060111.xhp#tit.help.text
+msgctxt "04060111.xhp#tit.help.text"
+msgid "Add-in Functions"
+msgstr ""
+
+#: 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 ""
+
+#: 04060111.xhp#hd_id3150870.1.help.text
+msgctxt "04060111.xhp#hd_id3150870.1.help.text"
+msgid "Add-in Functions"
+msgstr ""
+
+#: 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 ""
+
+#: 04060111.xhp#par_id3163713.75.help.text
+msgid "<link href=\"text/scalc/01/04060112.xhp#addinconcept\">Add-in concept</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060111.xhp#hd_id3151075.7.help.text
+msgid "Add-ins supplied"
+msgstr ""
+
+#: 04060111.xhp#par_id3156285.8.help.text
+msgid "$[officename] contains examples for the add-in interface of $[officename] Calc."
+msgstr ""
+
+#: 04060111.xhp#par_id3159267.76.help.text
+msgid "<link href=\"text/scalc/01/04060115.xhp\">Analysis Functions Part One</link>"
+msgstr ""
+
+#: 04060111.xhp#par_id3154703.77.help.text
+msgid "<link href=\"text/scalc/01/04060116.xhp\">Analysis Functions Part Two</link>"
+msgstr ""
+
+#: 04060111.xhp#bm_id3149566.help.text
+msgid "<bookmark_value>ISLEAPYEAR function</bookmark_value><bookmark_value>leap year determination</bookmark_value>"
+msgstr ""
+
+#: 04060111.xhp#hd_id3149566.14.help.text
+msgid "ISLEAPYEAR"
+msgstr ""
+
+#: 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 ""
+
+#: 04060111.xhp#hd_id3148487.16.help.text
+msgctxt "04060111.xhp#hd_id3148487.16.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060111.xhp#par_id3150205.17.help.text
+msgid "ISLEAPYEAR(\"Date\")"
+msgstr ""
+
+#: 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 ""
+
+#: 04060111.xhp#hd_id3149817.19.help.text
+#, fuzzy
+msgctxt "04060111.xhp#hd_id3149817.19.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060111.xhp#par_idN107E7.help.text
+msgid "You may also use =ISLEAPYEAR(\"1968-02-29\") or =ISLEAPYEAR(\"2/29/68\")."
+msgstr ""
+
+#: 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 ""
+
+#: 04060111.xhp#bm_id3154656.help.text
+msgid "<bookmark_value>YEARS function</bookmark_value><bookmark_value>number of years between two dates</bookmark_value>"
+msgstr ""
+
+#: 04060111.xhp#hd_id3154656.21.help.text
+msgid "YEARS"
+msgstr ""
+
+#: 04060111.xhp#par_id3150886.22.help.text
+msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFYEARS\">Calculates the difference in years between two dates.</ahelp>"
+msgstr ""
+
+#: 04060111.xhp#hd_id3154370.23.help.text
+msgctxt "04060111.xhp#hd_id3154370.23.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060111.xhp#par_id3146114.24.help.text
+msgid "YEARS(StartDate; EndDate; Type)"
+msgstr ""
+
+#: 04060111.xhp#par_id3145387.25.help.text
+msgctxt "04060111.xhp#par_id3145387.25.help.text"
+msgid "<emph>StartDate</emph> is the first date"
+msgstr ""
+
+#: 04060111.xhp#par_id3156290.26.help.text
+msgctxt "04060111.xhp#par_id3156290.26.help.text"
+msgid "<emph>EndDate</emph> is the second date"
+msgstr ""
+
+#: 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 ""
+
+#: 04060111.xhp#bm_id3152898.help.text
+msgid "<bookmark_value>MONTHS function</bookmark_value><bookmark_value>number of months between two dates</bookmark_value>"
+msgstr ""
+
+#: 04060111.xhp#hd_id3152898.28.help.text
+msgid "MONTHS"
+msgstr ""
+
+#: 04060111.xhp#par_id3153066.29.help.text
+msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFMONTHS\">Calculates the difference in months between two dates.</ahelp>"
+msgstr ""
+
+#: 04060111.xhp#hd_id3151240.30.help.text
+msgctxt "04060111.xhp#hd_id3151240.30.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060111.xhp#par_id3146869.31.help.text
+msgid "MONTHS(StartDate; EndDate; Type)"
+msgstr ""
+
+#: 04060111.xhp#par_id3145075.32.help.text
+msgctxt "04060111.xhp#par_id3145075.32.help.text"
+msgid "<emph>StartDate</emph> is the first date"
+msgstr ""
+
+#: 04060111.xhp#par_id3157981.33.help.text
+msgctxt "04060111.xhp#par_id3157981.33.help.text"
+msgid "<emph>EndDate</emph> is the second date"
+msgstr ""
+
+#: 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 ""
+
+#: 04060111.xhp#bm_id3159094.help.text
+msgid "<bookmark_value>ROT13 function</bookmark_value><bookmark_value>encrypting text</bookmark_value>"
+msgstr ""
+
+#: 04060111.xhp#hd_id3159094.35.help.text
+msgid "ROT13"
+msgstr ""
+
+#: 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 ""
+
+#: 04060111.xhp#hd_id3150893.37.help.text
+msgctxt "04060111.xhp#hd_id3150893.37.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060111.xhp#par_id3159205.38.help.text
+msgid "ROT13(Text)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060111.xhp#hd_id3151300.43.help.text
+msgid "DAYSINYEAR"
+msgstr ""
+
+#: 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 ""
+
+#: 04060111.xhp#hd_id3145358.45.help.text
+msgctxt "04060111.xhp#hd_id3145358.45.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060111.xhp#par_id3154651.46.help.text
+msgid "DAYSINYEAR(Date)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060111.xhp#hd_id3153487.48.help.text
+#, fuzzy
+msgctxt "04060111.xhp#hd_id3153487.48.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060111.xhp#hd_id3154737.50.help.text
+msgid "DAYSINMONTH"
+msgstr ""
+
+#: 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 ""
+
+#: 04060111.xhp#hd_id3145114.52.help.text
+msgctxt "04060111.xhp#hd_id3145114.52.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060111.xhp#par_id3150955.53.help.text
+msgid "DAYSINMONTH(Date)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060111.xhp#hd_id3149871.55.help.text
+#, fuzzy
+msgctxt "04060111.xhp#hd_id3149871.55.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060111.xhp#bm_id3149048.help.text
+msgid "<bookmark_value>WEEKS function</bookmark_value><bookmark_value>number of weeks;between two dates</bookmark_value>"
+msgstr ""
+
+#: 04060111.xhp#hd_id3149048.57.help.text
+msgid "WEEKS"
+msgstr ""
+
+#: 04060111.xhp#par_id3153340.58.help.text
+msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFWEEKS\">Calculates the difference in weeks between two dates.</ahelp>"
+msgstr ""
+
+#: 04060111.xhp#hd_id3150393.59.help.text
+msgctxt "04060111.xhp#hd_id3150393.59.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060111.xhp#par_id3147402.60.help.text
+msgid "WEEKS(StartDate; EndDate; Type)"
+msgstr ""
+
+#: 04060111.xhp#par_id3151387.61.help.text
+msgctxt "04060111.xhp#par_id3151387.61.help.text"
+msgid "<emph>StartDate</emph> is the first date"
+msgstr ""
+
+#: 04060111.xhp#par_id3146324.62.help.text
+msgctxt "04060111.xhp#par_id3146324.62.help.text"
+msgid "<emph>EndDate</emph> is the second date"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060111.xhp#hd_id3145237.64.help.text
+msgid "WEEKSINYEAR"
+msgstr ""
+
+#: 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 ""
+
+#: 04060111.xhp#hd_id3149719.66.help.text
+msgctxt "04060111.xhp#hd_id3149719.66.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060111.xhp#par_id3145638.67.help.text
+msgid "WEEKSINYEAR(Date)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060111.xhp#hd_id3150037.69.help.text
+#, fuzzy
+msgctxt "04060111.xhp#hd_id3150037.69.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060111.xhp#hd_id3157901.72.help.text
+msgid "Add-ins through %PRODUCTNAME API"
+msgstr ""
+
+#: 04060111.xhp#par_id3149351.73.help.text
+msgid "Add-ins can also be implemented through the %PRODUCTNAME <link href=\"http://api.libreoffice.org/\">API</link>."
+msgstr ""
+
+#: 04060102.xhp#tit.help.text
+msgctxt "04060102.xhp#tit.help.text"
+msgid "Date & Time Functions"
+msgstr ""
+
+#: 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 ""
+
+#: 04060102.xhp#hd_id3154536.1.help.text
+msgctxt "04060102.xhp#hd_id3154536.1.help.text"
+msgid "Date & Time Functions"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060102.xhp#hd_id2408825.help.text
+msgid "Date base for day zero"
+msgstr ""
+
+#: 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 ""
+
+#: 04060102.xhp#par_id6401257.help.text
+msgid "Date base"
+msgstr ""
+
+#: 04060102.xhp#par_id5841242.help.text
+msgid "Use"
+msgstr ""
+
+#: 04060102.xhp#par_id6794030.help.text
+msgid "'12/30/1899'"
+msgstr ""
+
+#: 04060102.xhp#par_id7096774.help.text
+msgid "(default)"
+msgstr ""
+
+#: 04060102.xhp#par_id5699942.help.text
+msgid "'01/01/1900'"
+msgstr ""
+
+#: 04060102.xhp#par_id6420484.help.text
+msgid "(used in former StarCalc 1.0)"
+msgstr ""
+
+#: 04060102.xhp#par_id6986602.help.text
+msgid "'01/01/1904'"
+msgstr ""
+
+#: 04060102.xhp#par_id616779.help.text
+msgid "(used in Apple software)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060102.xhp#hd_id757469.help.text
+msgid "Two digits years"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060102.xhp#par_idN1067A.help.text
+msgid "Functions"
+msgstr "Функції"
+
+#: 04060102.xhp#par_idN10683.help.text
+msgid "<embedvar href=\"text/scalc/01/func_workday.xhp#workday\"/>"
+msgstr ""
+
+#: 04060102.xhp#par_id5189062.help.text
+msgid "<embedvar href=\"text/scalc/01/func_yearfrac.xhp#yearfrac\"/>"
+msgstr ""
+
+#: 04060102.xhp#par_id6854457.help.text
+msgid "<embedvar href=\"text/scalc/01/func_date.xhp#date\"/>"
+msgstr ""
+
+#: 04060102.xhp#par_id6354457.help.text
+msgid "<embedvar href=\"text/scalc/01/func_datedif.xhp#datedif\"/>"
+msgstr ""
+
+#: 04060102.xhp#par_id3372295.help.text
+msgid "<embedvar href=\"text/scalc/01/func_datevalue.xhp#datevalue\"/>"
+msgstr ""
+
+#: 04060102.xhp#par_id5684377.help.text
+msgid "<embedvar href=\"text/scalc/01/func_edate.xhp#edate\"/>"
+msgstr ""
+
+#: 04060102.xhp#par_id7576525.help.text
+msgid "<embedvar href=\"text/scalc/01/func_today.xhp#today\"/>"
+msgstr ""
+
+#: 04060102.xhp#par_id641193.help.text
+msgid "<embedvar href=\"text/scalc/01/func_year.xhp#year\"/>"
+msgstr ""
+
+#: 04060102.xhp#par_id6501968.help.text
+msgid "<embedvar href=\"text/scalc/01/func_now.xhp#now\"/>"
+msgstr ""
+
+#: 04060102.xhp#par_id3886532.help.text
+msgid "<embedvar href=\"text/scalc/01/func_weeknum.xhp#weeknum\"/>"
+msgstr ""
+
+#: 04060102.xhp#par_id614947.help.text
+msgid "<embedvar href=\"text/scalc/01/func_weeknumadd.xhp#weeknumadd\"/>"
+msgstr ""
+
+#: 04060102.xhp#par_id3953062.help.text
+msgid "<embedvar href=\"text/scalc/01/func_minute.xhp#minute\"/>"
+msgstr ""
+
+#: 04060102.xhp#par_id2579729.help.text
+msgid "<embedvar href=\"text/scalc/01/func_month.xhp#month\"/>"
+msgstr ""
+
+#: 04060102.xhp#par_id1346781.help.text
+msgid "<embedvar href=\"text/scalc/01/func_eomonth.xhp#eomonth\"/>"
+msgstr ""
+
+#: 04060102.xhp#par_id8951384.help.text
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.xhp#networkdays\"/>"
+msgstr ""
+
+#: 04060102.xhp#par_id1074251.help.text
+msgid "<embedvar href=\"text/scalc/01/func_eastersunday.xhp#eastersunday\"/>"
+msgstr ""
+
+#: 04060102.xhp#par_id372325.help.text
+msgid "<embedvar href=\"text/scalc/01/func_second.xhp#second\"/>"
+msgstr ""
+
+#: 04060102.xhp#par_id224005.help.text
+msgid "<embedvar href=\"text/scalc/01/func_hour.xhp#hour\"/>"
+msgstr ""
+
+#: 04060102.xhp#par_id5375835.help.text
+msgid "<embedvar href=\"text/scalc/01/func_day.xhp#day\"/>"
+msgstr ""
+
+#: 04060102.xhp#par_id1208838.help.text
+msgid "<embedvar href=\"text/scalc/01/func_days.xhp#days\"/>"
+msgstr ""
+
+#: 04060102.xhp#par_id7679982.help.text
+msgid "<embedvar href=\"text/scalc/01/func_days360.xhp#days360\"/>"
+msgstr ""
+
+#: 04060102.xhp#par_id9172643.help.text
+msgid "<embedvar href=\"text/scalc/01/func_weekday.xhp#weekday\"/>"
+msgstr ""
+
+#: 04060102.xhp#par_id2354503.help.text
+msgid "<embedvar href=\"text/scalc/01/func_time.xhp#time\"/>"
+msgstr ""
+
+#: 04060102.xhp#par_id7765434.help.text
+msgid "<embedvar href=\"text/scalc/01/func_timevalue.xhp#timevalue\"/>"
+msgstr ""
+
+#: 12080400.xhp#tit.help.text
+msgid "Ungroup"
+msgstr ""
+
+#: 12080400.xhp#hd_id3148492.1.help.text
+#, fuzzy
+msgctxt "12080400.xhp#hd_id3148492.1.help.text"
+msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 12080400.xhp#hd_id3151210.3.help.text
+msgid "Deactivate for"
+msgstr ""
+
+#: 12080400.xhp#hd_id3156280.5.help.text
+msgctxt "12080400.xhp#hd_id3156280.5.help.text"
+msgid "Rows"
+msgstr ""
+
+#: 12080400.xhp#par_id3125864.6.help.text
+msgid "Removes selected rows from a group."
+msgstr ""
+
+#: 12080400.xhp#hd_id3147230.7.help.text
+msgctxt "12080400.xhp#hd_id3147230.7.help.text"
+msgid "Columns"
+msgstr ""
+
+#: 12080400.xhp#par_id3154685.8.help.text
+msgid "Removes selected columns from a group."
+msgstr ""
+
+#: func_eastersunday.xhp#tit.help.text
+msgid "EASTERSUNDAY"
+msgstr ""
+
+#: func_eastersunday.xhp#bm_id3152960.help.text
+msgid "<bookmark_value>EASTERSUNDAY function</bookmark_value>"
+msgstr ""
+
+#: func_eastersunday.xhp#hd_id3152960.175.help.text
+msgid "<variable id=\"eastersunday\"><link href=\"text/scalc/01/func_eastersunday.xhp\">EASTERSUNDAY</link></variable>"
+msgstr ""
+
+#: 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 ""
+
+#: func_eastersunday.xhp#hd_id9460127.help.text
+msgctxt "func_eastersunday.xhp#hd_id9460127.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: func_eastersunday.xhp#par_id2113711.help.text
+msgid "EASTERSUNDAY(Year)"
+msgstr ""
+
+#: 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 ""
+
+#: func_eastersunday.xhp#par_id3156156.177.help.text
+msgid "Easter Monday = EASTERSUNDAY(Year) + 1"
+msgstr ""
+
+#: func_eastersunday.xhp#par_id3147521.178.help.text
+msgid "Good Friday = EASTERSUNDAY(Year) - 2"
+msgstr ""
+
+#: func_eastersunday.xhp#par_id3146072.179.help.text
+msgid "Pentecost Sunday = EASTERSUNDAY(Year) + 49"
+msgstr ""
+
+#: func_eastersunday.xhp#par_id3149553.180.help.text
+msgid "Pentecost Monday = EASTERSUNDAY(Year) + 50"
+msgstr ""
+
+#: func_eastersunday.xhp#hd_id3155120.181.help.text
+#, fuzzy
+msgctxt "func_eastersunday.xhp#hd_id3155120.181.help.text"
+msgid "Examples"
+msgstr "Приклади:"
+
+#: func_eastersunday.xhp#par_id3154472.182.help.text
+msgid "=EASTERSUNDAY(2000) returns 2000-04-23."
+msgstr ""
+
+#: 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 ""
+
+#: 05080300.xhp#tit.help.text
+msgctxt "05080300.xhp#tit.help.text"
+msgid "Edit Print Ranges"
+msgstr ""
+
+#: 05080300.xhp#hd_id3153088.1.help.text
+msgctxt "05080300.xhp#hd_id3153088.1.help.text"
+msgid "Edit Print Ranges"
+msgstr ""
+
+#: 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 ""
+
+#: 05080300.xhp#par_idN105AE.help.text
+msgid "<embedvar href=\"text/scalc/guide/printranges.xhp#printranges\"/>"
+msgstr ""
+
+#: 05080300.xhp#hd_id3156281.3.help.text
+msgctxt "05080300.xhp#hd_id3156281.3.help.text"
+msgid "Print range"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 05080300.xhp#hd_id3149260.7.help.text
+msgid "Rows to repeat"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 05080300.xhp#hd_id3149581.10.help.text
+msgid "Columns to repeat"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: func_year.xhp#tit.help.text
+msgid "YEAR"
+msgstr ""
+
+#: func_year.xhp#bm_id3153982.help.text
+msgid "<bookmark_value>YEAR function</bookmark_value>"
+msgstr ""
+
+#: func_year.xhp#hd_id3153982.37.help.text
+msgid "<variable id=\"year\"><link href=\"text/scalc/01/func_year.xhp\">YEAR</link></variable>"
+msgstr ""
+
+#: 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 ""
+
+#: func_year.xhp#hd_id3146090.39.help.text
+msgctxt "func_year.xhp#hd_id3146090.39.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: func_year.xhp#par_id3154304.40.help.text
+msgid "YEAR(Number)"
+msgstr ""
+
+#: 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 ""
+
+#: func_year.xhp#hd_id3152797.42.help.text
+#, fuzzy
+msgctxt "func_year.xhp#hd_id3152797.42.help.text"
+msgid "Examples"
+msgstr "Приклади:"
+
+#: func_year.xhp#par_id3145668.43.help.text
+msgid "<item type=\"input\">=YEAR(1)</item> returns 1899"
+msgstr ""
+
+#: func_year.xhp#par_id3151168.44.help.text
+msgid "<item type=\"input\">=YEAR(2)</item> returns 1900"
+msgstr ""
+
+#: func_year.xhp#par_id3150115.45.help.text
+msgid "<item type=\"input\">=YEAR(33333.33)</item> returns 1991"
+msgstr ""
+
+#: 06030400.xhp#tit.help.text
+msgid "Remove Dependents"
+msgstr ""
+
+#: 06030400.xhp#bm_id3147335.help.text
+msgid "<bookmark_value>cells; removing dependents</bookmark_value>"
+msgstr ""
+
+#: 06030400.xhp#hd_id3147335.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/06030400.xhp\" name=\"Remove Dependents\">Remove Dependents</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 06050000.xhp#tit.help.text
+msgctxt "06050000.xhp#tit.help.text"
+msgid "Create Scenario"
+msgstr ""
+
+#: 06050000.xhp#hd_id3156023.1.help.text
+msgctxt "06050000.xhp#hd_id3156023.1.help.text"
+msgid "Create Scenario"
+msgstr ""
+
+#: 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 ""
+
+#: 06050000.xhp#par_idN10637.help.text
+msgid "<embedvar href=\"text/scalc/guide/scenario.xhp#scenario\"/>"
+msgstr ""
+
+#: 06050000.xhp#hd_id3156280.3.help.text
+msgid "Name of scenario"
+msgstr ""
+
+#: 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 ""
+
+#: 06050000.xhp#hd_id3153954.14.help.text
+msgid "Comment"
+msgstr ""
+
+#: 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 ""
+
+#: 06050000.xhp#hd_id3145273.16.help.text
+msgid "Settings"
+msgstr ""
+
+#: 06050000.xhp#par_id3153364.17.help.text
+msgid "This section is used to define some of the settings used in the scenario display."
+msgstr ""
+
+#: 06050000.xhp#hd_id3145367.18.help.text
+msgid "Display border"
+msgstr ""
+
+#: 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 ""
+
+#: 06050000.xhp#hd_id3149582.20.help.text
+msgid "Copy back"
+msgstr ""
+
+#: 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 ""
+
+#: 06050000.xhp#hd_id3149402.22.help.text
+msgid "Copy entire sheet"
+msgstr ""
+
+#: 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 ""
+
+#: 06050000.xhp#par_idN1075A.help.text
+msgid "Prevent changes"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 12040500.xhp#tit.help.text
+msgid "Hide AutoFilter"
+msgstr ""
+
+#: 12040500.xhp#bm_id3150276.help.text
+msgid "<bookmark_value>database ranges; hiding AutoFilter</bookmark_value>"
+msgstr ""
+
+#: 12040500.xhp#hd_id3150276.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12040500.xhp\" name=\"Hide AutoFilter\">Hide AutoFilter</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 02170000.xhp#tit.help.text
+msgid "Delete Sheet"
+msgstr ""
+
+#: 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 ""
+
+#: 02170000.xhp#hd_id3156424.1.help.text
+msgid " Delete Sheet"
+msgstr ""
+
+#: 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 ""
+
+#: 02170000.xhp#par_id3145801.7.help.text
+msgid "You cannot delete a sheet while <emph>Edit - Changes - Record</emph> is activated."
+msgstr ""
+
+#: 02170000.xhp#hd_id3147124.3.help.text
+msgid "Yes"
+msgstr ""
+
+#: 02170000.xhp#par_id3154943.4.help.text
+msgid "Deletes the current sheet."
+msgstr ""
+
+#: 02170000.xhp#hd_id3149412.5.help.text
+msgid "No"
+msgstr ""
+
+#: 02170000.xhp#par_id3154510.6.help.text
+msgid "Cancels the dialog. No delete is performed."
+msgstr ""
+
+#: 04070300.xhp#tit.help.text
+msgctxt "04070300.xhp#tit.help.text"
+msgid "Creating Names"
+msgstr ""
+
+#: 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 ""
+
+#: 04070300.xhp#hd_id3147264.1.help.text
+msgctxt "04070300.xhp#hd_id3147264.1.help.text"
+msgid "Creating Names"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04070300.xhp#hd_id3151116.3.help.text
+msgid "Create names from"
+msgstr ""
+
+#: 04070300.xhp#par_id3152597.4.help.text
+msgid "Defines which part of the spreadsheet is to be used for creating the name."
+msgstr ""
+
+#: 04070300.xhp#hd_id3153729.5.help.text
+msgid "Top row"
+msgstr ""
+
+#: 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 ""
+
+#: 04070300.xhp#hd_id3146984.7.help.text
+msgid "Left Column"
+msgstr ""
+
+#: 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 ""
+
+#: 04070300.xhp#hd_id3156284.9.help.text
+msgid "Bottom row"
+msgstr ""
+
+#: 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 ""
+
+#: 04070300.xhp#hd_id3154731.11.help.text
+msgid "Right Column"
+msgstr ""
+
+#: 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 ""
+
+#: 06030000.xhp#tit.help.text
+msgid "Detective"
+msgstr ""
+
+#: 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 ""
+
+#: 06030000.xhp#hd_id3151245.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/06030000.xhp\" name=\"Detective\">Detective</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 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 ""
+
+#: 03080000.xhp#tit.help.text
+msgid "Value Highlighting"
+msgstr ""
+
+#: 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>текст; вставка малюнків у</bookmark_value><bookmark_value>зображення; вставка у текст</bookmark_value><bookmark_value>вставка; малюнки</bookmark_value><bookmark_value>малюнки; параметри вставки</bookmark_value>"
+
+#: 03080000.xhp#hd_id3151384.help.text
+msgid "<link href=\"text/scalc/01/03080000.xhp\" name=\"Value Highlighting\">Value Highlighting</link>"
+msgstr ""
+
+#: 03080000.xhp#par_id3154366.help.text
+msgid "<ahelp hid=\".uno:ViewValueHighlighting\">Displays cell contents in different colors, depending on type.</ahelp>"
+msgstr ""
+
+#: 03080000.xhp#par_id3125863.help.text
+msgid "To remove the highlighting, unmark the menu entry."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060112.xhp#tit.help.text
+msgctxt "04060112.xhp#tit.help.text"
+msgid "Add-in for Programming in $[officename] Calc"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#hd_id3151076.1.help.text
+msgctxt "04060112.xhp#hd_id3151076.1.help.text"
+msgid "Add-in for Programming in $[officename] Calc"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060112.xhp#hd_id3146981.4.help.text
+msgid "The Add-In Concept"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060112.xhp#hd_id3145077.11.help.text
+msgid "General information about the interface"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3149899.13.help.text
+msgid "The data types are defined as follows:"
+msgstr ""
+
+#: 04060112.xhp#par_id3151302.14.help.text
+msgid "<emph>Data types</emph>"
+msgstr ""
+
+#: 04060112.xhp#par_id3143222.15.help.text
+msgid "<emph>Definition</emph>"
+msgstr ""
+
+#: 04060112.xhp#par_id3149384.16.help.text
+msgid "CALLTYPE"
+msgstr ""
+
+#: 04060112.xhp#par_id3146963.17.help.text
+msgid "Under Windows: FAR PASCAL (_far _pascal)"
+msgstr ""
+
+#: 04060112.xhp#par_id3153809.18.help.text
+msgid "Other: default (operating system specific default)"
+msgstr ""
+
+#: 04060112.xhp#par_id3154734.19.help.text
+msgid "USHORT"
+msgstr ""
+
+#: 04060112.xhp#par_id3155760.20.help.text
+msgid "2 Byte unsigned Integer"
+msgstr ""
+
+#: 04060112.xhp#par_id3145320.21.help.text
+msgid "DOUBLE"
+msgstr ""
+
+#: 04060112.xhp#par_id3150956.22.help.text
+msgid "8 byte platform-dependent format"
+msgstr ""
+
+#: 04060112.xhp#par_id3146097.23.help.text
+msgid "Paramtype"
+msgstr ""
+
+#: 04060112.xhp#par_id3150432.24.help.text
+msgid "Platform-dependent like int"
+msgstr ""
+
+#: 04060112.xhp#par_id3153955.25.help.text
+msgid "PTR_DOUBLE =0 pointer to a double"
+msgstr ""
+
+#: 04060112.xhp#par_id3159262.26.help.text
+msgid "PTR_STRING =1 pointer to a zero-terminated string"
+msgstr ""
+
+#: 04060112.xhp#par_id3148747.27.help.text
+msgid "PTR_DOUBLE_ARR =2 pointer to a double array"
+msgstr ""
+
+#: 04060112.xhp#par_id3147406.28.help.text
+msgid "PTR_STRING_ARR =3 pointer to a string array"
+msgstr ""
+
+#: 04060112.xhp#par_id3151392.29.help.text
+msgid "PTR_CELL_ARR =4 pointer to a cell array"
+msgstr ""
+
+#: 04060112.xhp#par_id3153028.30.help.text
+msgid "NONE =5"
+msgstr ""
+
+#: 04060112.xhp#hd_id3156396.31.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3157876.34.help.text
+msgid "void CALLTYPE fn(out, in1, in2, ...)"
+msgstr ""
+
+#: 04060112.xhp#par_id3147616.35.help.text
+msgid "Output: Resulting value"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#hd_id3150653.37.help.text
+msgid "GetFunctionCount()"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3150742.39.help.text
+msgctxt "04060112.xhp#par_id3150742.39.help.text"
+msgid "<emph>Syntax</emph>"
+msgstr ""
+
+#: 04060112.xhp#par_id3148728.40.help.text
+msgid "void CALLTYPE GetFunctionCount(USHORT& nCount)"
+msgstr ""
+
+#: 04060112.xhp#par_id3154677.41.help.text
+msgctxt "04060112.xhp#par_id3154677.41.help.text"
+msgid "<emph>Parameter</emph>"
+msgstr ""
+
+#: 04060112.xhp#par_id3146940.42.help.text
+msgid "USHORT &nCount:"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#hd_id3147476.44.help.text
+msgid "GetFunctionData()"
+msgstr ""
+
+#: 04060112.xhp#par_id3154841.45.help.text
+msgid "Determines all the important information about an Add-In function."
+msgstr ""
+
+#: 04060112.xhp#par_id3148888.46.help.text
+msgctxt "04060112.xhp#par_id3148888.46.help.text"
+msgid "<emph>Syntax</emph>"
+msgstr ""
+
+#: 04060112.xhp#par_id3148434.47.help.text
+msgid "void CALLTYPE GetFunctionData(USHORT& nNo, char* pFuncName, USHORT& nParamCount, Paramtype* peType, char* pInternalName)"
+msgstr ""
+
+#: 04060112.xhp#par_id3149253.48.help.text
+msgctxt "04060112.xhp#par_id3149253.48.help.text"
+msgid "<emph>Parameter</emph>"
+msgstr ""
+
+#: 04060112.xhp#par_id3149686.49.help.text
+msgctxt "04060112.xhp#par_id3149686.49.help.text"
+msgid "USHORT& nNo:"
+msgstr ""
+
+#: 04060112.xhp#par_id3149949.50.help.text
+msgid "Input: Function number between 0 and nCount-1, inclusively."
+msgstr ""
+
+#: 04060112.xhp#par_id3149546.51.help.text
+msgid "char* pFuncName:"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3153935.53.help.text
+msgid "USHORT& nParamCount:"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3145143.55.help.text
+msgid "Paramtype* peType:"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3153078.57.help.text
+msgid "char* pInternalName:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060112.xhp#hd_id3148567.60.help.text
+msgid "GetParameterDescription()"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3154501.62.help.text
+msgctxt "04060112.xhp#par_id3154501.62.help.text"
+msgid "<emph>Syntax</emph>"
+msgstr ""
+
+#: 04060112.xhp#par_id3153564.63.help.text
+msgid "void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char* pName, char* pDesc)"
+msgstr ""
+
+#: 04060112.xhp#par_id3157995.64.help.text
+msgctxt "04060112.xhp#par_id3157995.64.help.text"
+msgid "<emph>Parameter</emph>"
+msgstr ""
+
+#: 04060112.xhp#par_id3155925.65.help.text
+msgctxt "04060112.xhp#par_id3155925.65.help.text"
+msgid "USHORT& nNo:"
+msgstr ""
+
+#: 04060112.xhp#par_id3149883.66.help.text
+msgid "Input: Number of the function in the library; between 0 and nCount-1."
+msgstr ""
+
+#: 04060112.xhp#par_id3154326.67.help.text
+msgid "USHORT& nParam:"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3147374.69.help.text
+msgid "char* pName:"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3151020.71.help.text
+msgid "char* pDesc:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060112.xhp#hd_id3148874.76.help.text
+msgid "Cell areas"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#hd_id3156060.78.help.text
+msgid "Double Array"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3149388.80.help.text
+msgctxt "04060112.xhp#par_id3149388.80.help.text"
+msgid "<emph>Offset</emph>"
+msgstr ""
+
+#: 04060112.xhp#par_id3154636.81.help.text
+msgctxt "04060112.xhp#par_id3154636.81.help.text"
+msgid "<emph>Name</emph>"
+msgstr ""
+
+#: 04060112.xhp#par_id3153228.82.help.text
+msgctxt "04060112.xhp#par_id3153228.82.help.text"
+msgid "<emph>Description</emph>"
+msgstr ""
+
+#: 04060112.xhp#par_id3150685.83.help.text
+msgctxt "04060112.xhp#par_id3150685.83.help.text"
+msgid "0"
+msgstr ""
+
+#: 04060112.xhp#par_id3154869.84.help.text
+msgctxt "04060112.xhp#par_id3154869.84.help.text"
+msgid "Col1"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3149783.86.help.text
+msgctxt "04060112.xhp#par_id3149783.86.help.text"
+msgid "2"
+msgstr ""
+
+#: 04060112.xhp#par_id3155986.87.help.text
+msgctxt "04060112.xhp#par_id3155986.87.help.text"
+msgid "Row1"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3153721.89.help.text
+msgctxt "04060112.xhp#par_id3153721.89.help.text"
+msgid "4"
+msgstr ""
+
+#: 04060112.xhp#par_id3154317.90.help.text
+msgctxt "04060112.xhp#par_id3154317.90.help.text"
+msgid "Tab1"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3163820.92.help.text
+msgctxt "04060112.xhp#par_id3163820.92.help.text"
+msgid "6"
+msgstr ""
+
+#: 04060112.xhp#par_id3149710.93.help.text
+msgctxt "04060112.xhp#par_id3149710.93.help.text"
+msgid "Col2"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3145083.95.help.text
+msgctxt "04060112.xhp#par_id3145083.95.help.text"
+msgid "8"
+msgstr ""
+
+#: 04060112.xhp#par_id3156310.96.help.text
+msgctxt "04060112.xhp#par_id3156310.96.help.text"
+msgid "Row2"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3156133.98.help.text
+msgctxt "04060112.xhp#par_id3156133.98.help.text"
+msgid "10"
+msgstr ""
+
+#: 04060112.xhp#par_id3153218.99.help.text
+msgctxt "04060112.xhp#par_id3153218.99.help.text"
+msgid "Tab2"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3151270.101.help.text
+msgctxt "04060112.xhp#par_id3151270.101.help.text"
+msgid "12"
+msgstr ""
+
+#: 04060112.xhp#par_id3152934.102.help.text
+msgctxt "04060112.xhp#par_id3152934.102.help.text"
+msgid "Count"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3150879.104.help.text
+msgctxt "04060112.xhp#par_id3150879.104.help.text"
+msgid "14"
+msgstr ""
+
+#: 04060112.xhp#par_id3156002.105.help.text
+msgctxt "04060112.xhp#par_id3156002.105.help.text"
+msgid "Col"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3151295.107.help.text
+msgctxt "04060112.xhp#par_id3151295.107.help.text"
+msgid "16"
+msgstr ""
+
+#: 04060112.xhp#par_id3150261.108.help.text
+msgctxt "04060112.xhp#par_id3150261.108.help.text"
+msgid "Row"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3153150.110.help.text
+msgctxt "04060112.xhp#par_id3153150.110.help.text"
+msgid "18"
+msgstr ""
+
+#: 04060112.xhp#par_id3153758.111.help.text
+msgctxt "04060112.xhp#par_id3153758.111.help.text"
+msgid "Tab"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3149289.113.help.text
+msgctxt "04060112.xhp#par_id3149289.113.help.text"
+msgid "20"
+msgstr ""
+
+#: 04060112.xhp#par_id3156010.114.help.text
+msgctxt "04060112.xhp#par_id3156010.114.help.text"
+msgid "Error"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3147493.116.help.text
+msgctxt "04060112.xhp#par_id3147493.116.help.text"
+msgid "22"
+msgstr ""
+
+#: 04060112.xhp#par_id3149200.117.help.text
+msgctxt "04060112.xhp#par_id3149200.117.help.text"
+msgid "Value"
+msgstr ""
+
+#: 04060112.xhp#par_id3151174.118.help.text
+msgid "8 byte IEEE variable of type double/floating point"
+msgstr ""
+
+#: 04060112.xhp#par_id3154688.119.help.text
+msgid "30"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#hd_id3154935.122.help.text
+msgid "String Array"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3149908.124.help.text
+msgctxt "04060112.xhp#par_id3149908.124.help.text"
+msgid "<emph>Offset</emph>"
+msgstr ""
+
+#: 04060112.xhp#par_id3159165.125.help.text
+msgctxt "04060112.xhp#par_id3159165.125.help.text"
+msgid "<emph>Name</emph>"
+msgstr ""
+
+#: 04060112.xhp#par_id3159150.126.help.text
+msgctxt "04060112.xhp#par_id3159150.126.help.text"
+msgid "<emph>Description</emph>"
+msgstr ""
+
+#: 04060112.xhp#par_id3149769.127.help.text
+msgctxt "04060112.xhp#par_id3149769.127.help.text"
+msgid "0"
+msgstr ""
+
+#: 04060112.xhp#par_id3150509.128.help.text
+msgctxt "04060112.xhp#par_id3150509.128.help.text"
+msgid "Col1"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3145418.130.help.text
+msgctxt "04060112.xhp#par_id3145418.130.help.text"
+msgid "2"
+msgstr ""
+
+#: 04060112.xhp#par_id3147512.131.help.text
+msgctxt "04060112.xhp#par_id3147512.131.help.text"
+msgid "Row1"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3155362.133.help.text
+msgctxt "04060112.xhp#par_id3155362.133.help.text"
+msgid "4"
+msgstr ""
+
+#: 04060112.xhp#par_id3151051.134.help.text
+msgctxt "04060112.xhp#par_id3151051.134.help.text"
+msgid "Tab1"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3149158.136.help.text
+msgctxt "04060112.xhp#par_id3149158.136.help.text"
+msgid "6"
+msgstr ""
+
+#: 04060112.xhp#par_id3166437.137.help.text
+msgctxt "04060112.xhp#par_id3166437.137.help.text"
+msgid "Col2"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3166450.139.help.text
+msgctxt "04060112.xhp#par_id3166450.139.help.text"
+msgid "8"
+msgstr ""
+
+#: 04060112.xhp#par_id3152877.140.help.text
+msgctxt "04060112.xhp#par_id3152877.140.help.text"
+msgid "Row2"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3159270.142.help.text
+msgctxt "04060112.xhp#par_id3159270.142.help.text"
+msgid "10"
+msgstr ""
+
+#: 04060112.xhp#par_id3154107.143.help.text
+msgctxt "04060112.xhp#par_id3154107.143.help.text"
+msgid "Tab2"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3149924.145.help.text
+msgctxt "04060112.xhp#par_id3149924.145.help.text"
+msgid "12"
+msgstr ""
+
+#: 04060112.xhp#par_id3154858.146.help.text
+msgctxt "04060112.xhp#par_id3154858.146.help.text"
+msgid "Count"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3148467.148.help.text
+msgctxt "04060112.xhp#par_id3148467.148.help.text"
+msgid "14"
+msgstr ""
+
+#: 04060112.xhp#par_id3151126.149.help.text
+msgctxt "04060112.xhp#par_id3151126.149.help.text"
+msgid "Col"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3149416.151.help.text
+msgctxt "04060112.xhp#par_id3149416.151.help.text"
+msgid "16"
+msgstr ""
+
+#: 04060112.xhp#par_id3150631.152.help.text
+msgctxt "04060112.xhp#par_id3150631.152.help.text"
+msgid "Row"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3154797.154.help.text
+msgctxt "04060112.xhp#par_id3154797.154.help.text"
+msgid "18"
+msgstr ""
+
+#: 04060112.xhp#par_id3143274.155.help.text
+msgctxt "04060112.xhp#par_id3143274.155.help.text"
+msgid "Tab"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3145306.157.help.text
+msgctxt "04060112.xhp#par_id3145306.157.help.text"
+msgid "20"
+msgstr ""
+
+#: 04060112.xhp#par_id3153948.158.help.text
+msgctxt "04060112.xhp#par_id3153948.158.help.text"
+msgid "Error"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3153311.160.help.text
+msgctxt "04060112.xhp#par_id3153311.160.help.text"
+msgid "22"
+msgstr ""
+
+#: 04060112.xhp#par_id3148695.161.help.text
+msgid "Len"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3153772.163.help.text
+msgctxt "04060112.xhp#par_id3153772.163.help.text"
+msgid "24"
+msgstr ""
+
+#: 04060112.xhp#par_id3153702.164.help.text
+msgctxt "04060112.xhp#par_id3153702.164.help.text"
+msgid "String"
+msgstr ""
+
+#: 04060112.xhp#par_id3154474.165.help.text
+msgid "String with closing zero byte"
+msgstr ""
+
+#: 04060112.xhp#par_id3156269.166.help.text
+msgid "24+Len"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#hd_id3159091.169.help.text
+msgid "Cell Array"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3154664.171.help.text
+msgctxt "04060112.xhp#par_id3154664.171.help.text"
+msgid "<emph>Offset</emph>"
+msgstr ""
+
+#: 04060112.xhp#par_id3154566.172.help.text
+msgctxt "04060112.xhp#par_id3154566.172.help.text"
+msgid "<emph>Name</emph>"
+msgstr ""
+
+#: 04060112.xhp#par_id3146073.173.help.text
+msgctxt "04060112.xhp#par_id3146073.173.help.text"
+msgid "<emph>Description</emph>"
+msgstr ""
+
+#: 04060112.xhp#par_id3154117.174.help.text
+msgctxt "04060112.xhp#par_id3154117.174.help.text"
+msgid "0"
+msgstr ""
+
+#: 04060112.xhp#par_id3150988.175.help.text
+msgctxt "04060112.xhp#par_id3150988.175.help.text"
+msgid "Col1"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3153666.177.help.text
+msgctxt "04060112.xhp#par_id3153666.177.help.text"
+msgid "2"
+msgstr ""
+
+#: 04060112.xhp#par_id3149560.178.help.text
+msgctxt "04060112.xhp#par_id3149560.178.help.text"
+msgid "Row1"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3150408.180.help.text
+msgctxt "04060112.xhp#par_id3150408.180.help.text"
+msgid "4"
+msgstr ""
+
+#: 04060112.xhp#par_id3150593.181.help.text
+msgctxt "04060112.xhp#par_id3150593.181.help.text"
+msgid "Tab1"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3146912.183.help.text
+msgctxt "04060112.xhp#par_id3146912.183.help.text"
+msgid "6"
+msgstr ""
+
+#: 04060112.xhp#par_id3153352.184.help.text
+msgctxt "04060112.xhp#par_id3153352.184.help.text"
+msgid "Col2"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3150827.186.help.text
+msgctxt "04060112.xhp#par_id3150827.186.help.text"
+msgid "8"
+msgstr ""
+
+#: 04060112.xhp#par_id3148406.187.help.text
+msgctxt "04060112.xhp#par_id3148406.187.help.text"
+msgid "Row2"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3155864.189.help.text
+msgctxt "04060112.xhp#par_id3155864.189.help.text"
+msgid "10"
+msgstr ""
+
+#: 04060112.xhp#par_id3153197.190.help.text
+msgctxt "04060112.xhp#par_id3153197.190.help.text"
+msgid "Tab2"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3147360.192.help.text
+msgctxt "04060112.xhp#par_id3147360.192.help.text"
+msgid "12"
+msgstr ""
+
+#: 04060112.xhp#par_id3154520.193.help.text
+msgctxt "04060112.xhp#par_id3154520.193.help.text"
+msgid "Count"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3149747.195.help.text
+msgctxt "04060112.xhp#par_id3149747.195.help.text"
+msgid "14"
+msgstr ""
+
+#: 04060112.xhp#par_id3147579.196.help.text
+msgctxt "04060112.xhp#par_id3147579.196.help.text"
+msgid "Col"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3159209.198.help.text
+msgctxt "04060112.xhp#par_id3159209.198.help.text"
+msgid "16"
+msgstr ""
+
+#: 04060112.xhp#par_id3153265.199.help.text
+msgctxt "04060112.xhp#par_id3153265.199.help.text"
+msgid "Row"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3151276.201.help.text
+msgctxt "04060112.xhp#par_id3151276.201.help.text"
+msgid "18"
+msgstr ""
+
+#: 04060112.xhp#par_id3149177.202.help.text
+msgctxt "04060112.xhp#par_id3149177.202.help.text"
+msgid "Tab"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3150488.204.help.text
+msgctxt "04060112.xhp#par_id3150488.204.help.text"
+msgid "20"
+msgstr ""
+
+#: 04060112.xhp#par_id3149441.205.help.text
+msgctxt "04060112.xhp#par_id3149441.205.help.text"
+msgid "Error"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3163813.207.help.text
+msgctxt "04060112.xhp#par_id3163813.207.help.text"
+msgid "22"
+msgstr ""
+
+#: 04060112.xhp#par_id3159102.208.help.text
+msgctxt "04060112.xhp#par_id3159102.208.help.text"
+msgid "Type"
+msgstr ""
+
+#: 04060112.xhp#par_id3149581.209.help.text
+msgid "Type of cell content, 0 == Double, 1 == String"
+msgstr ""
+
+#: 04060112.xhp#par_id3155182.210.help.text
+msgctxt "04060112.xhp#par_id3155182.210.help.text"
+msgid "24"
+msgstr ""
+
+#: 04060112.xhp#par_id3153291.211.help.text
+msgid "Value or Len"
+msgstr ""
+
+#: 04060112.xhp#par_id3148560.212.help.text
+msgid "If type == 0: 8 byte IEEE variable of type double/floating point"
+msgstr ""
+
+#: 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 ""
+
+#: 04060112.xhp#par_id3145215.214.help.text
+msgid "26 if type==1"
+msgstr ""
+
+#: 04060112.xhp#par_id3155143.215.help.text
+msgctxt "04060112.xhp#par_id3155143.215.help.text"
+msgid "String"
+msgstr ""
+
+#: 04060112.xhp#par_id3149298.216.help.text
+msgid "If type == 1: String with closing zero byte"
+msgstr ""
+
+#: 04060112.xhp#par_id3151322.217.help.text
+msgid "32 or 26+Len"
+msgstr ""
+
+#: 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 ""
+
+#: 12080100.xhp#tit.help.text
+msgid "Hide Details"
+msgstr ""
+
+#: 12080100.xhp#bm_id3155628.help.text
+msgid "<bookmark_value>sheets; hiding details</bookmark_value>"
+msgstr ""
+
+#: 12080100.xhp#hd_id3155628.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\">Hide Details</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 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 ""
+
+#: func_day.xhp#tit.help.text
+msgid "DAY "
+msgstr ""
+
+#: func_day.xhp#bm_id3147317.help.text
+msgid "<bookmark_value>DAY function</bookmark_value>"
+msgstr ""
+
+#: func_day.xhp#hd_id3147317.106.help.text
+msgid "<variable id=\"day\"><link href=\"text/scalc/01/func_day.xhp\">DAY</link></variable>"
+msgstr ""
+
+#: 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 ""
+
+#: func_day.xhp#hd_id3150487.108.help.text
+msgctxt "func_day.xhp#hd_id3150487.108.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: func_day.xhp#par_id3149430.109.help.text
+msgid "DAY(Number)"
+msgstr ""
+
+#: 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 ""
+
+#: func_day.xhp#hd_id3163809.111.help.text
+#, fuzzy
+msgid "Examples "
+msgstr "Приклади:"
+
+#: func_day.xhp#par_id3151200.112.help.text
+msgid "DAY(1) returns 31 (since $[officename] starts counting at zero from December 30, 1899)"
+msgstr ""
+
+#: func_day.xhp#par_id3154130.113.help.text
+msgid "DAY(NOW()) returns the current day."
+msgstr ""
+
+#: 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 ""
+
+#: 12020000.xhp#tit.help.text
+msgctxt "12020000.xhp#tit.help.text"
+msgid "Select Database Range"
+msgstr ""
+
+#: 12020000.xhp#bm_id3145068.help.text
+msgid "<bookmark_value>databases; selecting (Calc)</bookmark_value>"
+msgstr ""
+
+#: 12020000.xhp#hd_id3145068.1.help.text
+msgctxt "12020000.xhp#hd_id3145068.1.help.text"
+msgid "Select Database Range"
+msgstr ""
+
+#: 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 ""
+
+#: 12020000.xhp#hd_id3153192.3.help.text
+msgid "Ranges"
+msgstr ""
+
+#: 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 ""
+
+#: 12090300.xhp#tit.help.text
+msgctxt "12090300.xhp#tit.help.text"
+msgid "Delete"
+msgstr ""
+
+#: 12090300.xhp#hd_id3150276.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12090300.xhp\" name=\"Delete\">Delete</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 12090300.xhp#par_id3159400.2.help.text
+#, fuzzy
+msgid "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Deletes the selected pivot table.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Виберіть формат файлу.</ahelp>"
+
+#: 06030600.xhp#tit.help.text
+msgid "Trace Error"
+msgstr ""
+
+#: 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 ""
+
+#: 06030600.xhp#hd_id3153561.1.help.text
+msgid "<link href=\"text/scalc/01/06030600.xhp\" name=\"Trace Error\">Trace Error</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 04010000.xhp#tit.help.text
+msgid "Manual Break"
+msgstr ""
+
+#: 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 ""
+
+#: 04010000.xhp#hd_id3153192.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04010000.xhp\" name=\"Manual Break\">Manual Break</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 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 ""
+
+#: func_workday.xhp#tit.help.text
+msgid "WORKDAY"
+msgstr ""
+
+#: func_workday.xhp#bm_id3149012.help.text
+msgid "<bookmark_value>WORKDAY function</bookmark_value>"
+msgstr ""
+
+#: func_workday.xhp#hd_id3149012.186.help.text
+msgid "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link></variable>"
+msgstr ""
+
+#: 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 ""
+
+#: func_workday.xhp#hd_id3146944.188.help.text
+msgctxt "func_workday.xhp#hd_id3146944.188.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: func_workday.xhp#par_id3154844.189.help.text
+msgid "WORKDAY(StartDate; Days; Holidays)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: func_workday.xhp#hd_id3150141.193.help.text
+#, fuzzy
+msgctxt "func_workday.xhp#hd_id3150141.193.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 12030200.xhp#tit.help.text
+msgctxt "12030200.xhp#tit.help.text"
+msgid "Options"
+msgstr ""
+
+#: 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>сортування; опції баз даних</bookmark_value><bookmark_value>сортування;азіатські мови</bookmark_value><bookmark_value>азіатські мови;сортування</bookmark_value><bookmark_value>правила сортування телефонної книги</bookmark_value><bookmark_value>алгоритм природного сортування</bookmark_value>"
+
+#: 12030200.xhp#hd_id3147228.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12030200.xhp\" name=\"Options\"> Options</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 12030200.xhp#par_id3153770.2.help.text
+msgid "<ahelp hid=\"HID_SCPAGE_SORT_OPTIONS\"> Sets additional sorting options.</ahelp>"
+msgstr ""
+
+#: 12030200.xhp#hd_id3146976.3.help.text
+msgid " Case Sensitivity"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 12030200.xhp#hd_id3155856.5.help.text
+msgid " Range contains column/row labels"
+msgstr ""
+
+#: 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 ""
+
+#: 12030200.xhp#hd_id3147436.7.help.text
+msgid " Include formats"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 12030200.xhp#hd_id3153418.12.help.text
+msgctxt "12030200.xhp#hd_id3153418.12.help.text"
+msgid " Sort results"
+msgstr ""
+
+#: 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 ""
+
+#: 12030200.xhp#hd_id3153707.14.help.text
+msgctxt "12030200.xhp#hd_id3153707.14.help.text"
+msgid " Sort results"
+msgstr ""
+
+#: 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 ""
+
+#: 12030200.xhp#hd_id3155445.16.help.text
+msgctxt "12030200.xhp#hd_id3155445.16.help.text"
+msgid " Custom sort order"
+msgstr ""
+
+#: 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 ""
+
+#: 12030200.xhp#hd_id3154704.18.help.text
+msgctxt "12030200.xhp#hd_id3154704.18.help.text"
+msgid " Custom sort order"
+msgstr ""
+
+#: 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 ""
+
+#: 12030200.xhp#hd_id3149257.28.help.text
+msgctxt "12030200.xhp#hd_id3149257.28.help.text"
+msgid " Language"
+msgstr ""
+
+#: 12030200.xhp#hd_id3147004.29.help.text
+msgctxt "12030200.xhp#hd_id3147004.29.help.text"
+msgid " Language"
+msgstr ""
+
+#: 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 ""
+
+#: 12030200.xhp#hd_id3150344.30.help.text
+msgid " Options"
+msgstr ""
+
+#: 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 ""
+
+#: 12030200.xhp#hd_id3152580.20.help.text
+#, fuzzy
+msgid " Direction"
+msgstr "Напрямок"
+
+#: 12030200.xhp#hd_id3154201.22.help.text
+msgid " Top to Bottom (Sort Rows)"
+msgstr ""
+
+#: 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 ""
+
+#: 12030200.xhp#hd_id3145588.24.help.text
+msgid " Left to Right (Sort Columns)"
+msgstr ""
+
+#: 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 ""
+
+#: 12030200.xhp#hd_id3156290.26.help.text
+msgid " Data area"
+msgstr ""
+
+#: 12030200.xhp#par_id3156446.27.help.text
+msgid " Displays the cell range that you want to sort."
+msgstr ""
+
+#: 06030700.xhp#tit.help.text
+msgid "Fill Mode"
+msgstr ""
+
+#: 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 ""
+
+#: 06030700.xhp#hd_id3145119.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/06030700.xhp\" name=\"Fill Mode\">Fill Mode</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 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 ""
+
+#: 05040000.xhp#tit.help.text
+msgctxt "05040000.xhp#tit.help.text"
+msgid "Column"
+msgstr ""
+
+#: 05040000.xhp#hd_id3155628.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/05040000.xhp\" name=\"Column\">Column</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 05040000.xhp#par_id3148946.2.help.text
+msgid "<ahelp hid=\".\">Sets the column width and hides or shows selected columns.</ahelp>"
+msgstr ""
+
+#: 05040000.xhp#hd_id3150398.3.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Width\">Width</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 05040000.xhp#hd_id3145171.4.help.text
+msgid "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal Width\">Optimal Width</link>"
+msgstr ""
+
+#: 02140600.xhp#tit.help.text
+msgctxt "02140600.xhp#tit.help.text"
+msgid "Fill Series"
+msgstr ""
+
+#: 02140600.xhp#hd_id3148664.1.help.text
+msgctxt "02140600.xhp#hd_id3148664.1.help.text"
+msgid "Fill Series"
+msgstr ""
+
+#: 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 ""
+
+#: 02140600.xhp#par_id3146976.41.help.text
+msgid "Before filling a series, first select the cell range."
+msgstr ""
+
+#: 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 ""
+
+#: 02140600.xhp#hd_id3147435.4.help.text
+msgid "Direction"
+msgstr "Напрямок"
+
+#: 02140600.xhp#par_id3154729.5.help.text
+msgid "Determines the direction of series creation."
+msgstr ""
+
+#: 02140600.xhp#hd_id3145253.6.help.text
+msgctxt "02140600.xhp#hd_id3145253.6.help.text"
+msgid "Down"
+msgstr ""
+
+#: 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 ""
+
+#: 02140600.xhp#hd_id3155738.8.help.text
+msgctxt "02140600.xhp#hd_id3155738.8.help.text"
+msgid "Right"
+msgstr ""
+
+#: 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 ""
+
+#: 02140600.xhp#hd_id3146972.10.help.text
+msgctxt "02140600.xhp#hd_id3146972.10.help.text"
+msgid "Up"
+msgstr ""
+
+#: 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 ""
+
+#: 02140600.xhp#hd_id3153764.12.help.text
+msgctxt "02140600.xhp#hd_id3153764.12.help.text"
+msgid "Left"
+msgstr ""
+
+#: 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 ""
+
+#: 02140600.xhp#hd_id3147344.14.help.text
+msgid "Series Type"
+msgstr ""
+
+#: 02140600.xhp#par_id3149257.15.help.text
+msgid "Defines the series type. Choose between <emph>Linear, Growth, Date </emph>and <emph>AutoFill</emph>."
+msgstr ""
+
+#: 02140600.xhp#hd_id3148488.16.help.text
+msgid "Linear"
+msgstr ""
+
+#: 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 ""
+
+#: 02140600.xhp#hd_id3149210.18.help.text
+msgid "Growth"
+msgstr ""
+
+#: 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 ""
+
+#: 02140600.xhp#hd_id3149528.20.help.text
+msgctxt "02140600.xhp#hd_id3149528.20.help.text"
+msgid "Date"
+msgstr ""
+
+#: 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 ""
+
+#: 02140600.xhp#hd_id3150202.22.help.text
+msgid "AutoFill"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02140600.xhp#hd_id3148700.25.help.text
+msgid "Unit of Time"
+msgstr ""
+
+#: 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 ""
+
+#: 02140600.xhp#hd_id3148868.27.help.text
+msgid "Day"
+msgstr ""
+
+#: 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 ""
+
+#: 02140600.xhp#hd_id3144771.29.help.text
+msgid "Weekday"
+msgstr ""
+
+#: 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 ""
+
+#: 02140600.xhp#hd_id3154957.31.help.text
+msgid "Month"
+msgstr ""
+
+#: 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 ""
+
+#: 02140600.xhp#hd_id3152870.33.help.text
+msgid "Year"
+msgstr ""
+
+#: 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 ""
+
+#: 02140600.xhp#hd_id3154762.35.help.text
+msgid "Start Value"
+msgstr ""
+
+#: 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 ""
+
+#: 02140600.xhp#hd_id3153013.37.help.text
+msgid "End Value"
+msgstr ""
+
+#: 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 ""
+
+#: 02140600.xhp#hd_id3149312.39.help.text
+msgid "Increment"
+msgstr ""
+
+#: 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 ""
+
+#: 06060000.xhp#tit.help.text
+msgid "Protect Document"
+msgstr ""
+
+#: 06060000.xhp#hd_id3148946.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/06060000.xhp\" name=\"Protect Document\">Protect Document</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 06060000.xhp#hd_id3147228.3.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/06060100.xhp\" name=\"Sheets\">Sheets</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 06060000.xhp#hd_id3153768.4.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/06060200.xhp\" name=\"Documents\">Documents</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 06060000.xhp#par_idN10622.help.text
+msgid "<embedvar href=\"text/scalc/guide/cell_protect.xhp#cell_protect\"/>"
+msgstr ""
+
+#: 12070000.xhp#tit.help.text
+msgctxt "12070000.xhp#tit.help.text"
+msgid "Consolidate"
+msgstr ""
+
+#: 12070000.xhp#hd_id3148946.1.help.text
+msgctxt "12070000.xhp#hd_id3148946.1.help.text"
+msgid "Consolidate"
+msgstr ""
+
+#: 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 ""
+
+#: 12070000.xhp#hd_id3150010.8.help.text
+#, fuzzy
+msgctxt "12070000.xhp#hd_id3150010.8.help.text"
+msgid "Function"
+msgstr "Функції"
+
+#: 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 ""
+
+#: 12070000.xhp#hd_id3147127.10.help.text
+msgid "Consolidation ranges"
+msgstr ""
+
+#: 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 ""
+
+#: 12070000.xhp#hd_id3147397.12.help.text
+msgid "Source data range"
+msgstr ""
+
+#: 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 ""
+
+#: 12070000.xhp#hd_id3155768.15.help.text
+msgctxt "12070000.xhp#hd_id3155768.15.help.text"
+msgid "Copy results to"
+msgstr ""
+
+#: 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 ""
+
+#: 12070000.xhp#hd_id3147345.17.help.text
+msgctxt "12070000.xhp#hd_id3147345.17.help.text"
+msgid "Add"
+msgstr ""
+
+#: 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 ""
+
+#: 12070000.xhp#hd_id3148630.19.help.text
+msgctxt "12070000.xhp#hd_id3148630.19.help.text"
+msgid "More >>"
+msgstr ""
+
+#: 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 ""
+
+#: 06030500.xhp#tit.help.text
+msgid "Remove All Traces"
+msgstr ""
+
+#: 06030500.xhp#bm_id3153088.help.text
+msgid "<bookmark_value>cells; removing traces</bookmark_value>"
+msgstr ""
+
+#: 06030500.xhp#hd_id3153088.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/06030500.xhp\" name=\"Remove All Traces\">Remove All Traces</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 06030500.xhp#par_id3151246.2.help.text
+msgid "<ahelp hid=\".uno:ClearArrows\" visibility=\"visible\">Removes all tracer arrows from the spreadsheet.</ahelp>"
+msgstr ""
+
+#: 04040000.xhp#tit.help.text
+msgctxt "04040000.xhp#tit.help.text"
+msgid "Columns"
+msgstr ""
+
+#: 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 ""
+
+#: 04040000.xhp#hd_id3155628.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04040000.xhp\" name=\"Columns\">Columns</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 02120000.xhp#tit.help.text
+msgctxt "02120000.xhp#tit.help.text"
+msgid "Headers & Footers"
+msgstr ""
+
+#: 02120000.xhp#hd_id3145251.1.help.text
+msgctxt "02120000.xhp#hd_id3145251.1.help.text"
+msgid "Headers & Footers"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 05080400.xhp#tit.help.text
+msgctxt "05080400.xhp#tit.help.text"
+msgid "Add"
+msgstr ""
+
+#: 05080400.xhp#hd_id3149457.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/05080400.xhp\" name=\"Add\">Add</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 05080400.xhp#par_id3156423.2.help.text
+msgid "<ahelp hid=\".uno:AddPrintArea\">Adds the current selection to the defined print areas.</ahelp>"
+msgstr ""
+
+#: 06030200.xhp#tit.help.text
+msgid "Remove Precedents"
+msgstr ""
+
+#: 06030200.xhp#bm_id3155628.help.text
+msgid "<bookmark_value>cells; removing precedents</bookmark_value><bookmark_value>formula cells;removing precedents</bookmark_value>"
+msgstr ""
+
+#: 06030200.xhp#hd_id3155628.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/06030200.xhp\" name=\"Remove Precedents\">Remove Precedents</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 02140300.xhp#tit.help.text
+msgctxt "02140300.xhp#tit.help.text"
+msgid "Up"
+msgstr ""
+
+#: 02140300.xhp#hd_id3147264.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/02140300.xhp\" name=\"Up\">Up</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 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 ""
+
+#: 04060107.xhp#tit.help.text
+msgctxt "04060107.xhp#tit.help.text"
+msgid "Array Functions"
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#hd_id3147273.1.help.text
+msgctxt "04060107.xhp#hd_id3147273.1.help.text"
+msgid "Array Functions"
+msgstr ""
+
+#: 04060107.xhp#par_id3154744.2.help.text
+msgid "<variable id=\"matrixtext\">This category contains the array functions. </variable>"
+msgstr ""
+
+#: 04060107.xhp#hd_id3146084.257.help.text
+msgid "What is an Array?"
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#par_id3154692.260.help.text
+msgctxt "04060107.xhp#par_id3154692.260.help.text"
+msgid "A"
+msgstr ""
+
+#: 04060107.xhp#par_id3150117.261.help.text
+msgctxt "04060107.xhp#par_id3150117.261.help.text"
+msgid "B"
+msgstr ""
+
+#: 04060107.xhp#par_id3155325.262.help.text
+msgctxt "04060107.xhp#par_id3155325.262.help.text"
+msgid "C"
+msgstr ""
+
+#: 04060107.xhp#par_id3153104.263.help.text
+msgctxt "04060107.xhp#par_id3153104.263.help.text"
+msgid "1"
+msgstr ""
+
+#: 04060107.xhp#par_id3146996.264.help.text
+msgctxt "04060107.xhp#par_id3146996.264.help.text"
+msgid "<item type=\"input\">7</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3150529.265.help.text
+msgid "<item type=\"input\">31</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3148831.266.help.text
+msgctxt "04060107.xhp#par_id3148831.266.help.text"
+msgid "<item type=\"input\">33</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3148943.267.help.text
+msgctxt "04060107.xhp#par_id3148943.267.help.text"
+msgid "2"
+msgstr ""
+
+#: 04060107.xhp#par_id3149771.268.help.text
+msgid "<item type=\"input\">95</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3158407.269.help.text
+msgctxt "04060107.xhp#par_id3158407.269.help.text"
+msgid "<item type=\"input\">17</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3148806.270.help.text
+msgctxt "04060107.xhp#par_id3148806.270.help.text"
+msgid "<item type=\"input\">2</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3154904.271.help.text
+msgctxt "04060107.xhp#par_id3154904.271.help.text"
+msgid "3"
+msgstr ""
+
+#: 04060107.xhp#par_id3150779.272.help.text
+msgctxt "04060107.xhp#par_id3150779.272.help.text"
+msgid "<item type=\"input\">5</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3148449.273.help.text
+msgctxt "04060107.xhp#par_id3148449.273.help.text"
+msgid "<item type=\"input\">10</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3147238.274.help.text
+msgid "<item type=\"input\">50</item>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#hd_id3148474.275.help.text
+msgid "What is an array formula?"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060107.xhp#hd_id3150713.281.help.text
+msgid "When do you use array formulas?"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060107.xhp#hd_id3155588.284.help.text
+msgid "Using Array Formulas in $[officename] Calc"
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#hd_id3151271.313.help.text
+msgid "Creating Array Formulas"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060107.xhp#hd_id8834803.help.text
+msgid "Using Inline Array Constants in Formulas"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060107.xhp#par_id4262520.help.text
+msgid "<emph>Examples:</emph>"
+msgstr ""
+
+#: 04060107.xhp#par_id9387493.help.text
+msgid "={1;2;3}"
+msgstr ""
+
+#: 04060107.xhp#par_id8207037.help.text
+msgid "An array with one row consisting of the three numbers 1, 2, and 3."
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#par_id8868068.help.text
+msgid "={1;2;3|4;5;6}"
+msgstr ""
+
+#: 04060107.xhp#par_id6626483.help.text
+msgid "An array with two rows and three values in each row."
+msgstr ""
+
+#: 04060107.xhp#par_id5262916.help.text
+msgid "={0;1;2|FALSE;TRUE;\"two\"}"
+msgstr ""
+
+#: 04060107.xhp#par_id1623889.help.text
+msgid "A mixed data array."
+msgstr ""
+
+#: 04060107.xhp#par_id7781914.help.text
+msgid "=SIN({1;2;3})"
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#hd_id3148660.316.help.text
+msgid "Editing Array Formulas"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060107.xhp#hd_id3145608.320.help.text
+msgid "Copying Array Formulas"
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#par_id3154619.322.help.text
+msgid "Either press F2 or position the cursor in the input line."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060107.xhp#hd_id3154834.328.help.text
+msgid "Adjusting an Array Range"
+msgstr ""
+
+#: 04060107.xhp#par_id3148679.329.help.text
+msgid "If you want to edit the output array, do the following:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060107.xhp#par_idN10D65.help.text
+msgctxt "04060107.xhp#par_idN10D65.help.text"
+msgid "A"
+msgstr ""
+
+#: 04060107.xhp#par_idN10D6B.help.text
+msgctxt "04060107.xhp#par_idN10D6B.help.text"
+msgid "B (formula)"
+msgstr ""
+
+#: 04060107.xhp#par_idN10B75.help.text
+msgctxt "04060107.xhp#par_idN10B75.help.text"
+msgid "B (result)"
+msgstr ""
+
+#: 04060107.xhp#par_idN10D79.help.text
+msgctxt "04060107.xhp#par_idN10D79.help.text"
+msgid "1"
+msgstr ""
+
+#: 04060107.xhp#par_idN10D80.help.text
+msgctxt "04060107.xhp#par_idN10D80.help.text"
+msgid "1"
+msgstr ""
+
+#: 04060107.xhp#par_idN10D86.help.text
+msgctxt "04060107.xhp#par_idN10D86.help.text"
+msgid "{=IF(A1:A3>0;\"yes\";\"no\")}"
+msgstr ""
+
+#: 04060107.xhp#par_idN10D8C.help.text
+msgctxt "04060107.xhp#par_idN10D8C.help.text"
+msgid "yes"
+msgstr ""
+
+#: 04060107.xhp#par_idN10D94.help.text
+msgctxt "04060107.xhp#par_idN10D94.help.text"
+msgid "2"
+msgstr ""
+
+#: 04060107.xhp#par_idN10D9B.help.text
+msgctxt "04060107.xhp#par_idN10D9B.help.text"
+msgid "0"
+msgstr ""
+
+#: 04060107.xhp#par_idN10DA1.help.text
+msgctxt "04060107.xhp#par_idN10DA1.help.text"
+msgid "{=IF(A1:A3>0;\"yes\";\"no\")}"
+msgstr ""
+
+#: 04060107.xhp#par_idN10DA7.help.text
+msgid "no"
+msgstr ""
+
+#: 04060107.xhp#par_idN10DAF.help.text
+msgctxt "04060107.xhp#par_idN10DAF.help.text"
+msgid "3"
+msgstr ""
+
+#: 04060107.xhp#par_idN10DB6.help.text
+msgctxt "04060107.xhp#par_idN10DB6.help.text"
+msgid "1"
+msgstr ""
+
+#: 04060107.xhp#par_idN10DBC.help.text
+msgctxt "04060107.xhp#par_idN10DBC.help.text"
+msgid "{=IF(A1:A3>0;\"yes\";\"no\")}"
+msgstr ""
+
+#: 04060107.xhp#par_idN10DC2.help.text
+msgctxt "04060107.xhp#par_idN10DC2.help.text"
+msgid "yes"
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#par_idN10DE2.help.text
+msgctxt "04060107.xhp#par_idN10DE2.help.text"
+msgid "A"
+msgstr ""
+
+#: 04060107.xhp#par_idN10DE8.help.text
+msgctxt "04060107.xhp#par_idN10DE8.help.text"
+msgid "B (formula)"
+msgstr ""
+
+#: 04060107.xhp#par_idN10DEE.help.text
+msgctxt "04060107.xhp#par_idN10DEE.help.text"
+msgid "B (result)"
+msgstr ""
+
+#: 04060107.xhp#par_idN10DF4.help.text
+msgid "C (forced array formula)"
+msgstr ""
+
+#: 04060107.xhp#par_idN10DFA.help.text
+msgid "C (result)"
+msgstr ""
+
+#: 04060107.xhp#par_idN10E02.help.text
+msgctxt "04060107.xhp#par_idN10E02.help.text"
+msgid "1"
+msgstr ""
+
+#: 04060107.xhp#par_idN10E09.help.text
+msgctxt "04060107.xhp#par_idN10E09.help.text"
+msgid "1"
+msgstr ""
+
+#: 04060107.xhp#par_idN10E0F.help.text
+msgctxt "04060107.xhp#par_idN10E0F.help.text"
+msgid "=A1:A2+1"
+msgstr ""
+
+#: 04060107.xhp#par_idN10E17.help.text
+msgctxt "04060107.xhp#par_idN10E17.help.text"
+msgid "2"
+msgstr ""
+
+#: 04060107.xhp#par_idN10E1D.help.text
+msgctxt "04060107.xhp#par_idN10E1D.help.text"
+msgid "=SUMPRODUCT(A1:A2+1)"
+msgstr ""
+
+#: 04060107.xhp#par_idN10E25.help.text
+msgctxt "04060107.xhp#par_idN10E25.help.text"
+msgid "5"
+msgstr ""
+
+#: 04060107.xhp#par_idN10E2D.help.text
+msgctxt "04060107.xhp#par_idN10E2D.help.text"
+msgid "2"
+msgstr ""
+
+#: 04060107.xhp#par_idN10E34.help.text
+msgctxt "04060107.xhp#par_idN10E34.help.text"
+msgid "2"
+msgstr ""
+
+#: 04060107.xhp#par_idN10E3A.help.text
+msgctxt "04060107.xhp#par_idN10E3A.help.text"
+msgid "=A1:A2+1"
+msgstr ""
+
+#: 04060107.xhp#par_idN10E42.help.text
+msgctxt "04060107.xhp#par_idN10E42.help.text"
+msgid "3"
+msgstr ""
+
+#: 04060107.xhp#par_idN10E48.help.text
+msgctxt "04060107.xhp#par_idN10E48.help.text"
+msgid "=SUMPRODUCT(A1:A2+1)"
+msgstr ""
+
+#: 04060107.xhp#par_idN10E50.help.text
+msgctxt "04060107.xhp#par_idN10E50.help.text"
+msgid "5"
+msgstr ""
+
+#: 04060107.xhp#par_idN10E58.help.text
+msgctxt "04060107.xhp#par_idN10E58.help.text"
+msgid "3"
+msgstr ""
+
+#: 04060107.xhp#par_idN10E63.help.text
+msgctxt "04060107.xhp#par_idN10E63.help.text"
+msgid "=A1:A2+1"
+msgstr ""
+
+#: 04060107.xhp#par_idN10E6A.help.text
+msgid "#VALUE!"
+msgstr ""
+
+#: 04060107.xhp#par_idN10E70.help.text
+msgctxt "04060107.xhp#par_idN10E70.help.text"
+msgid "=SUMPRODUCT(A1:A2+1)"
+msgstr ""
+
+#: 04060107.xhp#par_idN10E78.help.text
+msgctxt "04060107.xhp#par_idN10E78.help.text"
+msgid "5"
+msgstr ""
+
+#: 04060107.xhp#bm_id3158446.help.text
+msgid "<bookmark_value>MUNIT function</bookmark_value>"
+msgstr ""
+
+#: 04060107.xhp#hd_id3158446.12.help.text
+msgid "MUNIT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#hd_id3155123.14.help.text
+msgctxt "04060107.xhp#hd_id3155123.14.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060107.xhp#par_id3156271.15.help.text
+msgid "MUNIT(Dimensions)"
+msgstr ""
+
+#: 04060107.xhp#par_id3159390.16.help.text
+msgid "<emph>Dimensions</emph> refers to the size of the array unit."
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#hd_id3156162.17.help.text
+#, fuzzy
+msgctxt "04060107.xhp#hd_id3156162.17.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060107.xhp#par_id3150949.18.help.text
+msgid "Select a square range within the spreadsheet, for example, from A1 to E5."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060107.xhp#par_id3156143.21.help.text
+msgid "You now see a unit array with a range of A1:E5."
+msgstr ""
+
+#: 04060107.xhp#par_idN10FA7.help.text
+msgctxt "04060107.xhp#par_idN10FA7.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr ""
+
+#: 04060107.xhp#bm_id3159084.help.text
+msgid "<bookmark_value>FREQUENCY function</bookmark_value>"
+msgstr ""
+
+#: 04060107.xhp#hd_id3159084.22.help.text
+msgid "FREQUENCY"
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#hd_id3153347.24.help.text
+msgctxt "04060107.xhp#hd_id3153347.24.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060107.xhp#par_id3155498.25.help.text
+msgid "FREQUENCY(Data; Classes)"
+msgstr ""
+
+#: 04060107.xhp#par_id3154352.26.help.text
+msgid "<emph>Data</emph> represents the reference to the values to be counted."
+msgstr ""
+
+#: 04060107.xhp#par_id3148402.27.help.text
+msgid "<emph>Classes</emph> represents the array of the limit values."
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#hd_id3148981.28.help.text
+#, fuzzy
+msgctxt "04060107.xhp#hd_id3148981.28.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060107.xhp#par_id3155869.220.help.text
+msgid "<emph>A</emph>"
+msgstr ""
+
+#: 04060107.xhp#par_id3149328.221.help.text
+msgid "<emph>B</emph>"
+msgstr ""
+
+#: 04060107.xhp#par_id3152467.222.help.text
+msgid "<emph>C</emph>"
+msgstr ""
+
+#: 04060107.xhp#par_id3154528.223.help.text
+msgctxt "04060107.xhp#par_id3154528.223.help.text"
+msgid "<emph>1</emph>"
+msgstr ""
+
+#: 04060107.xhp#par_id3149744.224.help.text
+msgctxt "04060107.xhp#par_id3149744.224.help.text"
+msgid "12"
+msgstr ""
+
+#: 04060107.xhp#par_id3147309.225.help.text
+msgctxt "04060107.xhp#par_id3147309.225.help.text"
+msgid "5"
+msgstr ""
+
+#: 04060107.xhp#par_id3154199.226.help.text
+msgctxt "04060107.xhp#par_id3154199.226.help.text"
+msgid "1"
+msgstr ""
+
+#: 04060107.xhp#par_id3159218.227.help.text
+msgctxt "04060107.xhp#par_id3159218.227.help.text"
+msgid "<emph>2</emph>"
+msgstr ""
+
+#: 04060107.xhp#par_id3153263.228.help.text
+msgctxt "04060107.xhp#par_id3153263.228.help.text"
+msgid "8"
+msgstr ""
+
+#: 04060107.xhp#par_id3156201.229.help.text
+msgctxt "04060107.xhp#par_id3156201.229.help.text"
+msgid "10"
+msgstr ""
+
+#: 04060107.xhp#par_id3147552.230.help.text
+msgctxt "04060107.xhp#par_id3147552.230.help.text"
+msgid "3"
+msgstr ""
+
+#: 04060107.xhp#par_id3149174.231.help.text
+msgctxt "04060107.xhp#par_id3149174.231.help.text"
+msgid "<emph>3</emph>"
+msgstr ""
+
+#: 04060107.xhp#par_id3151201.232.help.text
+msgctxt "04060107.xhp#par_id3151201.232.help.text"
+msgid "24"
+msgstr ""
+
+#: 04060107.xhp#par_id3150245.233.help.text
+msgctxt "04060107.xhp#par_id3150245.233.help.text"
+msgid "15"
+msgstr ""
+
+#: 04060107.xhp#par_id3159194.234.help.text
+msgctxt "04060107.xhp#par_id3159194.234.help.text"
+msgid "2"
+msgstr ""
+
+#: 04060107.xhp#par_id3146925.235.help.text
+msgctxt "04060107.xhp#par_id3146925.235.help.text"
+msgid "<emph>4</emph>"
+msgstr ""
+
+#: 04060107.xhp#par_id3154128.236.help.text
+msgctxt "04060107.xhp#par_id3154128.236.help.text"
+msgid "11"
+msgstr ""
+
+#: 04060107.xhp#par_id3151067.237.help.text
+msgctxt "04060107.xhp#par_id3151067.237.help.text"
+msgid "20"
+msgstr ""
+
+#: 04060107.xhp#par_id3156033.238.help.text
+msgctxt "04060107.xhp#par_id3156033.238.help.text"
+msgid "3"
+msgstr ""
+
+#: 04060107.xhp#par_id3149298.239.help.text
+msgctxt "04060107.xhp#par_id3149298.239.help.text"
+msgid "<emph>5</emph>"
+msgstr ""
+
+#: 04060107.xhp#par_id3151382.240.help.text
+msgctxt "04060107.xhp#par_id3151382.240.help.text"
+msgid "5"
+msgstr ""
+
+#: 04060107.xhp#par_id3155141.241.help.text
+msgid "25"
+msgstr ""
+
+#: 04060107.xhp#par_id3145213.242.help.text
+msgctxt "04060107.xhp#par_id3145213.242.help.text"
+msgid "1"
+msgstr ""
+
+#: 04060107.xhp#par_id3145268.243.help.text
+msgctxt "04060107.xhp#par_id3145268.243.help.text"
+msgid "<emph>6</emph>"
+msgstr ""
+
+#: 04060107.xhp#par_id3163724.244.help.text
+msgctxt "04060107.xhp#par_id3163724.244.help.text"
+msgid "20"
+msgstr ""
+
+#: 04060107.xhp#par_id3147132.245.help.text
+msgid ">25"
+msgstr ""
+
+#: 04060107.xhp#par_id3148903.246.help.text
+msgctxt "04060107.xhp#par_id3148903.246.help.text"
+msgid "1"
+msgstr ""
+
+#: 04060107.xhp#par_id3151007.247.help.text
+msgctxt "04060107.xhp#par_id3151007.247.help.text"
+msgid "<emph>7</emph>"
+msgstr ""
+
+#: 04060107.xhp#par_id3153294.248.help.text
+msgctxt "04060107.xhp#par_id3153294.248.help.text"
+msgid "16"
+msgstr ""
+
+#: 04060107.xhp#par_id3147284.249.help.text
+msgctxt "04060107.xhp#par_id3147284.249.help.text"
+msgid "<emph>8</emph>"
+msgstr ""
+
+#: 04060107.xhp#par_id3154914.250.help.text
+msgctxt "04060107.xhp#par_id3154914.250.help.text"
+msgid "9"
+msgstr ""
+
+#: 04060107.xhp#par_id3154218.251.help.text
+msgctxt "04060107.xhp#par_id3154218.251.help.text"
+msgid "<emph>9</emph>"
+msgstr ""
+
+#: 04060107.xhp#par_id3147226.252.help.text
+msgctxt "04060107.xhp#par_id3147226.252.help.text"
+msgid "7"
+msgstr ""
+
+#: 04060107.xhp#par_id3149045.253.help.text
+msgid "<emph>10</emph>"
+msgstr ""
+
+#: 04060107.xhp#par_id3155799.254.help.text
+msgctxt "04060107.xhp#par_id3155799.254.help.text"
+msgid "16"
+msgstr ""
+
+#: 04060107.xhp#par_id3155076.255.help.text
+msgid "<emph>11</emph>"
+msgstr ""
+
+#: 04060107.xhp#par_id3150217.256.help.text
+msgid "33"
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#par_idN11269.help.text
+msgctxt "04060107.xhp#par_idN11269.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr ""
+
+#: 04060107.xhp#bm_id3151030.help.text
+msgid "<bookmark_value>MDETERM function</bookmark_value><bookmark_value>determinants</bookmark_value>"
+msgstr ""
+
+#: 04060107.xhp#hd_id3151030.31.help.text
+msgid "MDETERM"
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#hd_id3156366.33.help.text
+msgctxt "04060107.xhp#hd_id3156366.33.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060107.xhp#par_id3156380.34.help.text
+msgid "MDETERM(Array)"
+msgstr ""
+
+#: 04060107.xhp#par_id3150290.35.help.text
+msgid "<emph>Array</emph> represents a square array in which the determinants are defined."
+msgstr ""
+
+#: 04060107.xhp#par_idN11035.help.text
+msgid "You can find a general introduction to using Array functions on top of this page."
+msgstr ""
+
+#: 04060107.xhp#par_idN11333.help.text
+msgctxt "04060107.xhp#par_idN11333.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr ""
+
+#: 04060107.xhp#bm_id3151348.help.text
+msgid "<bookmark_value>MINVERSE function</bookmark_value><bookmark_value>inverse arrays</bookmark_value>"
+msgstr ""
+
+#: 04060107.xhp#hd_id3151348.39.help.text
+msgid "MINVERSE"
+msgstr ""
+
+#: 04060107.xhp#par_id3145569.40.help.text
+msgid "<ahelp hid=\"HID_FUNC_MINV\">Returns the inverse array.</ahelp>"
+msgstr ""
+
+#: 04060107.xhp#hd_id3156072.41.help.text
+msgctxt "04060107.xhp#hd_id3156072.41.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060107.xhp#par_id3156085.42.help.text
+msgid "MINVERSE(Array)"
+msgstr ""
+
+#: 04060107.xhp#par_id3157849.43.help.text
+msgid "<emph>Array</emph> represents a square array that is to be inverted."
+msgstr ""
+
+#: 04060107.xhp#par_idN113EE.help.text
+msgctxt "04060107.xhp#par_idN113EE.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr ""
+
+#: 04060107.xhp#hd_id3157868.44.help.text
+#, fuzzy
+msgctxt "04060107.xhp#hd_id3157868.44.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060107.xhp#bm_id3148546.help.text
+msgid "<bookmark_value>MMULT function</bookmark_value>"
+msgstr ""
+
+#: 04060107.xhp#hd_id3148546.47.help.text
+msgid "MMULT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#hd_id3146767.49.help.text
+msgctxt "04060107.xhp#hd_id3146767.49.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060107.xhp#par_id3150798.50.help.text
+msgid "MMULT(Array; Array)"
+msgstr ""
+
+#: 04060107.xhp#par_id3150812.51.help.text
+msgid "<emph>Array</emph> at first place represents the first array used in the array product."
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#par_idN114C3.help.text
+msgctxt "04060107.xhp#par_idN114C3.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr ""
+
+#: 04060107.xhp#hd_id3152574.53.help.text
+#, fuzzy
+msgctxt "04060107.xhp#hd_id3152574.53.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060107.xhp#bm_id3154970.help.text
+msgid "<bookmark_value>TRANSPOSE function</bookmark_value>"
+msgstr ""
+
+#: 04060107.xhp#hd_id3154970.56.help.text
+msgid "TRANSPOSE"
+msgstr ""
+
+#: 04060107.xhp#par_id3155276.57.help.text
+msgid "<ahelp hid=\"HID_FUNC_MTRANS\">Transposes the rows and columns of an array.</ahelp>"
+msgstr ""
+
+#: 04060107.xhp#hd_id3155294.58.help.text
+msgctxt "04060107.xhp#hd_id3155294.58.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060107.xhp#par_id3153843.59.help.text
+msgid "TRANSPOSE(Array)"
+msgstr ""
+
+#: 04060107.xhp#par_id3153857.60.help.text
+msgid "<emph>Array</emph> represents the array in the spreadsheet that is to be transposed."
+msgstr ""
+
+#: 04060107.xhp#par_idN115A5.help.text
+msgctxt "04060107.xhp#par_idN115A5.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr ""
+
+#: 04060107.xhp#hd_id3159352.61.help.text
+#, fuzzy
+msgctxt "04060107.xhp#hd_id3159352.61.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060107.xhp#bm_id3109846.help.text
+msgid "<bookmark_value>LINEST function</bookmark_value>"
+msgstr ""
+
+#: 04060107.xhp#hd_id3109846.64.help.text
+msgid "LINEST"
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#hd_id3152825.66.help.text
+msgctxt "04060107.xhp#hd_id3152825.66.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060107.xhp#par_id3152839.67.help.text
+msgid "LINEST(data_Y; data_X; linearType; stats)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060107.xhp#par_idN11416.help.text
+msgctxt "04060107.xhp#par_idN11416.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr ""
+
+#: 04060107.xhp#par_idN116C6.help.text
+msgctxt "04060107.xhp#par_idN116C6.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr ""
+
+#: 04060107.xhp#hd_id3154162.72.help.text
+#, fuzzy
+msgctxt "04060107.xhp#hd_id3154162.72.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060107.xhp#hd_id3155491.75.help.text
+msgid "Other LINEST Results:"
+msgstr ""
+
+#: 04060107.xhp#par_id3159291.76.help.text
+msgid "Examine the following examples:"
+msgstr ""
+
+#: 04060107.xhp#par_id3157922.77.help.text
+msgctxt "04060107.xhp#par_id3157922.77.help.text"
+msgid "A"
+msgstr ""
+
+#: 04060107.xhp#par_id3157945.78.help.text
+msgctxt "04060107.xhp#par_id3157945.78.help.text"
+msgid "B"
+msgstr ""
+
+#: 04060107.xhp#par_id3152486.79.help.text
+msgctxt "04060107.xhp#par_id3152486.79.help.text"
+msgid "C"
+msgstr ""
+
+#: 04060107.xhp#par_id3152509.80.help.text
+msgctxt "04060107.xhp#par_id3152509.80.help.text"
+msgid "D"
+msgstr ""
+
+#: 04060107.xhp#par_id3152532.81.help.text
+msgctxt "04060107.xhp#par_id3152532.81.help.text"
+msgid "E"
+msgstr ""
+
+#: 04060107.xhp#par_id3153431.82.help.text
+msgid "F"
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#par_id3155021.85.help.text
+msgid "<item type=\"input\">x1</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3155044.86.help.text
+msgid "<item type=\"input\">x2</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3163734.87.help.text
+msgid "<item type=\"input\">y</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3163766.88.help.text
+msgid "<item type=\"input\">LIN</item><item type=\"input\">EST value</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3145686.89.help.text
+msgctxt "04060107.xhp#par_id3145686.89.help.text"
+msgid "<emph>2</emph>"
+msgstr ""
+
+#: 04060107.xhp#par_id3145713.90.help.text
+msgctxt "04060107.xhp#par_id3145713.90.help.text"
+msgid "<item type=\"input\">4</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3145736.91.help.text
+msgctxt "04060107.xhp#par_id3145736.91.help.text"
+msgid "<item type=\"input\">7</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3159427.92.help.text
+msgid "<item type=\"input\">100</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3159460.93.help.text
+msgid "<item type=\"input\">4,17</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3159483.94.help.text
+msgid "-<item type=\"input\">3,48</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3152381.95.help.text
+msgid "<item type=\"input\">82,33</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3152408.96.help.text
+msgctxt "04060107.xhp#par_id3152408.96.help.text"
+msgid "<emph>3</emph>"
+msgstr ""
+
+#: 04060107.xhp#par_id3152435.97.help.text
+msgctxt "04060107.xhp#par_id3152435.97.help.text"
+msgid "<item type=\"input\">5</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3152458.98.help.text
+msgctxt "04060107.xhp#par_id3152458.98.help.text"
+msgid "<item type=\"input\">9</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3155652.99.help.text
+msgid "<item type=\"input\">105</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3155684.100.help.text
+msgid "<item type=\"input\">5,46</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3155707.101.help.text
+msgid "<item type=\"input\">10,96</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3155730.102.help.text
+msgid "<item type=\"input\">9,35</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3159506.103.help.text
+msgctxt "04060107.xhp#par_id3159506.103.help.text"
+msgid "<emph>4</emph>"
+msgstr ""
+
+#: 04060107.xhp#par_id3159533.104.help.text
+msgctxt "04060107.xhp#par_id3159533.104.help.text"
+msgid "<item type=\"input\">6</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3159556.105.help.text
+msgctxt "04060107.xhp#par_id3159556.105.help.text"
+msgid "<item type=\"input\">11</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3159579.106.help.text
+msgid "<item type=\"input\">104</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3159611.107.help.text
+msgid "<item type=\"input\">0,87</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3152606.108.help.text
+msgid "<item type=\"input\">5,06</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3152629.109.help.text
+msgctxt "04060107.xhp#par_id3152629.109.help.text"
+msgid "<item type=\"input\">#NA</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3152655.110.help.text
+msgctxt "04060107.xhp#par_id3152655.110.help.text"
+msgid "<emph>5</emph>"
+msgstr ""
+
+#: 04060107.xhp#par_id3152682.111.help.text
+msgctxt "04060107.xhp#par_id3152682.111.help.text"
+msgid "<item type=\"input\">7</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3152705.112.help.text
+msgctxt "04060107.xhp#par_id3152705.112.help.text"
+msgid "<item type=\"input\">12</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3152728.113.help.text
+msgid "<item type=\"input\">108</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3144352.114.help.text
+msgid "<item type=\"input\">13,21</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3144375.115.help.text
+msgctxt "04060107.xhp#par_id3144375.115.help.text"
+msgid "<item type=\"input\">4</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3144398.116.help.text
+msgctxt "04060107.xhp#par_id3144398.116.help.text"
+msgid "<item type=\"input\">#NA</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3144425.117.help.text
+msgctxt "04060107.xhp#par_id3144425.117.help.text"
+msgid "<emph>6</emph>"
+msgstr ""
+
+#: 04060107.xhp#par_id3144452.118.help.text
+msgctxt "04060107.xhp#par_id3144452.118.help.text"
+msgid "<item type=\"input\">8</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3144475.119.help.text
+msgid "<item type=\"input\">15</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3144498.120.help.text
+msgid "<item type=\"input\">111</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3158233.121.help.text
+msgid "<item type=\"input\">675,45</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3158256.122.help.text
+msgid "<item type=\"input\">102,26</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3158279.123.help.text
+msgctxt "04060107.xhp#par_id3158279.123.help.text"
+msgid "<item type=\"input\">#NA</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3158306.124.help.text
+msgctxt "04060107.xhp#par_id3158306.124.help.text"
+msgid "<emph>7</emph>"
+msgstr ""
+
+#: 04060107.xhp#par_id3158333.125.help.text
+msgctxt "04060107.xhp#par_id3158333.125.help.text"
+msgid "<item type=\"input\">9</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3158356.126.help.text
+msgctxt "04060107.xhp#par_id3158356.126.help.text"
+msgid "<item type=\"input\">17</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3158379.127.help.text
+msgid "<item type=\"input\">120</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3144560.128.help.text
+msgctxt "04060107.xhp#par_id3144560.128.help.text"
+msgid "<emph>8</emph>"
+msgstr ""
+
+#: 04060107.xhp#par_id3144586.129.help.text
+msgctxt "04060107.xhp#par_id3144586.129.help.text"
+msgid "<item type=\"input\">10</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3144609.130.help.text
+msgid "<item type=\"input\">19</item>"
+msgstr ""
+
+#: 04060107.xhp#par_id3144632.131.help.text
+msgid "<item type=\"input\">133</item>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#par_id3158020.133.help.text
+msgid "<emph>data_Y</emph> is C2:C8"
+msgstr ""
+
+#: 04060107.xhp#par_id3158039.134.help.text
+msgid "<emph>data_X</emph> is A2:B8"
+msgstr ""
+
+#: 04060107.xhp#par_id3158058.135.help.text
+msgid "<emph>linearType</emph> and <emph>stats</emph> are both set to 1."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060107.xhp#par_id3158128.138.help.text
+msgid "<emph>This represents the calculated LINEST values:</emph>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060107.xhp#par_id3158184.140.help.text
+msgid "G2: Intersection b with the y axis."
+msgstr ""
+
+#: 04060107.xhp#bm_id3158204.help.text
+msgid "<bookmark_value>standard errors;array functions</bookmark_value>"
+msgstr ""
+
+#: 04060107.xhp#par_id3158204.141.help.text
+msgid "E3 and F3: The standard error of the slope value."
+msgstr ""
+
+#: 04060107.xhp#par_id3145845.142.help.text
+msgid "G3: The standard error of the intercept"
+msgstr ""
+
+#: 04060107.xhp#bm_id3145859.help.text
+msgid "<bookmark_value>RSQ calculations</bookmark_value>"
+msgstr ""
+
+#: 04060107.xhp#par_id3145859.143.help.text
+msgid "E4: RSQ"
+msgstr ""
+
+#: 04060107.xhp#par_id3145880.144.help.text
+msgid "F4: The standard error of the regression calculated for the Y value."
+msgstr ""
+
+#: 04060107.xhp#par_id3145894.145.help.text
+msgid "E5: The F value from the variance analysis."
+msgstr ""
+
+#: 04060107.xhp#par_id3145915.146.help.text
+msgid "F5: The degrees of freedom from the variance analysis."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060107.xhp#par_idN11B04.help.text
+msgctxt "04060107.xhp#par_idN11B04.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr ""
+
+#: 04060107.xhp#bm_id1596728.help.text
+msgid "<bookmark_value>LOGEST function</bookmark_value>"
+msgstr ""
+
+#: 04060107.xhp#hd_id3146009.150.help.text
+msgid "LOGEST"
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#hd_id3146056.152.help.text
+msgctxt "04060107.xhp#hd_id3146056.152.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060107.xhp#par_id3163123.153.help.text
+msgid "LOGEST(DataY; DataX; FunctionType; Stats)"
+msgstr ""
+
+#: 04060107.xhp#par_id3163137.154.help.text
+msgctxt "04060107.xhp#par_id3163137.154.help.text"
+msgid "<emph>DataY</emph> represents the Y Data array."
+msgstr ""
+
+#: 04060107.xhp#par_id3163155.155.help.text
+msgctxt "04060107.xhp#par_id3163155.155.help.text"
+msgid "<emph>DataX</emph> (optional) represents the X Data array."
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#par_id3163196.157.help.text
+msgid "<emph>Stats</emph> (optional). If Stats=0, only the regression coefficient is calculated."
+msgstr ""
+
+#: 04060107.xhp#par_idN118F7.help.text
+msgctxt "04060107.xhp#par_idN118F7.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr ""
+
+#: 04060107.xhp#par_idN11BC3.help.text
+msgctxt "04060107.xhp#par_idN11BC3.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr ""
+
+#: 04060107.xhp#hd_id3163216.158.help.text
+#, fuzzy
+msgctxt "04060107.xhp#hd_id3163216.158.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060107.xhp#par_id3163230.159.help.text
+msgid "See LINEST. However, no square sum will be returned."
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#hd_id3163286.161.help.text
+msgid "SUMPRODUCT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#hd_id3163334.163.help.text
+msgctxt "04060107.xhp#hd_id3163334.163.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060107.xhp#par_id3163347.164.help.text
+msgid "SUMPRODUCT(Array1; Array2...Array30)"
+msgstr ""
+
+#: 04060107.xhp#par_id3163362.165.help.text
+msgid "<emph>Array1, Array2...Array30</emph> represent arrays whose corresponding elements are to be multiplied."
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#par_idN11B1C.help.text
+#, fuzzy
+msgctxt "04060107.xhp#par_idN11B1C.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060107.xhp#par_idN11B2F.help.text
+msgctxt "04060107.xhp#par_idN11B2F.help.text"
+msgid "A"
+msgstr ""
+
+#: 04060107.xhp#par_idN11B35.help.text
+msgctxt "04060107.xhp#par_idN11B35.help.text"
+msgid "B"
+msgstr ""
+
+#: 04060107.xhp#par_idN11B3B.help.text
+msgctxt "04060107.xhp#par_idN11B3B.help.text"
+msgid "C"
+msgstr ""
+
+#: 04060107.xhp#par_idN11B41.help.text
+msgctxt "04060107.xhp#par_idN11B41.help.text"
+msgid "D"
+msgstr ""
+
+#: 04060107.xhp#par_idN11B48.help.text
+msgctxt "04060107.xhp#par_idN11B48.help.text"
+msgid "1"
+msgstr ""
+
+#: 04060107.xhp#par_idN11B4E.help.text
+msgctxt "04060107.xhp#par_idN11B4E.help.text"
+msgid "<item type=\"input\">2</item>"
+msgstr ""
+
+#: 04060107.xhp#par_idN11B54.help.text
+msgctxt "04060107.xhp#par_idN11B54.help.text"
+msgid "<item type=\"input\">3</item>"
+msgstr ""
+
+#: 04060107.xhp#par_idN11B5A.help.text
+msgctxt "04060107.xhp#par_idN11B5A.help.text"
+msgid "<item type=\"input\">4</item>"
+msgstr ""
+
+#: 04060107.xhp#par_idN11B60.help.text
+msgctxt "04060107.xhp#par_idN11B60.help.text"
+msgid "<item type=\"input\">5</item>"
+msgstr ""
+
+#: 04060107.xhp#par_idN11B67.help.text
+msgctxt "04060107.xhp#par_idN11B67.help.text"
+msgid "2"
+msgstr ""
+
+#: 04060107.xhp#par_idN11B6D.help.text
+msgctxt "04060107.xhp#par_idN11B6D.help.text"
+msgid "<item type=\"input\">6</item>"
+msgstr ""
+
+#: 04060107.xhp#par_idN11B73.help.text
+msgctxt "04060107.xhp#par_idN11B73.help.text"
+msgid "<item type=\"input\">7</item>"
+msgstr ""
+
+#: 04060107.xhp#par_idN11B79.help.text
+msgctxt "04060107.xhp#par_idN11B79.help.text"
+msgid "<item type=\"input\">8</item>"
+msgstr ""
+
+#: 04060107.xhp#par_idN11B7F.help.text
+msgctxt "04060107.xhp#par_idN11B7F.help.text"
+msgid "<item type=\"input\">9</item>"
+msgstr ""
+
+#: 04060107.xhp#par_idN11B86.help.text
+msgctxt "04060107.xhp#par_idN11B86.help.text"
+msgid "3"
+msgstr ""
+
+#: 04060107.xhp#par_idN11B8C.help.text
+msgctxt "04060107.xhp#par_idN11B8C.help.text"
+msgid "<item type=\"input\">10</item>"
+msgstr ""
+
+#: 04060107.xhp#par_idN11B92.help.text
+msgctxt "04060107.xhp#par_idN11B92.help.text"
+msgid "<item type=\"input\">11</item>"
+msgstr ""
+
+#: 04060107.xhp#par_idN11B98.help.text
+msgctxt "04060107.xhp#par_idN11B98.help.text"
+msgid "<item type=\"input\">12</item>"
+msgstr ""
+
+#: 04060107.xhp#par_idN11B9E.help.text
+msgid "<item type=\"input\">13</item>"
+msgstr ""
+
+#: 04060107.xhp#par_idN11BA1.help.text
+msgid "<item type=\"input\">=SUMPRODUCT(A1:B3;C1:D3)</item> returns 397."
+msgstr ""
+
+#: 04060107.xhp#par_idN11BA4.help.text
+msgid "Calculation: A1*C1 + B1*D1 + A2*C2 + B2*D2 + A3*C3 + B3*D3"
+msgstr ""
+
+#: 04060107.xhp#par_idN11BA7.help.text
+msgid "You can use SUMPRODUCT to calculate the scalar product of two vectors."
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#par_idN11C91.help.text
+msgctxt "04060107.xhp#par_idN11C91.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr ""
+
+#: 04060107.xhp#bm_id3144842.help.text
+msgid "<bookmark_value>SUMX2MY2 function</bookmark_value>"
+msgstr ""
+
+#: 04060107.xhp#hd_id3144842.169.help.text
+msgid "SUMX2MY2"
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#hd_id3144889.171.help.text
+msgctxt "04060107.xhp#hd_id3144889.171.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060107.xhp#par_id3144903.172.help.text
+msgid "SUMX2MY2(ArrayX; ArrayY)"
+msgstr ""
+
+#: 04060107.xhp#par_id3144916.173.help.text
+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 ""
+
+#: 04060107.xhp#par_id3144936.174.help.text
+msgid "<emph>ArrayY</emph> represents the second array whose elements are to be squared and subtracted."
+msgstr ""
+
+#: 04060107.xhp#par_idN11D6B.help.text
+msgctxt "04060107.xhp#par_idN11D6B.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr ""
+
+#: 04060107.xhp#bm_id3145026.help.text
+msgid "<bookmark_value>SUMX2PY2 function</bookmark_value>"
+msgstr ""
+
+#: 04060107.xhp#hd_id3145026.178.help.text
+msgid "SUMX2PY2"
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#hd_id3163390.180.help.text
+msgctxt "04060107.xhp#hd_id3163390.180.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060107.xhp#par_id3163404.181.help.text
+msgid "SUMX2PY2(ArrayX; ArrayY)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#par_idN11E45.help.text
+msgctxt "04060107.xhp#par_idN11E45.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr ""
+
+#: 04060107.xhp#bm_id3163527.help.text
+msgid "<bookmark_value>SUMXMY2 function</bookmark_value>"
+msgstr ""
+
+#: 04060107.xhp#hd_id3163527.187.help.text
+msgid "SUMXMY2"
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#hd_id3163574.189.help.text
+msgctxt "04060107.xhp#hd_id3163574.189.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060107.xhp#par_id3163588.190.help.text
+msgid "SUMXMY2(ArrayX; ArrayY)"
+msgstr ""
+
+#: 04060107.xhp#par_id3163601.191.help.text
+msgid "<emph>ArrayX</emph> represents the first array whose elements are to be subtracted and squared."
+msgstr ""
+
+#: 04060107.xhp#par_id3163621.192.help.text
+msgid "<emph>ArrayY</emph> represents the second array, whose elements are to be subtracted and squared."
+msgstr ""
+
+#: 04060107.xhp#par_idN11F1F.help.text
+msgctxt "04060107.xhp#par_idN11F1F.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr ""
+
+#: 04060107.xhp#bm_id3166062.help.text
+msgid "<bookmark_value>TREND function</bookmark_value>"
+msgstr ""
+
+#: 04060107.xhp#hd_id3166062.196.help.text
+msgid "TREND"
+msgstr ""
+
+#: 04060107.xhp#par_id3166091.197.help.text
+msgid "<ahelp hid=\"HID_FUNC_TREND\">Returns values along a linear trend.</ahelp>"
+msgstr ""
+
+#: 04060107.xhp#hd_id3166109.198.help.text
+msgctxt "04060107.xhp#hd_id3166109.198.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060107.xhp#par_id3166122.199.help.text
+msgid "TREND(DataY; DataX; NewDataX; LinearType)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060107.xhp#par_idN11D2F.help.text
+msgctxt "04060107.xhp#par_idN11D2F.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr ""
+
+#: 04060107.xhp#par_idN12019.help.text
+msgctxt "04060107.xhp#par_idN12019.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr ""
+
+#: 04060107.xhp#hd_id3166231.204.help.text
+#, fuzzy
+msgctxt "04060107.xhp#hd_id3166231.204.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060107.xhp#bm_id3166317.help.text
+msgid "<bookmark_value>GROWTH function</bookmark_value><bookmark_value>exponential trends in arrays</bookmark_value>"
+msgstr ""
+
+#: 04060107.xhp#hd_id3166317.207.help.text
+msgid "GROWTH"
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#hd_id3166364.209.help.text
+msgctxt "04060107.xhp#hd_id3166364.209.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060107.xhp#par_id3166377.210.help.text
+msgid "GROWTH(DataY; DataX; NewDataX; FunctionType)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060107.xhp#par_id3173797.213.help.text
+msgid "<emph>NewDataX</emph> (optional) represents the X data array, in which the values are recalculated."
+msgstr ""
+
+#: 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 ""
+
+#: 04060107.xhp#par_idN11DFD.help.text
+msgctxt "04060107.xhp#par_idN11DFD.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr ""
+
+#: 04060107.xhp#par_idN12113.help.text
+msgctxt "04060107.xhp#par_idN12113.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr ""
+
+#: 04060107.xhp#hd_id3173839.215.help.text
+#, fuzzy
+msgctxt "04060107.xhp#hd_id3173839.215.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 12080500.xhp#tit.help.text
+msgid "AutoOutline"
+msgstr ""
+
+#: 12080500.xhp#hd_id3150275.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12080500.xhp\" name=\"AutoOutline\">AutoOutline</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 12080500.xhp#par_id3148798.10.help.text
+msgid "For example, consider the following table:"
+msgstr ""
+
+#: 12080500.xhp#par_id3154123.11.help.text
+msgid "January"
+msgstr ""
+
+#: 12080500.xhp#par_id3154011.12.help.text
+msgid "February"
+msgstr ""
+
+#: 12080500.xhp#par_id3152460.13.help.text
+msgid "March"
+msgstr ""
+
+#: 12080500.xhp#par_id3146119.14.help.text
+msgid "1st Quarter"
+msgstr ""
+
+#: 12080500.xhp#par_id3155854.15.help.text
+msgid "April"
+msgstr ""
+
+#: 12080500.xhp#par_id3148575.16.help.text
+msgid "May"
+msgstr ""
+
+#: 12080500.xhp#par_id3145271.17.help.text
+msgid "June"
+msgstr ""
+
+#: 12080500.xhp#par_id3145648.18.help.text
+msgid "2nd Quarter"
+msgstr ""
+
+#: 12080500.xhp#par_id3153876.19.help.text
+msgctxt "12080500.xhp#par_id3153876.19.help.text"
+msgid "100"
+msgstr ""
+
+#: 12080500.xhp#par_id3145251.20.help.text
+msgid "120"
+msgstr ""
+
+#: 12080500.xhp#par_id3149400.21.help.text
+msgid "130"
+msgstr ""
+
+#: 12080500.xhp#par_id3150328.22.help.text
+msgid "350"
+msgstr ""
+
+#: 12080500.xhp#par_id3155443.23.help.text
+msgctxt "12080500.xhp#par_id3155443.23.help.text"
+msgid "100"
+msgstr ""
+
+#: 12080500.xhp#par_id3153713.24.help.text
+msgctxt "12080500.xhp#par_id3153713.24.help.text"
+msgid "100"
+msgstr ""
+
+#: 12080500.xhp#par_id3156385.25.help.text
+msgid "200"
+msgstr ""
+
+#: 12080500.xhp#par_id3145230.26.help.text
+msgid "400"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 06070000.xhp#tit.help.text
+msgid "AutoCalculate"
+msgstr ""
+
+#: 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 ""
+
+#: 06070000.xhp#hd_id3145673.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/06070000.xhp\" name=\"AutoCalculate\">AutoCalculate</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 06070000.xhp#par_id3148798.2.help.text
+msgid "<ahelp hid=\".uno:AutomaticCalculation\">Automatically recalculates all formulas in the document.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 12050100.xhp#tit.help.text
+msgid "1st, 2nd, 3rd Group"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 12050100.xhp#par_id3148797.3.help.text
+msgid "To insert subtotal values into a table:"
+msgstr ""
+
+#: 12050100.xhp#par_id3154908.13.help.text
+msgid "Ensure that the columns of the table have labels."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 12050100.xhp#par_id3154321.15.help.text
+msgctxt "12050100.xhp#par_id3154321.15.help.text"
+msgid "Click <emph>OK</emph>."
+msgstr "Натисніть <emph>Гаразд</emph>."
+
+#: 12050100.xhp#hd_id3156441.7.help.text
+msgctxt "12050100.xhp#hd_id3156441.7.help.text"
+msgid "Group by"
+msgstr ""
+
+#: 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 ""
+
+#: 12050100.xhp#hd_id3154943.9.help.text
+msgid "Calculate subtotals for"
+msgstr ""
+
+#: 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 ""
+
+#: 12050100.xhp#hd_id3156283.11.help.text
+msgid "Use function"
+msgstr ""
+
+#: 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 ""
+
+#: 12080700.xhp#tit.help.text
+msgid "Show Details (Pivot Table)"
+msgstr ""
+
+#: 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/12030100.xhp\">Сортувати за спаданням / Сортувати за спаданням</link>"
+
+#: 12080700.xhp#par_id871303.help.text
+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 ""
+
+#: 12080700.xhp#par_id7132480.help.text
+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 ""
+
+#: 04050000.xhp#tit.help.text
+msgctxt "04050000.xhp#tit.help.text"
+msgid "Insert Sheet"
+msgstr ""
+
+#: 04050000.xhp#bm_id4522232.help.text
+msgid "<bookmark_value>sheets;creating</bookmark_value>"
+msgstr ""
+
+#: 04050000.xhp#hd_id3155629.1.help.text
+msgctxt "04050000.xhp#hd_id3155629.1.help.text"
+msgid "Insert Sheet"
+msgstr ""
+
+#: 04050000.xhp#par_id3147264.2.help.text
+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 ""
+
+#: 04050000.xhp#hd_id3154684.19.help.text
+msgid "Position"
+msgstr "Посада"
+
+#: 04050000.xhp#par_id3156281.20.help.text
+msgid "Specifies where the new sheet is to be inserted into your document."
+msgstr ""
+
+#: 04050000.xhp#hd_id3154123.21.help.text
+msgid "Before current sheet"
+msgstr ""
+
+#: 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 ""
+
+#: 04050000.xhp#hd_id3155414.23.help.text
+msgid "After current sheet"
+msgstr ""
+
+#: 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 ""
+
+#: 04050000.xhp#hd_id3147428.25.help.text
+msgctxt "04050000.xhp#hd_id3147428.25.help.text"
+msgid "Sheet"
+msgstr ""
+
+#: 04050000.xhp#par_id3154012.26.help.text
+msgid "Specifies whether a new sheet or an existing sheet is inserted into the document."
+msgstr ""
+
+#: 04050000.xhp#hd_id3147350.3.help.text
+msgid "New sheet"
+msgstr ""
+
+#: 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 ""
+
+#: 04050000.xhp#hd_id3155418.27.help.text
+#, fuzzy
+msgid "No. of sheets"
+msgstr "Об’єднання множин"
+
+#: 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 ""
+
+#: 04050000.xhp#hd_id3149379.7.help.text
+msgctxt "04050000.xhp#hd_id3149379.7.help.text"
+msgid "Name"
+msgstr ""
+
+#: 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 ""
+
+#: 04050000.xhp#hd_id3155066.9.help.text
+msgid "From File"
+msgstr ""
+
+#: 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 ""
+
+#: 04050000.xhp#hd_id3149020.15.help.text
+msgctxt "04050000.xhp#hd_id3149020.15.help.text"
+msgid "Browse"
+msgstr ""
+
+#: 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 ""
+
+#: 04050000.xhp#hd_id3149255.29.help.text
+msgid "Available Sheets"
+msgstr ""
+
+#: 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 ""
+
+#: 04050000.xhp#hd_id3145791.17.help.text
+msgid "Link"
+msgstr "Зв'язок"
+
+#: 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 ""
+
+#: 12060000.xhp#tit.help.text
+msgctxt "12060000.xhp#tit.help.text"
+msgid "Multiple Operations"
+msgstr ""
+
+#: 12060000.xhp#hd_id3153381.1.help.text
+msgctxt "12060000.xhp#hd_id3153381.1.help.text"
+msgid "Multiple Operations"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 12060000.xhp#hd_id3156441.3.help.text
+#, fuzzy
+msgid "Defaults"
+msgstr "Типово"
+
+#: 12060000.xhp#hd_id3154492.6.help.text
+#, fuzzy
+msgctxt "12060000.xhp#hd_id3154492.6.help.text"
+msgid "Formulas"
+msgstr "Формула"
+
+#: 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 ""
+
+#: 12060000.xhp#hd_id3154729.8.help.text
+msgctxt "12060000.xhp#hd_id3154729.8.help.text"
+msgid "Row"
+msgstr ""
+
+#: 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 ""
+
+#: 12060000.xhp#hd_id3150718.14.help.text
+msgctxt "12060000.xhp#hd_id3150718.14.help.text"
+msgid "Column"
+msgstr ""
+
+#: 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 ""
+
+#: 04060115.xhp#tit.help.text
+msgctxt "04060115.xhp#tit.help.text"
+msgid "Add-in Functions, List of Analysis Functions Part One"
+msgstr ""
+
+#: 04060115.xhp#bm_id3152871.help.text
+msgid "<bookmark_value>add-ins; analysis functions</bookmark_value><bookmark_value>analysis functions</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060115.xhp#bm_id3153074.help.text
+msgid "<bookmark_value>Bessel functions</bookmark_value>"
+msgstr ""
+
+#: 04060115.xhp#hd_id3153334.111.help.text
+msgid "BESSELI"
+msgstr ""
+
+#: 04060115.xhp#par_id3153960.112.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Calculates the modified Bessel function.</ahelp>"
+msgstr ""
+
+#: 04060115.xhp#hd_id3150392.113.help.text
+msgctxt "04060115.xhp#hd_id3150392.113.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060115.xhp#par_id3147295.114.help.text
+msgid "BESSELI(X; N)"
+msgstr ""
+
+#: 04060115.xhp#par_id3151338.115.help.text
+msgctxt "04060115.xhp#par_id3151338.115.help.text"
+msgid "<emph>X</emph> is the value on which the function will be calculated."
+msgstr ""
+
+#: 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 ""
+
+#: 04060115.xhp#hd_id3153027.103.help.text
+msgid "BESSELJ"
+msgstr ""
+
+#: 04060115.xhp#par_id3153015.104.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">Calculates the Bessel function (cylinder function).</ahelp>"
+msgstr ""
+
+#: 04060115.xhp#hd_id3146884.105.help.text
+msgctxt "04060115.xhp#hd_id3146884.105.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060115.xhp#par_id3150032.106.help.text
+msgid "BESSELJ(X; N)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060115.xhp#hd_id3149946.117.help.text
+msgid "BESSELK"
+msgstr ""
+
+#: 04060115.xhp#par_id3159122.118.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Calculates the modified Bessel function.</ahelp>"
+msgstr ""
+
+#: 04060115.xhp#hd_id3150650.119.help.text
+msgctxt "04060115.xhp#hd_id3150650.119.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060115.xhp#par_id3149354.120.help.text
+msgid "BESSELK(X; N)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060115.xhp#hd_id3145828.123.help.text
+msgid "BESSELY"
+msgstr ""
+
+#: 04060115.xhp#par_id3146877.124.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Calculates the modified Bessel function.</ahelp>"
+msgstr ""
+
+#: 04060115.xhp#hd_id3146941.125.help.text
+msgctxt "04060115.xhp#hd_id3146941.125.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060115.xhp#par_id3148884.126.help.text
+msgid "BESSELY(X; N)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060115.xhp#bm_id3153034.help.text
+msgid "<bookmark_value>BIN2DEC function</bookmark_value><bookmark_value>converting;binary numbers, into decimal numbers</bookmark_value>"
+msgstr ""
+
+#: 04060115.xhp#hd_id3153034.17.help.text
+msgid "BIN2DEC"
+msgstr ""
+
+#: 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 ""
+
+#: 04060115.xhp#hd_id3145593.19.help.text
+msgctxt "04060115.xhp#hd_id3145593.19.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060115.xhp#par_id3149726.20.help.text
+msgid "BIN2DEC(Number)"
+msgstr ""
+
+#: 04060115.xhp#par_id3150142.21.help.text
+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 ""
+
+#: 04060115.xhp#hd_id3149250.22.help.text
+#, fuzzy
+msgctxt "04060115.xhp#hd_id3149250.22.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060115.xhp#par_id3145138.23.help.text
+msgid "<item type=\"input\">=BIN2DEC(1100100)</item> returns 100."
+msgstr ""
+
+#: 04060115.xhp#bm_id3149954.help.text
+msgid "<bookmark_value>BIN2HEX function</bookmark_value><bookmark_value>converting;binary numbers, into hexadecimal numbers</bookmark_value>"
+msgstr ""
+
+#: 04060115.xhp#hd_id3149954.24.help.text
+msgid "BIN2HEX"
+msgstr ""
+
+#: 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 ""
+
+#: 04060115.xhp#hd_id3153936.26.help.text
+msgctxt "04060115.xhp#hd_id3153936.26.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060115.xhp#par_id3148753.27.help.text
+msgid "BIN2HEX(Number; Places)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060115.xhp#par_id3150860.29.help.text
+msgid "Places means the number of places to be output."
+msgstr ""
+
+#: 04060115.xhp#hd_id3155829.30.help.text
+#, fuzzy
+msgctxt "04060115.xhp#hd_id3155829.30.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060115.xhp#par_id3149686.31.help.text
+msgid "<item type=\"input\">=BIN2HEX(1100100;6)</item> returns 000064."
+msgstr ""
+
+#: 04060115.xhp#bm_id3153332.help.text
+msgid "<bookmark_value>BIN2OCT function</bookmark_value><bookmark_value>converting;binary numbers, into octal numbers</bookmark_value>"
+msgstr ""
+
+#: 04060115.xhp#hd_id3153332.9.help.text
+msgid "BIN2OCT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060115.xhp#hd_id3153001.11.help.text
+msgctxt "04060115.xhp#hd_id3153001.11.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060115.xhp#par_id3154508.12.help.text
+msgid "BIN2OCT(Number; Places)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060115.xhp#hd_id3150128.15.help.text
+#, fuzzy
+msgctxt "04060115.xhp#hd_id3150128.15.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060115.xhp#par_id3153733.16.help.text
+msgid "<item type=\"input\">=BIN2OCT(1100100;4)</item> returns 0144."
+msgstr ""
+
+#: 04060115.xhp#bm_id3150014.help.text
+msgid "<bookmark_value>DELTA function</bookmark_value><bookmark_value>recognizing;equal numbers</bookmark_value>"
+msgstr ""
+
+#: 04060115.xhp#hd_id3150014.129.help.text
+msgid "DELTA"
+msgstr ""
+
+#: 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 ""
+
+#: 04060115.xhp#hd_id3155435.131.help.text
+msgctxt "04060115.xhp#hd_id3155435.131.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060115.xhp#par_id3145247.132.help.text
+msgid "DELTA(Number1; Number2)"
+msgstr ""
+
+#: 04060115.xhp#hd_id3149002.133.help.text
+#, fuzzy
+msgctxt "04060115.xhp#hd_id3149002.133.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060115.xhp#par_id3151020.134.help.text
+msgid "<item type=\"input\">=DELTA(1;2)</item> returns 0."
+msgstr ""
+
+#: 04060115.xhp#bm_id3157971.help.text
+msgid "<bookmark_value>DEC2BIN function</bookmark_value><bookmark_value>converting;decimal numbers, into binary numbers</bookmark_value>"
+msgstr ""
+
+#: 04060115.xhp#hd_id3157971.55.help.text
+msgid "DEC2BIN"
+msgstr ""
+
+#: 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 ""
+
+#: 04060115.xhp#hd_id3145349.57.help.text
+msgctxt "04060115.xhp#hd_id3145349.57.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060115.xhp#par_id3150569.58.help.text
+msgid "DEC2BIN(Number; Places)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060115.xhp#hd_id3150265.61.help.text
+#, fuzzy
+msgctxt "04060115.xhp#hd_id3150265.61.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060115.xhp#par_id3150662.62.help.text
+msgid "<item type=\"input\">=DEC2BIN(100;8)</item> returns 01100100."
+msgstr ""
+
+#: 04060115.xhp#bm_id3149388.help.text
+msgid "<bookmark_value>DEC2HEX function</bookmark_value><bookmark_value>converting;decimal numbers, into hexadecimal numbers</bookmark_value>"
+msgstr ""
+
+#: 04060115.xhp#hd_id3149388.71.help.text
+msgid "DEC2HEX"
+msgstr ""
+
+#: 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 ""
+
+#: 04060115.xhp#hd_id3150691.73.help.text
+msgctxt "04060115.xhp#hd_id3150691.73.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060115.xhp#par_id3147535.74.help.text
+msgid "DEC2HEX(Number; Places)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060115.xhp#hd_id3154869.77.help.text
+#, fuzzy
+msgctxt "04060115.xhp#hd_id3154869.77.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060115.xhp#par_id3150476.78.help.text
+msgid "<item type=\"input\">=DEC2HEX(100;4)</item> returns 0064."
+msgstr ""
+
+#: 04060115.xhp#bm_id3154948.help.text
+msgid "<bookmark_value>DEC2OCT function</bookmark_value><bookmark_value>converting;decimal numbers, into octal numbers</bookmark_value>"
+msgstr ""
+
+#: 04060115.xhp#hd_id3154948.63.help.text
+msgid "DEC2OCT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060115.xhp#hd_id3153178.65.help.text
+msgctxt "04060115.xhp#hd_id3153178.65.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060115.xhp#par_id3148427.66.help.text
+msgid "DEC2OCT(Number; Places)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060115.xhp#hd_id3147482.69.help.text
+#, fuzzy
+msgctxt "04060115.xhp#hd_id3147482.69.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060115.xhp#par_id3154317.70.help.text
+msgid "<item type=\"input\">=DEC2OCT(100;4)</item> returns 0144."
+msgstr ""
+
+#: 04060115.xhp#bm_id3083446.help.text
+msgid "<bookmark_value>ERF function</bookmark_value><bookmark_value>Gaussian error integral</bookmark_value>"
+msgstr ""
+
+#: 04060115.xhp#hd_id3083446.135.help.text
+msgid "ERF"
+msgstr ""
+
+#: 04060115.xhp#par_id3150381.136.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_ERF\">Returns values of the Gaussian error integral.</ahelp>"
+msgstr ""
+
+#: 04060115.xhp#hd_id3152475.137.help.text
+msgctxt "04060115.xhp#hd_id3152475.137.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060115.xhp#par_id3163824.138.help.text
+msgid "ERF(LowerLimit; UpperLimit)"
+msgstr ""
+
+#: 04060115.xhp#par_id3149715.139.help.text
+msgid "<emph>LowerLimit</emph> is the lower limit of the integral."
+msgstr ""
+
+#: 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 ""
+
+#: 04060115.xhp#hd_id3154819.141.help.text
+#, fuzzy
+msgctxt "04060115.xhp#hd_id3154819.141.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060115.xhp#par_id3152974.142.help.text
+msgid "<item type=\"input\">=ERF(0;1)</item> returns 0.842701."
+msgstr ""
+
+#: 04060115.xhp#bm_id3145082.help.text
+msgid "<bookmark_value>ERFC function</bookmark_value>"
+msgstr ""
+
+#: 04060115.xhp#hd_id3145082.143.help.text
+msgid "ERFC"
+msgstr ""
+
+#: 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 ""
+
+#: 04060115.xhp#hd_id3155839.145.help.text
+msgctxt "04060115.xhp#hd_id3155839.145.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060115.xhp#par_id3153220.146.help.text
+msgid "ERFC(LowerLimit)"
+msgstr ""
+
+#: 04060115.xhp#par_id3147620.147.help.text
+msgid "<emph>LowerLimit</emph> is the lower limit of the integral"
+msgstr ""
+
+#: 04060115.xhp#hd_id3146861.148.help.text
+#, fuzzy
+msgctxt "04060115.xhp#hd_id3146861.148.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060115.xhp#par_id3156102.149.help.text
+msgid "<item type=\"input\">=ERFC(1)</item> returns 0.157299."
+msgstr ""
+
+#: 04060115.xhp#bm_id3152927.help.text
+msgid "<bookmark_value>GESTEP function</bookmark_value><bookmark_value>numbers;greater than or equal to</bookmark_value>"
+msgstr ""
+
+#: 04060115.xhp#hd_id3152927.150.help.text
+msgid "GESTEP"
+msgstr ""
+
+#: 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 ""
+
+#: 04060115.xhp#hd_id3150879.152.help.text
+msgctxt "04060115.xhp#hd_id3150879.152.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060115.xhp#par_id3145212.153.help.text
+msgid "GESTEP(Number; Step)"
+msgstr ""
+
+#: 04060115.xhp#hd_id3153275.154.help.text
+#, fuzzy
+msgctxt "04060115.xhp#hd_id3153275.154.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060115.xhp#par_id3156132.155.help.text
+msgid "<item type=\"input\">=GESTEP(5;1)</item> returns 1."
+msgstr ""
+
+#: 04060115.xhp#bm_id3147276.help.text
+msgid "<bookmark_value>HEX2BIN function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into binary numbers</bookmark_value>"
+msgstr ""
+
+#: 04060115.xhp#hd_id3147276.79.help.text
+msgid "HEX2BIN"
+msgstr ""
+
+#: 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 ""
+
+#: 04060115.xhp#hd_id3156117.81.help.text
+msgctxt "04060115.xhp#hd_id3156117.81.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060115.xhp#par_id3155847.82.help.text
+msgid "HEX2BIN(Number; Places)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060115.xhp#hd_id3154052.85.help.text
+#, fuzzy
+msgctxt "04060115.xhp#hd_id3154052.85.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060115.xhp#par_id3156002.86.help.text
+msgid "<item type=\"input\">=HEX2BIN(64;8)</item> returns 01100100."
+msgstr ""
+
+#: 04060115.xhp#bm_id3154742.help.text
+msgid "<bookmark_value>HEX2DEC function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into decimal numbers</bookmark_value>"
+msgstr ""
+
+#: 04060115.xhp#hd_id3154742.87.help.text
+msgid "HEX2DEC"
+msgstr ""
+
+#: 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 ""
+
+#: 04060115.xhp#hd_id3143233.89.help.text
+msgctxt "04060115.xhp#hd_id3143233.89.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060115.xhp#par_id3149293.90.help.text
+msgid "HEX2DEC(Number)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060115.xhp#hd_id3154304.92.help.text
+#, fuzzy
+msgctxt "04060115.xhp#hd_id3154304.92.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060115.xhp#par_id3146093.93.help.text
+msgid "<item type=\"input\">=HEX2DEC(64)</item> returns 100."
+msgstr ""
+
+#: 04060115.xhp#bm_id3149750.help.text
+msgid "<bookmark_value>HEX2OCT function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into octal numbers</bookmark_value>"
+msgstr ""
+
+#: 04060115.xhp#hd_id3149750.94.help.text
+msgid "HEX2OCT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060115.xhp#hd_id3145660.96.help.text
+msgctxt "04060115.xhp#hd_id3145660.96.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060115.xhp#par_id3151170.97.help.text
+msgid "HEX2OCT(Number; Places)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060115.xhp#hd_id3153901.100.help.text
+#, fuzzy
+msgctxt "04060115.xhp#hd_id3153901.100.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060115.xhp#par_id3159341.101.help.text
+msgid "<item type=\"input\">=HEX2OCT(64;4)</item> returns 0144."
+msgstr ""
+
+#: 05110000.xhp#tit.help.text
+msgid "AutoFormat"
+msgstr ""
+
+#: 05110000.xhp#hd_id3149666.1.help.text
+msgid "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat</link></variable>"
+msgstr ""
+
+#: 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 ""
+
+#: 05110000.xhp#hd_id3148455.3.help.text
+msgid "Format"
+msgstr "Формат"
+
+#: 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 ""
+
+#: 05110000.xhp#hd_id3149410.5.help.text
+msgctxt "05110000.xhp#hd_id3149410.5.help.text"
+msgid "Add"
+msgstr ""
+
+#: 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 ""
+
+#: 05110000.xhp#par_id3153708.29.help.text
+msgid "<ahelp hid=\"HID_SC_AUTOFMT_NAME\">Enter a name and click <emph>OK</emph>. </ahelp>"
+msgstr ""
+
+#: 05110000.xhp#hd_id3150044.7.help.text
+msgctxt "05110000.xhp#hd_id3150044.7.help.text"
+msgid "More"
+msgstr ""
+
+#: 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 ""
+
+#: 05110000.xhp#hd_id3155961.9.help.text
+msgid "Formatting"
+msgstr "Форматування"
+
+#: 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 ""
+
+#: 05110000.xhp#hd_id3154021.11.help.text
+msgid "Number format"
+msgstr ""
+
+#: 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 ""
+
+#: 05110000.xhp#hd_id3149530.13.help.text
+msgid "Borders"
+msgstr "Поля"
+
+#: 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 ""
+
+#: 05110000.xhp#hd_id3154657.15.help.text
+msgid "Font"
+msgstr ""
+
+#: 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 ""
+
+#: 05110000.xhp#hd_id3155379.17.help.text
+msgid "Pattern"
+msgstr ""
+
+#: 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 ""
+
+#: 05110000.xhp#hd_id3146115.19.help.text
+msgid "Alignment"
+msgstr ""
+
+#: 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 ""
+
+#: 05110000.xhp#hd_id3155811.21.help.text
+msgid "AutoFit width and height"
+msgstr ""
+
+#: 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 ""
+
+#: 05110000.xhp#hd_id3159223.26.help.text
+msgid "Rename"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 05110000.xhp#hd_id3155264.23.help.text
+msgctxt "05110000.xhp#hd_id3155264.23.help.text"
+msgid "More"
+msgstr ""
+
+#: 05110000.xhp#par_id3159094.24.help.text
+msgid "Closes the <emph>Formatting</emph> options section, if it is currently open."
+msgstr ""
+
+#: 12120300.xhp#tit.help.text
+msgid "Error Alert"
+msgstr ""
+
+#: 12120300.xhp#hd_id3153821.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12120300.xhp\" name=\"Error Alert\">Error Alert</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 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 ""
+
+#: 12120300.xhp#hd_id3156280.3.help.text
+msgid "Show error message when invalid values are entered."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 12120300.xhp#hd_id3152460.6.help.text
+msgctxt "12120300.xhp#hd_id3152460.6.help.text"
+msgid "Contents"
+msgstr ""
+
+#: 12120300.xhp#hd_id3148646.8.help.text
+msgid "Action"
+msgstr ""
+
+#: 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 ""
+
+#: 12120300.xhp#hd_id3156441.10.help.text
+msgctxt "12120300.xhp#hd_id3156441.10.help.text"
+msgid "Browse"
+msgstr ""
+
+#: 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 ""
+
+#: 12120300.xhp#hd_id3153876.12.help.text
+msgctxt "12120300.xhp#hd_id3153876.12.help.text"
+msgid "Title"
+msgstr ""
+
+#: 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 ""
+
+#: 12120300.xhp#hd_id3154510.14.help.text
+msgid "Error message"
+msgstr ""
+
+#: 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 ""
+
+#: 12120300.xhp#par_id3150752.16.help.text
+msgid "<emph>Sample macro:</emph>"
+msgstr ""
+
+#: func_time.xhp#tit.help.text
+msgid "TIME "
+msgstr ""
+
+#: func_time.xhp#bm_id3154073.help.text
+msgid "<bookmark_value>TIME function</bookmark_value>"
+msgstr ""
+
+#: func_time.xhp#hd_id3154073.149.help.text
+msgid "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">TIME</link></variable>"
+msgstr ""
+
+#: 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 ""
+
+#: func_time.xhp#hd_id3155550.151.help.text
+msgctxt "func_time.xhp#hd_id3155550.151.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: func_time.xhp#par_id3154584.152.help.text
+msgid "TIME(Hour; Minute; Second)"
+msgstr ""
+
+#: func_time.xhp#par_id3152904.153.help.text
+msgid "Use an integer to set the <emph>Hour</emph>."
+msgstr ""
+
+#: func_time.xhp#par_id3151346.154.help.text
+msgid "Use an integer to set the <emph>Minute</emph>."
+msgstr ""
+
+#: func_time.xhp#par_id3151366.155.help.text
+msgid "Use an integer to set the <emph>Second</emph>."
+msgstr ""
+
+#: func_time.xhp#hd_id3145577.156.help.text
+#, fuzzy
+msgctxt "func_time.xhp#hd_id3145577.156.help.text"
+msgid "Examples"
+msgstr "Приклади:"
+
+#: func_time.xhp#par_id3156076.157.help.text
+msgid "<item type=\"input\">=TIME(0;0;0)</item> returns 00:00:00"
+msgstr ""
+
+#: func_time.xhp#par_id3156090.158.help.text
+msgid "<item type=\"input\">=TIME(4;20;4)</item> returns 04:20:04"
+msgstr ""
+
+#: 04060101.xhp#tit.help.text
+msgctxt "04060101.xhp#tit.help.text"
+msgid "Database Functions"
+msgstr ""
+
+#: 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 ""
+
+#: 04060101.xhp#hd_id3148946.1.help.text
+msgctxt "04060101.xhp#hd_id3148946.1.help.text"
+msgid "Database Functions"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060101.xhp#hd_id3150329.190.help.text
+msgid "Example Data:"
+msgstr ""
+
+#: 04060101.xhp#par_id3153713.191.help.text
+msgid "The following data will be used in some of the function description examples:"
+msgstr ""
+
+#: 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 ""
+
+#: 04060101.xhp#par_id3145232.4.help.text
+msgctxt "04060101.xhp#par_id3145232.4.help.text"
+msgid "A"
+msgstr ""
+
+#: 04060101.xhp#par_id3146316.5.help.text
+msgctxt "04060101.xhp#par_id3146316.5.help.text"
+msgid "B"
+msgstr ""
+
+#: 04060101.xhp#par_id3150297.6.help.text
+msgctxt "04060101.xhp#par_id3150297.6.help.text"
+msgid "C"
+msgstr ""
+
+#: 04060101.xhp#par_id3150344.7.help.text
+msgctxt "04060101.xhp#par_id3150344.7.help.text"
+msgid "D"
+msgstr ""
+
+#: 04060101.xhp#par_id3150785.8.help.text
+msgctxt "04060101.xhp#par_id3150785.8.help.text"
+msgid "E"
+msgstr ""
+
+#: 04060101.xhp#par_id3150090.9.help.text
+msgctxt "04060101.xhp#par_id3150090.9.help.text"
+msgid "1"
+msgstr ""
+
+#: 04060101.xhp#par_id3152992.10.help.text
+msgctxt "04060101.xhp#par_id3152992.10.help.text"
+msgid "<item type=\"input\">Name</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3155532.11.help.text
+msgctxt "04060101.xhp#par_id3155532.11.help.text"
+msgid "<item type=\"input\">Grade</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3156448.12.help.text
+msgctxt "04060101.xhp#par_id3156448.12.help.text"
+msgid "<item type=\"input\">Age</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3154486.13.help.text
+msgctxt "04060101.xhp#par_id3154486.13.help.text"
+msgid "<item type=\"input\">Distance to School</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3152899.14.help.text
+msgctxt "04060101.xhp#par_id3152899.14.help.text"
+msgid "<item type=\"input\">Weight</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3153816.15.help.text
+msgctxt "04060101.xhp#par_id3153816.15.help.text"
+msgid "2"
+msgstr ""
+
+#: 04060101.xhp#par_id3151240.16.help.text
+msgid "<item type=\"input\">Andy</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3156016.17.help.text
+msgctxt "04060101.xhp#par_id3156016.17.help.text"
+msgid "<item type=\"input\">3</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3145073.18.help.text
+msgctxt "04060101.xhp#par_id3145073.18.help.text"
+msgid "<item type=\"input\">9</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3154956.19.help.text
+msgid "<item type=\"input\">150</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3153976.20.help.text
+msgid "<item type=\"input\">40</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3150894.21.help.text
+msgctxt "04060101.xhp#par_id3150894.21.help.text"
+msgid "3"
+msgstr ""
+
+#: 04060101.xhp#par_id3152870.22.help.text
+msgid "<item type=\"input\">Betty</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3149692.23.help.text
+msgctxt "04060101.xhp#par_id3149692.23.help.text"
+msgid "<item type=\"input\">4</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3154652.24.help.text
+msgctxt "04060101.xhp#par_id3154652.24.help.text"
+msgid "<item type=\"input\">10</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3149381.25.help.text
+msgctxt "04060101.xhp#par_id3149381.25.help.text"
+msgid "<item type=\"input\">1000</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3153812.26.help.text
+msgctxt "04060101.xhp#par_id3153812.26.help.text"
+msgid "<item type=\"input\">42</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3146965.27.help.text
+msgctxt "04060101.xhp#par_id3146965.27.help.text"
+msgid "4"
+msgstr ""
+
+#: 04060101.xhp#par_id3155596.28.help.text
+msgid "<item type=\"input\">Charles</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3147244.29.help.text
+msgctxt "04060101.xhp#par_id3147244.29.help.text"
+msgid "<item type=\"input\">3</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3149871.30.help.text
+msgctxt "04060101.xhp#par_id3149871.30.help.text"
+msgid "<item type=\"input\">10</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3155752.31.help.text
+msgid "<item type=\"input\">300</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3149052.32.help.text
+msgid "<item type=\"input\">51</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3146097.33.help.text
+msgctxt "04060101.xhp#par_id3146097.33.help.text"
+msgid "5"
+msgstr ""
+
+#: 04060101.xhp#par_id3147296.34.help.text
+msgid "<item type=\"input\">Daniel</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3150393.35.help.text
+msgctxt "04060101.xhp#par_id3150393.35.help.text"
+msgid "<item type=\"input\">5</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3145236.36.help.text
+msgctxt "04060101.xhp#par_id3145236.36.help.text"
+msgid "<item type=\"input\">11</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3150534.37.help.text
+msgctxt "04060101.xhp#par_id3150534.37.help.text"
+msgid "<item type=\"input\">1200</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3150375.38.help.text
+msgid "<item type=\"input\">48</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3159121.39.help.text
+msgctxt "04060101.xhp#par_id3159121.39.help.text"
+msgid "6"
+msgstr ""
+
+#: 04060101.xhp#par_id3150456.40.help.text
+msgid "<item type=\"input\">Eva</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3146886.41.help.text
+msgctxt "04060101.xhp#par_id3146886.41.help.text"
+msgid "<item type=\"input\">2</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3149945.42.help.text
+msgctxt "04060101.xhp#par_id3149945.42.help.text"
+msgid "<item type=\"input\">8</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3157904.43.help.text
+msgid "<item type=\"input\">650</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3149352.44.help.text
+msgctxt "04060101.xhp#par_id3149352.44.help.text"
+msgid "<item type=\"input\">33</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3150028.45.help.text
+msgctxt "04060101.xhp#par_id3150028.45.help.text"
+msgid "7"
+msgstr ""
+
+#: 04060101.xhp#par_id3145826.46.help.text
+msgid "<item type=\"input\">F</item><item type=\"input\">rank</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3150743.47.help.text
+msgctxt "04060101.xhp#par_id3150743.47.help.text"
+msgid "<item type=\"input\">2</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3154844.48.help.text
+msgctxt "04060101.xhp#par_id3154844.48.help.text"
+msgid "<item type=\"input\">7</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3148435.49.help.text
+msgid "<item type=\"input\">3</item><item type=\"input\">00</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3148882.50.help.text
+msgid "<item type=\"input\">4</item><item type=\"input\">2</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3150140.51.help.text
+msgctxt "04060101.xhp#par_id3150140.51.help.text"
+msgid "8"
+msgstr ""
+
+#: 04060101.xhp#par_id3146137.52.help.text
+msgid "<item type=\"input\">Greta</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3148739.53.help.text
+msgctxt "04060101.xhp#par_id3148739.53.help.text"
+msgid "<item type=\"input\">1</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3148583.54.help.text
+msgctxt "04060101.xhp#par_id3148583.54.help.text"
+msgid "<item type=\"input\">7</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3154556.55.help.text
+msgid "<item type=\"input\">200</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3155255.56.help.text
+msgid "<item type=\"input\">36</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3145141.57.help.text
+msgctxt "04060101.xhp#par_id3145141.57.help.text"
+msgid "9"
+msgstr ""
+
+#: 04060101.xhp#par_id3153078.58.help.text
+msgid "<item type=\"input\">Harry</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3149955.59.help.text
+msgctxt "04060101.xhp#par_id3149955.59.help.text"
+msgid "<item type=\"input\">3</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3150005.60.help.text
+msgctxt "04060101.xhp#par_id3150005.60.help.text"
+msgid "<item type=\"input\">9</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3155951.61.help.text
+msgctxt "04060101.xhp#par_id3155951.61.help.text"
+msgid "<item type=\"input\">1200</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3145169.62.help.text
+msgid "<item type=\"input\">44</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3153571.63.help.text
+msgctxt "04060101.xhp#par_id3153571.63.help.text"
+msgid "10"
+msgstr ""
+
+#: 04060101.xhp#par_id3148761.64.help.text
+msgid "<item type=\"input\">Irene</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3149877.65.help.text
+msgctxt "04060101.xhp#par_id3149877.65.help.text"
+msgid "<item type=\"input\">2</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3154327.66.help.text
+msgctxt "04060101.xhp#par_id3154327.66.help.text"
+msgid "<item type=\"input\">8</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3155435.67.help.text
+msgctxt "04060101.xhp#par_id3155435.67.help.text"
+msgid "<item type=\"input\">1000</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3145353.68.help.text
+msgctxt "04060101.xhp#par_id3145353.68.help.text"
+msgid "<item type=\"input\">42</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3150662.69.help.text
+msgctxt "04060101.xhp#par_id3150662.69.help.text"
+msgid "11"
+msgstr ""
+
+#: 04060101.xhp#par_id3150568.70.help.text
+msgctxt "04060101.xhp#par_id3150568.70.help.text"
+msgid "12"
+msgstr ""
+
+#: 04060101.xhp#par_id3149393.71.help.text
+msgctxt "04060101.xhp#par_id3149393.71.help.text"
+msgid "13"
+msgstr ""
+
+#: 04060101.xhp#par_id3153544.72.help.text
+msgctxt "04060101.xhp#par_id3153544.72.help.text"
+msgid "<item type=\"input\">Name</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3158414.73.help.text
+msgctxt "04060101.xhp#par_id3158414.73.help.text"
+msgid "<item type=\"input\">Grade</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3152820.74.help.text
+msgctxt "04060101.xhp#par_id3152820.74.help.text"
+msgid "<item type=\"input\">Age</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3154866.75.help.text
+msgctxt "04060101.xhp#par_id3154866.75.help.text"
+msgid "<item type=\"input\">Distance to School</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3150471.76.help.text
+msgctxt "04060101.xhp#par_id3150471.76.help.text"
+msgid "<item type=\"input\">Weight</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3153920.77.help.text
+msgctxt "04060101.xhp#par_id3153920.77.help.text"
+msgid "14"
+msgstr ""
+
+#: 04060101.xhp#par_id3148429.78.help.text
+msgid "<item type=\"input\">>600</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3152588.79.help.text
+msgctxt "04060101.xhp#par_id3152588.79.help.text"
+msgid "15"
+msgstr ""
+
+#: 04060101.xhp#par_id3083286.80.help.text
+msgctxt "04060101.xhp#par_id3083286.80.help.text"
+msgid "16"
+msgstr ""
+
+#: 04060101.xhp#par_id3163823.81.help.text
+msgid "<item type=\"input\">DCOUNT</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3145083.82.help.text
+msgctxt "04060101.xhp#par_id3145083.82.help.text"
+msgid "<item type=\"input\">5</item>"
+msgstr ""
+
+#: 04060101.xhp#par_id3149282.83.help.text
+msgid "The formula in cell B16 is =DCOUNT(A1:E10;0;A13:E14)"
+msgstr ""
+
+#: 04060101.xhp#hd_id3150962.192.help.text
+msgid "Database Function Parameters:"
+msgstr ""
+
+#: 04060101.xhp#par_id3155837.84.help.text
+msgid "The following items are the parameter definitions for all database functions:"
+msgstr ""
+
+#: 04060101.xhp#par_id3149453.85.help.text
+msgid "<emph>Database</emph> is the cell range defining the database."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060101.xhp#hd_id3150882.88.help.text
+msgid "DCOUNT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060101.xhp#hd_id3156099.90.help.text
+msgctxt "04060101.xhp#hd_id3156099.90.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060101.xhp#par_id3153218.91.help.text
+msgid "DCOUNT(Database; DatabaseField; SearchCriteria)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060101.xhp#hd_id3154743.92.help.text
+#, fuzzy
+msgctxt "04060101.xhp#hd_id3154743.92.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060101.xhp#hd_id3156123.97.help.text
+msgid "DCOUNTA"
+msgstr ""
+
+#: 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 ""
+
+#: 04060101.xhp#hd_id3143228.99.help.text
+msgctxt "04060101.xhp#hd_id3143228.99.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060101.xhp#par_id3146893.100.help.text
+msgid "DCOUNTA(Database; DatabaseField; SearchCriteria)"
+msgstr ""
+
+#: 04060101.xhp#hd_id3149751.101.help.text
+#, fuzzy
+msgctxt "04060101.xhp#hd_id3149751.101.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060101.xhp#hd_id3147256.104.help.text
+msgid "DGET"
+msgstr ""
+
+#: 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 ""
+
+#: 04060101.xhp#hd_id3159344.106.help.text
+msgctxt "04060101.xhp#hd_id3159344.106.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060101.xhp#par_id3154696.107.help.text
+msgid "DGET(Database; DatabaseField; SearchCriteria)"
+msgstr ""
+
+#: 04060101.xhp#hd_id3153909.108.help.text
+#, fuzzy
+msgctxt "04060101.xhp#hd_id3153909.108.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060101.xhp#par_id3153096.110.help.text
+msgid "<item type=\"input\">=DGET(A1:E10;\"Grade\";A13:E14)</item>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060101.xhp#par_id3149912.113.help.text
+msgid "<item type=\"input\">=DGET(A1:E10;\"Name\";A13:E14)</item>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060101.xhp#hd_id3149766.115.help.text
+msgid "DMAX"
+msgstr ""
+
+#: 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 ""
+
+#: 04060101.xhp#hd_id3150771.117.help.text
+msgctxt "04060101.xhp#hd_id3150771.117.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060101.xhp#par_id3159157.118.help.text
+msgid "DMAX(Database; DatabaseField; SearchCriteria)"
+msgstr ""
+
+#: 04060101.xhp#hd_id3145420.119.help.text
+#, fuzzy
+msgctxt "04060101.xhp#hd_id3145420.119.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060101.xhp#par_id3148804.121.help.text
+msgid "<item type=\"input\">=DMAX(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060101.xhp#hd_id3159141.123.help.text
+msgid "DMIN"
+msgstr ""
+
+#: 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 ""
+
+#: 04060101.xhp#hd_id3147238.125.help.text
+msgctxt "04060101.xhp#hd_id3147238.125.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060101.xhp#par_id3148479.126.help.text
+msgid "DMIN(Database; DatabaseField; SearchCriteria)"
+msgstr ""
+
+#: 04060101.xhp#hd_id3151050.127.help.text
+#, fuzzy
+msgctxt "04060101.xhp#hd_id3151050.127.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060101.xhp#par_id3149161.129.help.text
+msgid "<item type=\"input\">=DMIN(A1:E10;\"Distance to School\";A13:E14)</item>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060101.xhp#hd_id3154274.131.help.text
+msgid "DAVERAGE"
+msgstr ""
+
+#: 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 ""
+
+#: 04060101.xhp#hd_id3146955.133.help.text
+msgctxt "04060101.xhp#hd_id3146955.133.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060101.xhp#par_id3150710.134.help.text
+msgid "DAVERAGE(Database; DatabaseField; SearchCriteria)"
+msgstr ""
+
+#: 04060101.xhp#hd_id3152943.135.help.text
+#, fuzzy
+msgctxt "04060101.xhp#hd_id3152943.135.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060101.xhp#par_id3153688.137.help.text
+msgid "<item type=\"input\">=DAVERAGE(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060101.xhp#bm_id3159269.help.text
+msgid "<bookmark_value>DPRODUCT function</bookmark_value> <bookmark_value>multiplying;cell contents in Calc databases</bookmark_value>"
+msgstr ""
+
+#: 04060101.xhp#hd_id3159269.139.help.text
+msgid "DPRODUCT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060101.xhp#hd_id3149966.141.help.text
+msgctxt "04060101.xhp#hd_id3149966.141.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060101.xhp#par_id3154854.142.help.text
+msgid "DPRODUCT(Database; DatabaseField; SearchCriteria)"
+msgstr ""
+
+#: 04060101.xhp#hd_id3149802.143.help.text
+#, fuzzy
+msgctxt "04060101.xhp#hd_id3149802.143.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060101.xhp#hd_id3148462.145.help.text
+msgid "DSTDEV"
+msgstr ""
+
+#: 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 ""
+
+#: 04060101.xhp#hd_id3149427.147.help.text
+msgctxt "04060101.xhp#hd_id3149427.147.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060101.xhp#par_id3148661.148.help.text
+msgid "DSTDEV(Database; DatabaseField; SearchCriteria)"
+msgstr ""
+
+#: 04060101.xhp#hd_id3153945.149.help.text
+#, fuzzy
+msgctxt "04060101.xhp#hd_id3153945.149.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060101.xhp#par_id3150630.151.help.text
+msgid "<item type=\"input\">=DSTDEV(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060101.xhp#hd_id3150429.153.help.text
+msgid "DSTDEVP"
+msgstr ""
+
+#: 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 ""
+
+#: 04060101.xhp#hd_id3145307.155.help.text
+msgctxt "04060101.xhp#hd_id3145307.155.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060101.xhp#par_id3149484.156.help.text
+msgid "DSTDEVP(Database; DatabaseField; SearchCriteria)"
+msgstr ""
+
+#: 04060101.xhp#hd_id3153322.157.help.text
+#, fuzzy
+msgctxt "04060101.xhp#hd_id3153322.157.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060101.xhp#par_id3148411.159.help.text
+msgid "<item type=\"input\">=DSTDEVP(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060101.xhp#hd_id3154794.161.help.text
+msgid "DSUM"
+msgstr ""
+
+#: 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 ""
+
+#: 04060101.xhp#hd_id3146128.163.help.text
+msgctxt "04060101.xhp#hd_id3146128.163.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060101.xhp#par_id3150989.164.help.text
+msgid "DSUM(Database; DatabaseField; SearchCriteria)"
+msgstr ""
+
+#: 04060101.xhp#hd_id3159079.165.help.text
+#, fuzzy
+msgctxt "04060101.xhp#hd_id3159079.165.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060101.xhp#par_id3151312.167.help.text
+msgid "<item type=\"input\">=DSUM(A1:E10;\"Distance to School\";A13:E14)</item>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060101.xhp#bm_id3155614.help.text
+msgid "<bookmark_value>DVAR function</bookmark_value> <bookmark_value>variances;based on samples</bookmark_value>"
+msgstr ""
+
+#: 04060101.xhp#hd_id3155614.170.help.text
+msgid "DVAR"
+msgstr ""
+
+#: 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 ""
+
+#: 04060101.xhp#hd_id3154825.172.help.text
+msgctxt "04060101.xhp#hd_id3154825.172.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060101.xhp#par_id3156138.173.help.text
+msgid "DVAR(Database; DatabaseField; SearchCriteria)"
+msgstr ""
+
+#: 04060101.xhp#hd_id3151257.174.help.text
+#, fuzzy
+msgctxt "04060101.xhp#hd_id3151257.174.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060101.xhp#par_id3153676.176.help.text
+msgid "<item type=\"input\">=DVAR(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060101.xhp#bm_id3153880.help.text
+msgid "<bookmark_value>DVARP function</bookmark_value> <bookmark_value>variances;based on populations</bookmark_value>"
+msgstr ""
+
+#: 04060101.xhp#hd_id3153880.178.help.text
+msgid "DVARP"
+msgstr ""
+
+#: 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 ""
+
+#: 04060101.xhp#hd_id3145774.180.help.text
+msgctxt "04060101.xhp#hd_id3145774.180.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060101.xhp#par_id3153776.181.help.text
+msgid "DVARP(Database; DatabaseField; SearchCriteria)"
+msgstr ""
+
+#: 04060101.xhp#hd_id3151110.182.help.text
+#, fuzzy
+msgctxt "04060101.xhp#hd_id3151110.182.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060101.xhp#par_id3147322.184.help.text
+msgid "<item type=\"input\">=DVARP(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr ""
+
+#: 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 ""
+
+#: 06030900.xhp#tit.help.text
+msgid "Refresh Traces"
+msgstr ""
+
+#: 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 ""
+
+#: 06030900.xhp#hd_id3152349.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/06030900.xhp\" name=\"Refresh Traces\">Refresh Traces</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 06030900.xhp#par_id3148798.3.help.text
+msgid "Detective arrows in the document are updated under the following circumstances:"
+msgstr ""
+
+#: 06030900.xhp#par_id3153192.4.help.text
+msgid "Starting <emph>Tools - Detective - Update Refresh Traces</emph>"
+msgstr ""
+
+#: 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 ""
+
+#: func_datedif.xhp#tit.help.text
+msgid "DATEDIF"
+msgstr ""
+
+#: func_datedif.xhp#bm_id3155511.help.text
+msgid "<bookmark_value>DATEDIF function</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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
+#, fuzzy
+msgctxt "func_datedif.xhp#hd_id3147477.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 12120000.xhp#hd_id3156347.1.help.text
+msgctxt "12120000.xhp#hd_id3156347.1.help.text"
+msgid "Validity"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 12090400.xhp#tit.help.text
+msgctxt "12090400.xhp#tit.help.text"
+msgid "Grouping"
+msgstr ""
+
+#: 12090400.xhp#par_idN1054D.help.text
+msgctxt "12090400.xhp#par_idN1054D.help.text"
+msgid "Grouping"
+msgstr ""
+
+#: 12090400.xhp#par_idN10551.help.text
+msgid "Grouping pivot tables displays the <emph>Grouping</emph> dialog for either values or dates."
+msgstr ""
+
+#: 12090400.xhp#par_idN10568.help.text
+msgctxt "12090400.xhp#par_idN10568.help.text"
+msgid "Start"
+msgstr ""
+
+#: 12090400.xhp#par_idN1056C.help.text
+msgid "Specifies the start of the grouping."
+msgstr ""
+
+#: 12090400.xhp#par_idN1056F.help.text
+msgctxt "12090400.xhp#par_idN1056F.help.text"
+msgid "Automatically"
+msgstr ""
+
+#: 12090400.xhp#par_idN10573.help.text
+msgid "Specifies whether to start grouping at the smallest value."
+msgstr ""
+
+#: 12090400.xhp#par_idN10576.help.text
+msgctxt "12090400.xhp#par_idN10576.help.text"
+msgid "Manually at"
+msgstr ""
+
+#: 12090400.xhp#par_idN1057A.help.text
+msgid "Specifies whether to enter the start value for grouping yourself."
+msgstr ""
+
+#: 12090400.xhp#par_idN1057D.help.text
+msgctxt "12090400.xhp#par_idN1057D.help.text"
+msgid "End"
+msgstr ""
+
+#: 12090400.xhp#par_idN10581.help.text
+msgid "Specifies the end of the grouping."
+msgstr ""
+
+#: 12090400.xhp#par_idN10584.help.text
+msgctxt "12090400.xhp#par_idN10584.help.text"
+msgid "Automatically"
+msgstr ""
+
+#: 12090400.xhp#par_idN10588.help.text
+msgid "Specifies whether to end grouping at the largest value."
+msgstr ""
+
+#: 12090400.xhp#par_idN1058B.help.text
+msgctxt "12090400.xhp#par_idN1058B.help.text"
+msgid "Manually at"
+msgstr ""
+
+#: 12090400.xhp#par_idN1058F.help.text
+msgid "Specifies whether to enter the end value for grouping yourself."
+msgstr ""
+
+#: 12090400.xhp#par_idN10592.help.text
+msgctxt "12090400.xhp#par_idN10592.help.text"
+msgid "Group by"
+msgstr ""
+
+#: 12090400.xhp#par_idN10596.help.text
+msgid "Specifies the value range by which every group's limits are calculated."
+msgstr ""
+
+#: 12090400.xhp#par_idN10599.help.text
+msgid "Number of days"
+msgstr ""
+
+#: 12090400.xhp#par_idN1059D.help.text
+msgid "In the case of grouping date values, specifies the number of days to group by."
+msgstr ""
+
+#: 12090400.xhp#par_idN105A0.help.text
+msgid "Intervals"
+msgstr ""
+
+#: 12090400.xhp#par_idN105A4.help.text
+msgid "In the case of grouping date values, specifies the intervals to group by."
+msgstr ""
+
+#: 12090400.xhp#par_idN105B2.help.text
+msgid "<embedvar href=\"text/scalc/guide/datapilot_grouping.xhp#datapilot_grouping\"/>"
+msgstr ""
+
+#: 12090101.xhp#tit.help.text
+msgctxt "12090101.xhp#tit.help.text"
+msgid "Select Data Source"
+msgstr ""
+
+#: 12090101.xhp#hd_id3143268.1.help.text
+msgctxt "12090101.xhp#hd_id3143268.1.help.text"
+msgid "Select Data Source"
+msgstr ""
+
+#: 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 ""
+
+#: 12090101.xhp#hd_id3154140.3.help.text
+msgctxt "12090101.xhp#hd_id3154140.3.help.text"
+msgid "Selection"
+msgstr ""
+
+#: 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 ""
+
+#: 12090101.xhp#hd_id3151041.5.help.text
+msgid "Database"
+msgstr ""
+
+#: 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 ""
+
+#: 12090101.xhp#hd_id3145364.7.help.text
+msgid "Data source"
+msgstr ""
+
+#: 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 ""
+
+#: 12090101.xhp#hd_id3147428.9.help.text
+msgctxt "12090101.xhp#hd_id3147428.9.help.text"
+msgid "Type"
+msgstr ""
+
+#: 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 ""
+
+#: 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/smath/01/06010000.xhp\" name=\"Каталог\">Каталог</link>"
+
+#: 12010100.xhp#tit.help.text
+msgctxt "12010100.xhp#tit.help.text"
+msgid "Options"
+msgstr ""
+
+#: 12010100.xhp#hd_id3154760.1.help.text
+msgctxt "12010100.xhp#hd_id3154760.1.help.text"
+msgid "Options"
+msgstr ""
+
+#: 12010100.xhp#hd_id3153379.3.help.text
+msgctxt "12010100.xhp#hd_id3153379.3.help.text"
+msgid "Contains column labels"
+msgstr ""
+
+#: 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 ""
+
+#: 12010100.xhp#hd_id3153970.5.help.text
+msgid "Insert or delete cells"
+msgstr ""
+
+#: 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 ""
+
+#: 12010100.xhp#hd_id3153768.7.help.text
+msgid "Keep formatting"
+msgstr ""
+
+#: 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 ""
+
+#: 12010100.xhp#hd_id3155856.9.help.text
+msgid "Don't save imported data"
+msgstr ""
+
+#: 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 ""
+
+#: 12010100.xhp#hd_id3147428.11.help.text
+msgid "Source:"
+msgstr ""
+
+#: 12010100.xhp#par_id3148576.12.help.text
+msgid "Displays information about the current database source and any existing operators."
+msgstr ""
+
+#: 12010100.xhp#hd_id3146976.13.help.text
+msgctxt "12010100.xhp#hd_id3146976.13.help.text"
+msgid "More <<"
+msgstr ""
+
+#: 12010100.xhp#par_id3149664.14.help.text
+msgctxt "12010100.xhp#par_id3149664.14.help.text"
+msgid "Hides the additional options."
+msgstr ""
+
+#: 12010000.xhp#tit.help.text
+msgctxt "12010000.xhp#tit.help.text"
+msgid "Define Database Range"
+msgstr ""
+
+#: 12010000.xhp#hd_id3157909.1.help.text
+msgctxt "12010000.xhp#hd_id3157909.1.help.text"
+msgid "Define Database Range"
+msgstr ""
+
+#: 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 ""
+
+#: 12010000.xhp#par_id3149456.5.help.text
+msgid "You can only select a rectangular cell range."
+msgstr ""
+
+#: 12010000.xhp#hd_id3156422.3.help.text
+msgctxt "12010000.xhp#hd_id3156422.3.help.text"
+msgid "Name"
+msgstr ""
+
+#: 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 ""
+
+#: 12010000.xhp#hd_id3147228.6.help.text
+msgctxt "12010000.xhp#hd_id3147228.6.help.text"
+msgid "Range"
+msgstr ""
+
+#: 12010000.xhp#par_id3150441.7.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_DBNAMES:ED_DBAREA\">Displays the selected cell range.</ahelp>"
+msgstr ""
+
+#: 12010000.xhp#hd_id3153188.10.help.text
+msgctxt "12010000.xhp#hd_id3153188.10.help.text"
+msgid "Add/Modify"
+msgstr ""
+
+#: 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 ""
+
+#: 12010000.xhp#hd_id3150010.12.help.text
+msgctxt "12010000.xhp#hd_id3150010.12.help.text"
+msgid "More >>"
+msgstr ""
+
+#: 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 ""
+
+#: func_weekday.xhp#tit.help.text
+msgid "WEEKDAY "
+msgstr ""
+
+#: func_weekday.xhp#bm_id3154925.help.text
+msgid "<bookmark_value>WEEKDAY function</bookmark_value>"
+msgstr ""
+
+#: func_weekday.xhp#hd_id3154925.136.help.text
+msgid "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">WEEKDAY</link></variable>"
+msgstr ""
+
+#: 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 ""
+
+#: func_weekday.xhp#hd_id3147217.138.help.text
+msgctxt "func_weekday.xhp#hd_id3147217.138.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: func_weekday.xhp#par_id3149033.139.help.text
+msgid "WEEKDAY(Number; Type)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: func_weekday.xhp#hd_id3153836.143.help.text
+#, fuzzy
+msgctxt "func_weekday.xhp#hd_id3153836.143.help.text"
+msgid "Examples"
+msgstr "Приклади:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: func_weekday.xhp#par_id3150575.147.help.text
+msgid "=WEEKDAY(NOW()) returns the number of the current day."
+msgstr ""
+
+#: 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 ""
+
+#: 12050000.xhp#tit.help.text
+msgctxt "12050000.xhp#tit.help.text"
+msgid "Subtotals"
+msgstr ""
+
+#: 12050000.xhp#hd_id3153822.1.help.text
+msgctxt "12050000.xhp#hd_id3153822.1.help.text"
+msgid "Subtotals"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 12050000.xhp#hd_id3163708.4.help.text
+msgctxt "12050000.xhp#hd_id3163708.4.help.text"
+msgid "Delete"
+msgstr ""
+
+#: 12050000.xhp#par_id3154125.5.help.text
+msgid "Deletes the subtotal rows in the selected area."
+msgstr ""
+
+#: 04010200.xhp#tit.help.text
+msgctxt "04010200.xhp#tit.help.text"
+msgid "Column Break"
+msgstr ""
+
+#: 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 ""
+
+#: 04010200.xhp#hd_id3155923.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04010200.xhp\" name=\"Column Break\">Column Break</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 04010200.xhp#par_id3145171.3.help.text
+msgid "The manual column break is indicated by a dark blue vertical line."
+msgstr ""
+
+#: 05080100.xhp#tit.help.text
+msgid "Define"
+msgstr "Визначити"
+
+#: 05080100.xhp#hd_id3145673.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/05080100.xhp\" name=\"Define\">Define</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: func_today.xhp#tit.help.text
+msgid "TODAY"
+msgstr ""
+
+#: func_today.xhp#bm_id3145659.help.text
+msgid "<bookmark_value>TODAY function</bookmark_value>"
+msgstr ""
+
+#: func_today.xhp#hd_id3145659.29.help.text
+msgid "<variable id=\"today\"><link href=\"text/scalc/01/func_today.xhp\">TODAY</link></variable>"
+msgstr ""
+
+#: 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 ""
+
+#: func_today.xhp#hd_id3154051.31.help.text
+msgctxt "func_today.xhp#hd_id3154051.31.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: func_today.xhp#par_id3153154.32.help.text
+msgid "TODAY()"
+msgstr ""
+
+#: func_today.xhp#par_id3154741.33.help.text
+msgid " TODAY is a function without arguments."
+msgstr ""
+
+#: func_today.xhp#hd_id3153627.34.help.text
+#, fuzzy
+msgctxt "func_today.xhp#hd_id3153627.34.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: func_today.xhp#par_id3156106.35.help.text
+msgid "<item type=\"input\">TODAY()</item> returns the current computer system date."
+msgstr ""
+
+#: 04060181.xhp#tit.help.text
+msgid "Statistical Functions Part One"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060181.xhp#hd_id3145632.2.help.text
+msgid "INTERCEPT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060181.xhp#hd_id3150374.4.help.text
+msgctxt "04060181.xhp#hd_id3150374.4.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060181.xhp#par_id3149718.5.help.text
+msgid "INTERCEPT(DataY; DataX)"
+msgstr ""
+
+#: 04060181.xhp#par_id3149947.6.help.text
+msgid " <emph>DataY</emph> is the dependent set of observations or data."
+msgstr ""
+
+#: 04060181.xhp#par_id3147412.7.help.text
+msgid " <emph>DataX</emph> is the independent set of observations or data."
+msgstr ""
+
+#: 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 ""
+
+#: 04060181.xhp#hd_id3157906.9.help.text
+#, fuzzy
+msgctxt "04060181.xhp#hd_id3157906.9.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060181.xhp#par_id3149013.11.help.text
+msgid " <item type=\"input\">=INTERCEPT(D3:D9;C3:C9)</item> = 2.15."
+msgstr ""
+
+#: 04060181.xhp#bm_id3148437.help.text
+msgid "<bookmark_value>COUNT function</bookmark_value> <bookmark_value>numbers;counting</bookmark_value>"
+msgstr ""
+
+#: 04060181.xhp#hd_id3148437.13.help.text
+msgctxt "04060181.xhp#hd_id3148437.13.help.text"
+msgid "COUNT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060181.xhp#hd_id3153930.15.help.text
+msgctxt "04060181.xhp#hd_id3153930.15.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060181.xhp#par_id3148585.16.help.text
+msgid "COUNT(Value1; Value2; ... Value30)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060181.xhp#hd_id3149254.18.help.text
+#, fuzzy
+msgctxt "04060181.xhp#hd_id3149254.18.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060181.xhp#bm_id3149729.help.text
+msgid "<bookmark_value>COUNTA function</bookmark_value> <bookmark_value>number of entries</bookmark_value>"
+msgstr ""
+
+#: 04060181.xhp#hd_id3149729.22.help.text
+msgctxt "04060181.xhp#hd_id3149729.22.help.text"
+msgid "COUNTA"
+msgstr ""
+
+#: 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 ""
+
+#: 04060181.xhp#hd_id3148573.24.help.text
+msgctxt "04060181.xhp#hd_id3148573.24.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060181.xhp#par_id3153111.25.help.text
+msgid "COUNTA(Value1; Value2; ... Value30)"
+msgstr ""
+
+#: 04060181.xhp#par_id3150001.26.help.text
+msgid " <emph>Value1; Value2, ...</emph> are 1 to 30 arguments representing the values to be counted."
+msgstr ""
+
+#: 04060181.xhp#hd_id3150334.27.help.text
+#, fuzzy
+msgctxt "04060181.xhp#hd_id3150334.27.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060181.xhp#bm_id3150267.help.text
+msgid "<bookmark_value>B function</bookmark_value> <bookmark_value>probabilities of samples with binomial distribution</bookmark_value>"
+msgstr ""
+
+#: 04060181.xhp#hd_id3150267.31.help.text
+msgctxt "04060181.xhp#hd_id3150267.31.help.text"
+msgid "B"
+msgstr ""
+
+#: 04060181.xhp#par_id3156061.32.help.text
+msgid "<ahelp hid=\"HID_FUNC_B\">Returns the probability of a sample with binomial distribution.</ahelp>"
+msgstr ""
+
+#: 04060181.xhp#hd_id3150659.33.help.text
+msgctxt "04060181.xhp#hd_id3150659.33.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060181.xhp#par_id3148392.34.help.text
+msgid "B(Trials; SP; T1; T2)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060181.xhp#par_id3145352.37.help.text
+msgid " <emph>T1</emph> defines the lower limit for the number of trials."
+msgstr ""
+
+#: 04060181.xhp#par_id3149538.38.help.text
+msgid " <emph>T2</emph> (optional) defines the upper limit for the number of trials."
+msgstr ""
+
+#: 04060181.xhp#hd_id3148768.39.help.text
+#, fuzzy
+msgctxt "04060181.xhp#hd_id3148768.39.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060181.xhp#par_id3149393.41.help.text
+msgid " <item type=\"input\">=B(10;1/6;2)</item> returns a probability of 29%."
+msgstr ""
+
+#: 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 ""
+
+#: 04060181.xhp#hd_id3158416.43.help.text
+msgid "RSQ"
+msgstr ""
+
+#: 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 ""
+
+#: 04060181.xhp#hd_id3152820.45.help.text
+msgctxt "04060181.xhp#hd_id3152820.45.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060181.xhp#par_id3155822.46.help.text
+msgid "RSQ(DataY; DataX)"
+msgstr ""
+
+#: 04060181.xhp#par_id3150470.47.help.text
+msgid " <emph>DataY</emph> is an array or range of data points."
+msgstr ""
+
+#: 04060181.xhp#par_id3153181.48.help.text
+msgid " <emph>DataX</emph> is an array or range of data points."
+msgstr ""
+
+#: 04060181.xhp#hd_id3156258.49.help.text
+#, fuzzy
+msgctxt "04060181.xhp#hd_id3156258.49.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060181.xhp#bm_id3145620.help.text
+msgid "<bookmark_value>BETAINV function</bookmark_value> <bookmark_value>cumulative probability density function;inverse of</bookmark_value>"
+msgstr ""
+
+#: 04060181.xhp#hd_id3145620.52.help.text
+msgid "BETAINV"
+msgstr ""
+
+#: 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 ""
+
+#: 04060181.xhp#hd_id3152479.54.help.text
+msgctxt "04060181.xhp#hd_id3152479.54.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060181.xhp#par_id3156300.55.help.text
+msgid "BETAINV(Number; Alpha; Beta; Start; End)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060181.xhp#par_idN109DF.help.text
+msgctxt "04060181.xhp#par_idN109DF.help.text"
+msgid " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+msgstr ""
+
+#: 04060181.xhp#hd_id3147077.61.help.text
+#, fuzzy
+msgctxt "04060181.xhp#hd_id3147077.61.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060181.xhp#par_id3146859.62.help.text
+msgid " <item type=\"input\">=BETAINV(0.5;5;10)</item> returns the value 0.33."
+msgstr ""
+
+#: 04060181.xhp#bm_id3156096.help.text
+msgid "<bookmark_value>BETADIST function</bookmark_value> <bookmark_value>cumulative probability density function;calculating</bookmark_value>"
+msgstr ""
+
+#: 04060181.xhp#hd_id3156096.64.help.text
+msgid "BETADIST"
+msgstr ""
+
+#: 04060181.xhp#par_id3150880.65.help.text
+msgid "<ahelp hid=\"HID_FUNC_BETAVERT\">Returns the beta function.</ahelp>"
+msgstr ""
+
+#: 04060181.xhp#hd_id3150762.66.help.text
+msgctxt "04060181.xhp#hd_id3150762.66.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060181.xhp#par_id3147571.67.help.text
+msgid "BETADIST(Number; Alpha; Beta; Start; End; Cumulative)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060181.xhp#par_idN10AB3.help.text
+msgctxt "04060181.xhp#par_idN10AB3.help.text"
+msgid " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+msgstr ""
+
+#: 04060181.xhp#hd_id3145649.73.help.text
+#, fuzzy
+msgctxt "04060181.xhp#hd_id3145649.73.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060181.xhp#par_id3156118.74.help.text
+msgid " <item type=\"input\">=BETADIST(0.75;3;4)</item> returns the value 0.96"
+msgstr ""
+
+#: 04060181.xhp#bm_id3143228.help.text
+msgid "<bookmark_value>BINOMDIST function</bookmark_value>"
+msgstr ""
+
+#: 04060181.xhp#hd_id3143228.76.help.text
+msgid "BINOMDIST"
+msgstr ""
+
+#: 04060181.xhp#par_id3146897.77.help.text
+msgid "<ahelp hid=\"HID_FUNC_BINOMVERT\">Returns the individual term binomial distribution probability.</ahelp>"
+msgstr ""
+
+#: 04060181.xhp#hd_id3149289.78.help.text
+msgctxt "04060181.xhp#hd_id3149289.78.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060181.xhp#par_id3156009.79.help.text
+msgid "BINOMDIST(X; Trials; SP; C)"
+msgstr ""
+
+#: 04060181.xhp#par_id3154304.80.help.text
+msgid " <emph>X</emph> is the number of successes in a set of trials."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060181.xhp#hd_id3151171.84.help.text
+#, fuzzy
+msgctxt "04060181.xhp#hd_id3151171.84.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060181.xhp#bm_id0119200902432928.help.text
+msgid "<bookmark_value>CHISQINV function</bookmark_value>"
+msgstr ""
+
+#: 04060181.xhp#hd_id0119200902421451.help.text
+msgid "CHISQINV"
+msgstr ""
+
+#: 04060181.xhp#par_id0119200902421449.help.text
+msgid "<ahelp hid=\".\">Returns the inverse of CHISQDIST.</ahelp>"
+msgstr ""
+
+#: 04060181.xhp#hd_id0119200902475241.help.text
+msgctxt "04060181.xhp#hd_id0119200902475241.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060181.xhp#bm_id3148835.help.text
+msgid "<bookmark_value>CHIINV function</bookmark_value>"
+msgstr ""
+
+#: 04060181.xhp#hd_id3148835.88.help.text
+msgid "CHIINV"
+msgstr ""
+
+#: 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 ""
+
+#: 04060181.xhp#hd_id3159157.90.help.text
+msgctxt "04060181.xhp#hd_id3159157.90.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060181.xhp#par_id3150504.91.help.text
+msgid "CHIINV(Number; DegreesFreedom)"
+msgstr ""
+
+#: 04060181.xhp#par_id3154898.92.help.text
+msgid " <emph>Number</emph> is the value of the error probability."
+msgstr ""
+
+#: 04060181.xhp#par_id3154294.93.help.text
+msgid " <emph>DegreesFreedom</emph> is the degrees of freedom of the experiment."
+msgstr ""
+
+#: 04060181.xhp#hd_id3154208.94.help.text
+#, fuzzy
+msgctxt "04060181.xhp#hd_id3154208.94.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060181.xhp#par_id3149763.95.help.text
+msgid " <item type=\"input\">=CHIINV(0.05;5)</item> returns 11.07."
+msgstr ""
+
+#: 04060181.xhp#par_id3159142.133.help.text
+msgid " <item type=\"input\">=CHIINV(0.02;5)</item> returns 13.39."
+msgstr ""
+
+#: 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 ""
+
+#: 04060181.xhp#bm_id3154260.help.text
+msgid "<bookmark_value>CHITEST function</bookmark_value>"
+msgstr ""
+
+#: 04060181.xhp#hd_id3154260.97.help.text
+msgid "CHITEST"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060181.xhp#hd_id3154280.99.help.text
+msgctxt "04060181.xhp#hd_id3154280.99.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060181.xhp#par_id3149162.100.help.text
+msgid "CHITEST(DataB; DataE)"
+msgstr ""
+
+#: 04060181.xhp#par_id3158421.101.help.text
+msgid " <emph>DataB</emph> is the array of the observations."
+msgstr ""
+
+#: 04060181.xhp#par_id3166453.102.help.text
+msgid " <emph>DataE</emph> is the range of the expected values."
+msgstr ""
+
+#: 04060181.xhp#hd_id3146946.103.help.text
+#, fuzzy
+msgctxt "04060181.xhp#hd_id3146946.103.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060181.xhp#par_id3154096.136.help.text
+msgid "Data_B (observed)"
+msgstr ""
+
+#: 04060181.xhp#par_id3152948.137.help.text
+msgid "Data_E (expected)"
+msgstr ""
+
+#: 04060181.xhp#par_id3152876.138.help.text
+msgctxt "04060181.xhp#par_id3152876.138.help.text"
+msgid "1"
+msgstr ""
+
+#: 04060181.xhp#par_id3159279.139.help.text
+msgid " <item type=\"input\">195</item> "
+msgstr ""
+
+#: 04060181.xhp#par_id3149105.140.help.text
+msgctxt "04060181.xhp#par_id3149105.140.help.text"
+msgid " <item type=\"input\">170</item> "
+msgstr ""
+
+#: 04060181.xhp#par_id3149922.141.help.text
+msgctxt "04060181.xhp#par_id3149922.141.help.text"
+msgid "2"
+msgstr ""
+
+#: 04060181.xhp#par_id3148621.142.help.text
+msgid " <item type=\"input\">151</item> "
+msgstr ""
+
+#: 04060181.xhp#par_id3148987.143.help.text
+msgctxt "04060181.xhp#par_id3148987.143.help.text"
+msgid " <item type=\"input\">170</item> "
+msgstr ""
+
+#: 04060181.xhp#par_id3149417.144.help.text
+msgctxt "04060181.xhp#par_id3149417.144.help.text"
+msgid "3"
+msgstr ""
+
+#: 04060181.xhp#par_id3148661.145.help.text
+msgid " <item type=\"input\">148</item> "
+msgstr ""
+
+#: 04060181.xhp#par_id3151128.146.help.text
+msgctxt "04060181.xhp#par_id3151128.146.help.text"
+msgid " <item type=\"input\">170</item> "
+msgstr ""
+
+#: 04060181.xhp#par_id3148467.147.help.text
+msgctxt "04060181.xhp#par_id3148467.147.help.text"
+msgid "4"
+msgstr ""
+
+#: 04060181.xhp#par_id3149237.148.help.text
+msgid " <item type=\"input\">189</item> "
+msgstr ""
+
+#: 04060181.xhp#par_id3145304.149.help.text
+msgctxt "04060181.xhp#par_id3145304.149.help.text"
+msgid " <item type=\"input\">170</item> "
+msgstr ""
+
+#: 04060181.xhp#par_id3149927.150.help.text
+msgctxt "04060181.xhp#par_id3149927.150.help.text"
+msgid "5"
+msgstr ""
+
+#: 04060181.xhp#par_id3150630.151.help.text
+msgid " <item type=\"input\">183</item> "
+msgstr ""
+
+#: 04060181.xhp#par_id3150423.152.help.text
+msgctxt "04060181.xhp#par_id3150423.152.help.text"
+msgid " <item type=\"input\">170</item> "
+msgstr ""
+
+#: 04060181.xhp#par_id3143275.153.help.text
+msgctxt "04060181.xhp#par_id3143275.153.help.text"
+msgid "6"
+msgstr ""
+
+#: 04060181.xhp#par_id3144750.154.help.text
+msgid " <item type=\"input\">154</item> "
+msgstr ""
+
+#: 04060181.xhp#par_id3153947.155.help.text
+msgctxt "04060181.xhp#par_id3153947.155.help.text"
+msgid " <item type=\"input\">170</item> "
+msgstr ""
+
+#: 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 ""
+
+#: 04060181.xhp#bm_id3148690.help.text
+msgid "<bookmark_value>CHIDIST function</bookmark_value>"
+msgstr ""
+
+#: 04060181.xhp#hd_id3148690.106.help.text
+msgid "CHIDIST"
+msgstr ""
+
+#: 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 ""
+
+#: 04060181.xhp#par_id3151316.157.help.text
+msgid "The probability determined by CHIDIST can also be determined by CHITEST."
+msgstr ""
+
+#: 04060181.xhp#hd_id3155123.108.help.text
+msgctxt "04060181.xhp#hd_id3155123.108.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060181.xhp#par_id3158439.109.help.text
+msgid "CHIDIST(Number; DegreesFreedom)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060181.xhp#par_id3155615.111.help.text
+msgid " <emph>DegreesFreedom</emph> are the degrees of freedom of the experiment."
+msgstr ""
+
+#: 04060181.xhp#hd_id3146787.112.help.text
+#, fuzzy
+msgctxt "04060181.xhp#hd_id3146787.112.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060181.xhp#par_id3145774.113.help.text
+msgid " <item type=\"input\">=CHIDIST(13.27; 5)</item> equals 0.02."
+msgstr ""
+
+#: 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 ""
+
+#: 04060181.xhp#bm_id0119200902231887.help.text
+msgid "<bookmark_value>CHISQDIST function</bookmark_value><bookmark_value>chi-square distribution</bookmark_value>"
+msgstr ""
+
+#: 04060181.xhp#hd_id0119200901583452.help.text
+msgid "CHISQDIST"
+msgstr ""
+
+#: 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 ""
+
+#: 04060181.xhp#hd_id0119200902395520.help.text
+msgctxt "04060181.xhp#hd_id0119200902395520.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060181.xhp#par_id0119200902395679.help.text
+msgid "CHISQDIST(Number; Degrees Of Freedom; Cumulative)"
+msgstr ""
+
+#: 04060181.xhp#par_id011920090239564.help.text
+msgid " <emph>Number</emph> is the number for which the function is to be calculated."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060181.xhp#bm_id3150603.help.text
+msgid "<bookmark_value>EXPONDIST function</bookmark_value> <bookmark_value>exponential distributions</bookmark_value>"
+msgstr ""
+
+#: 04060181.xhp#hd_id3150603.115.help.text
+msgid "EXPONDIST"
+msgstr ""
+
+#: 04060181.xhp#par_id3149563.116.help.text
+msgid "<ahelp hid=\"HID_FUNC_EXPONVERT\">Returns the exponential distribution.</ahelp>"
+msgstr ""
+
+#: 04060181.xhp#hd_id3153789.117.help.text
+msgctxt "04060181.xhp#hd_id3153789.117.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060181.xhp#par_id3150987.118.help.text
+msgid "EXPONDIST(Number; Lambda; C)"
+msgstr ""
+
+#: 04060181.xhp#par_id3154663.119.help.text
+msgid " <emph>Number</emph> is the value of the function."
+msgstr ""
+
+#: 04060181.xhp#par_id3154569.120.help.text
+msgid " <emph>Lambda</emph> is the parameter value."
+msgstr ""
+
+#: 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 ""
+
+#: 04060181.xhp#hd_id3146133.122.help.text
+#, fuzzy
+msgctxt "04060181.xhp#hd_id3146133.122.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060181.xhp#par_id3150357.123.help.text
+msgid " <item type=\"input\">=EXPONDIST(3;0.5;1)</item> returns 0.78."
+msgstr ""
+
+#: 04050100.xhp#tit.help.text
+msgid "Sheet from file"
+msgstr ""
+
+#: 04050100.xhp#par_idN105C1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04050100.xhp\">Sheet from file</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 04050100.xhp#par_idN105D1.help.text
+msgid "<ahelp hid=\"26275\">Inserts a sheet from a different spreadsheet file.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060185.xhp#tit.help.text
+msgid "Statistical Functions Part Five"
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#bm_id3155071.help.text
+msgid "<bookmark_value>RANK function</bookmark_value> <bookmark_value>numbers;determining ranks</bookmark_value>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3155071.2.help.text
+#, fuzzy
+msgid "RANK"
+msgstr "AND"
+
+#: 04060185.xhp#par_id3153976.3.help.text
+msgid "<ahelp hid=\"HID_FUNC_RANG\">Returns the rank of a number in a sample.</ahelp>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3159206.4.help.text
+msgctxt "04060185.xhp#hd_id3159206.4.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060185.xhp#par_id3153250.5.help.text
+msgid "RANK(Value; Data; Type)"
+msgstr ""
+
+#: 04060185.xhp#par_id3154543.6.help.text
+msgid " <emph>Value</emph> is the value, whose rank is to be determined."
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#par_id3150215.8.help.text
+msgid " <emph>Type</emph> (optional) is the sequence order."
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#par_id9996948.help.text
+msgid "Type = 1 means ascending from the first item of the range to the last."
+msgstr ""
+
+#: 04060185.xhp#hd_id3143223.9.help.text
+#, fuzzy
+msgctxt "04060185.xhp#hd_id3143223.9.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060185.xhp#bm_id3153556.help.text
+msgid "<bookmark_value>SKEW function</bookmark_value>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3153556.12.help.text
+msgid "SKEW"
+msgstr ""
+
+#: 04060185.xhp#par_id3153485.13.help.text
+msgid "<ahelp hid=\"HID_FUNC_SCHIEFE\">Returns the skewness of a distribution.</ahelp>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3154733.14.help.text
+msgctxt "04060185.xhp#hd_id3154733.14.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060185.xhp#par_id3151191.15.help.text
+msgid "SKEW(Number1; Number2; ...Number30)"
+msgstr ""
+
+#: 04060185.xhp#par_id3155757.16.help.text
+msgid " <emph>Number1, Number2...Number30</emph> are numerical values or ranges."
+msgstr ""
+
+#: 04060185.xhp#hd_id3153297.17.help.text
+#, fuzzy
+msgctxt "04060185.xhp#hd_id3153297.17.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3149051.20.help.text
+msgid "FORECAST"
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3151343.22.help.text
+msgctxt "04060185.xhp#hd_id3151343.22.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060185.xhp#par_id3147404.23.help.text
+msgid "FORECAST(Value; DataY; DataX)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#par_id3146325.25.help.text
+msgid " <emph>DataY</emph> is the array or range of known y's."
+msgstr ""
+
+#: 04060185.xhp#par_id3150536.26.help.text
+msgid " <emph>DataX</emph> is the array or range of known x's."
+msgstr ""
+
+#: 04060185.xhp#hd_id3147416.27.help.text
+#, fuzzy
+msgctxt "04060185.xhp#hd_id3147416.27.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3149143.30.help.text
+msgctxt "04060185.xhp#hd_id3149143.30.help.text"
+msgid "STDEV"
+msgstr ""
+
+#: 04060185.xhp#par_id3146888.31.help.text
+msgid "<ahelp hid=\"HID_FUNC_STABW\">Estimates the standard deviation based on a sample.</ahelp>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3146815.32.help.text
+msgctxt "04060185.xhp#hd_id3146815.32.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060185.xhp#par_id3149946.33.help.text
+msgid "STDEV(Number1; Number2; ...Number30)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3150650.35.help.text
+#, fuzzy
+msgctxt "04060185.xhp#hd_id3150650.35.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060185.xhp#bm_id3144745.help.text
+msgid "<bookmark_value>STDEVA function</bookmark_value>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3144745.186.help.text
+msgid "STDEVA"
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3148884.188.help.text
+msgctxt "04060185.xhp#hd_id3148884.188.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060185.xhp#par_id3147422.189.help.text
+msgid "STDEVA(Value1;Value2;...Value30)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3155829.191.help.text
+#, fuzzy
+msgctxt "04060185.xhp#hd_id3155829.191.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3149734.38.help.text
+msgctxt "04060185.xhp#hd_id3149734.38.help.text"
+msgid "STDEVP"
+msgstr ""
+
+#: 04060185.xhp#par_id3149187.39.help.text
+msgid "<ahelp hid=\"HID_FUNC_STABWN\">Calculates the standard deviation based on the entire population.</ahelp>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3154387.40.help.text
+msgctxt "04060185.xhp#hd_id3154387.40.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060185.xhp#par_id3154392.41.help.text
+msgid "STDEVP(Number1;Number2;...Number30)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3145591.43.help.text
+#, fuzzy
+msgctxt "04060185.xhp#hd_id3145591.43.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060185.xhp#par_id3153933.44.help.text
+msgid " <item type=\"input\">=STDEVP(A1:A50)</item> returns a standard deviation of the data referenced."
+msgstr ""
+
+#: 04060185.xhp#bm_id3154522.help.text
+msgid "<bookmark_value>STDEVPA function</bookmark_value>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3154522.194.help.text
+msgid "STDEVPA"
+msgstr ""
+
+#: 04060185.xhp#par_id3149549.195.help.text
+msgid "<ahelp hid=\"HID_FUNC_STABWNA\">Calculates the standard deviation based on the entire population.</ahelp>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3155950.196.help.text
+msgctxt "04060185.xhp#hd_id3155950.196.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060185.xhp#par_id3146851.197.help.text
+msgid "STDEVPA(Value1;Value2;...Value30)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3154506.199.help.text
+#, fuzzy
+msgctxt "04060185.xhp#hd_id3154506.199.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060185.xhp#par_id3145163.200.help.text
+msgid " <item type=\"input\">=STDEVPA(A1:A50)</item> returns the standard deviation of the data referenced."
+msgstr ""
+
+#: 04060185.xhp#bm_id3155928.help.text
+msgid "<bookmark_value>STANDARDIZE function</bookmark_value> <bookmark_value>converting;random variables, into normalized values</bookmark_value>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3155928.46.help.text
+msgid "STANDARDIZE"
+msgstr ""
+
+#: 04060185.xhp#par_id3149883.47.help.text
+msgid "<ahelp hid=\"HID_FUNC_STANDARDISIERUNG\">Converts a random variable to a normalized value.</ahelp>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3154330.48.help.text
+msgctxt "04060185.xhp#hd_id3154330.48.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060185.xhp#par_id3150132.49.help.text
+msgid "STANDARDIZE(Number; Mean; StDev)"
+msgstr ""
+
+#: 04060185.xhp#par_id3159139.50.help.text
+msgid " <emph>Number</emph> is the value to be standardized."
+msgstr ""
+
+#: 04060185.xhp#par_id3145241.51.help.text
+msgid " <emph>Mean</emph> is the arithmetic mean of the distribution."
+msgstr ""
+
+#: 04060185.xhp#par_id3148874.52.help.text
+msgid " <emph>StDev</emph> is the standard deviation of the distribution."
+msgstr ""
+
+#: 04060185.xhp#hd_id3145351.53.help.text
+#, fuzzy
+msgctxt "04060185.xhp#hd_id3145351.53.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060185.xhp#bm_id3157986.help.text
+msgid "<bookmark_value>NORMSINV function</bookmark_value> <bookmark_value>normal distribution;inverse of standard</bookmark_value>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3157986.56.help.text
+msgid "NORMSINV"
+msgstr ""
+
+#: 04060185.xhp#par_id3151282.57.help.text
+msgid "<ahelp hid=\"HID_FUNC_STANDNORMINV\">Returns the inverse of the standard normal cumulative distribution.</ahelp>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3153261.58.help.text
+msgctxt "04060185.xhp#hd_id3153261.58.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060185.xhp#par_id3154195.59.help.text
+msgid "NORMINV(Number)"
+msgstr ""
+
+#: 04060185.xhp#par_id3148772.60.help.text
+msgid " <emph>Number</emph> is the probability to which the inverse standard normal distribution is calculated."
+msgstr ""
+
+#: 04060185.xhp#hd_id3150934.61.help.text
+#, fuzzy
+msgctxt "04060185.xhp#hd_id3150934.61.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060185.xhp#par_id3149030.62.help.text
+msgid " <item type=\"input\">=NORMSINV(0.908789)</item> returns 1.3333."
+msgstr ""
+
+#: 04060185.xhp#bm_id3147538.help.text
+msgid "<bookmark_value>NORMSDIST function</bookmark_value> <bookmark_value>normal distribution;statistics</bookmark_value>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3147538.64.help.text
+msgid "NORMSDIST"
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#par_id8652302.help.text
+msgctxt "04060185.xhp#par_id8652302.help.text"
+msgid "It is GAUSS(x)=NORMSDIST(x)-0.5"
+msgstr ""
+
+#: 04060185.xhp#hd_id3155083.66.help.text
+msgctxt "04060185.xhp#hd_id3155083.66.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060185.xhp#par_id3158411.67.help.text
+msgid "NORMSDIST(Number)"
+msgstr ""
+
+#: 04060185.xhp#par_id3154950.68.help.text
+msgid " <emph>Number</emph> is the value to which the standard normal cumulative distribution is calculated."
+msgstr ""
+
+#: 04060185.xhp#hd_id3153228.69.help.text
+#, fuzzy
+msgctxt "04060185.xhp#hd_id3153228.69.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060185.xhp#bm_id3152592.help.text
+msgid "<bookmark_value>SLOPE function</bookmark_value>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3152592.72.help.text
+msgid "SLOPE"
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3154315.74.help.text
+msgctxt "04060185.xhp#hd_id3154315.74.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060185.xhp#par_id3149819.75.help.text
+msgid "SLOPE(DataY; DataX)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3146061.78.help.text
+#, fuzzy
+msgctxt "04060185.xhp#hd_id3146061.78.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060185.xhp#par_id3152480.79.help.text
+msgid " <item type=\"input\">=SLOPE(A1:A50;B1:B50)</item> "
+msgstr ""
+
+#: 04060185.xhp#bm_id3155836.help.text
+msgid "<bookmark_value>STEYX function</bookmark_value> <bookmark_value>standard errors;statistical functions</bookmark_value>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3155836.81.help.text
+msgid "STEYX"
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3147562.83.help.text
+msgctxt "04060185.xhp#hd_id3147562.83.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060185.xhp#par_id3151267.84.help.text
+msgid "STEYX(DataY; DataX)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3145204.87.help.text
+#, fuzzy
+msgctxt "04060185.xhp#hd_id3145204.87.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060185.xhp#par_id3156131.88.help.text
+msgid " <item type=\"input\">=STEXY(A1:A50;B1:B50)</item> "
+msgstr ""
+
+#: 04060185.xhp#bm_id3150873.help.text
+msgid "<bookmark_value>DEVSQ function</bookmark_value> <bookmark_value>sums;of squares of deviations</bookmark_value>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3150873.90.help.text
+msgid "DEVSQ"
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3156121.92.help.text
+msgctxt "04060185.xhp#hd_id3156121.92.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060185.xhp#par_id3146790.93.help.text
+msgid "DEVSQ(Number1; Number2; ...Number30)"
+msgstr ""
+
+#: 04060185.xhp#par_id3155995.94.help.text
+msgid " <emph>Number1, Number2, ...Number30</emph> numerical values or ranges representing a sample. "
+msgstr ""
+
+#: 04060185.xhp#hd_id3150254.95.help.text
+#, fuzzy
+msgctxt "04060185.xhp#hd_id3150254.95.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060185.xhp#par_id3149136.96.help.text
+msgid " <item type=\"input\">=DEVSQ(A1:A50)</item> "
+msgstr ""
+
+#: 04060185.xhp#bm_id3149579.help.text
+msgid "<bookmark_value>TINV function</bookmark_value> <bookmark_value>inverse of t-distribution</bookmark_value>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3149579.98.help.text
+msgid "TINV"
+msgstr ""
+
+#: 04060185.xhp#par_id3143232.99.help.text
+msgid "<ahelp hid=\"HID_FUNC_TINV\">Returns the inverse of the t-distribution.</ahelp>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3155101.100.help.text
+msgctxt "04060185.xhp#hd_id3155101.100.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060185.xhp#par_id3149289.101.help.text
+msgid "TINV(Number; DegreesFreedom)"
+msgstr ""
+
+#: 04060185.xhp#par_id3154070.102.help.text
+msgid " <emph>Number</emph> is the probability associated with the two-tailed t-distribution."
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3153885.104.help.text
+#, fuzzy
+msgctxt "04060185.xhp#hd_id3153885.104.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060185.xhp#par_id3156010.105.help.text
+msgid " <item type=\"input\">=TINV(0.1;6)</item> returns 1.94"
+msgstr ""
+
+#: 04060185.xhp#bm_id3154129.help.text
+msgid "<bookmark_value>TTEST function</bookmark_value>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3154129.107.help.text
+msgid "TTEST"
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3147257.109.help.text
+msgctxt "04060185.xhp#hd_id3147257.109.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060185.xhp#par_id3151175.110.help.text
+msgid "TTEST(Data1; Data2; Mode; Type)"
+msgstr ""
+
+#: 04060185.xhp#par_id3149202.111.help.text
+msgid " <emph>Data1</emph> is the dependent array or range of data for the first record."
+msgstr ""
+
+#: 04060185.xhp#par_id3145666.112.help.text
+msgid " <emph>Data2</emph> is the dependent array or range of data for the second record."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3159342.115.help.text
+#, fuzzy
+msgctxt "04060185.xhp#hd_id3159342.115.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060185.xhp#par_id3150119.116.help.text
+msgid " <item type=\"input\">=TTEST(A1:A50;B1:B50;2;2)</item> "
+msgstr ""
+
+#: 04060185.xhp#bm_id3154930.help.text
+msgid "<bookmark_value>TDIST function</bookmark_value> <bookmark_value>t-distribution</bookmark_value>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3154930.118.help.text
+msgid "TDIST"
+msgstr ""
+
+#: 04060185.xhp#par_id3153372.119.help.text
+msgid "<ahelp hid=\"HID_FUNC_TVERT\">Returns the t-distribution.</ahelp>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3149911.120.help.text
+msgctxt "04060185.xhp#hd_id3149911.120.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060185.xhp#par_id3150521.121.help.text
+msgid "TDIST(Number; DegreesFreedom; Mode)"
+msgstr ""
+
+#: 04060185.xhp#par_id3146991.122.help.text
+msgid " <emph>Number</emph> is the value for which the t-distribution is calculated."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3159150.125.help.text
+#, fuzzy
+msgctxt "04060185.xhp#hd_id3159150.125.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060185.xhp#par_id3149773.126.help.text
+msgid " <item type=\"input\">=TDIST(12;5;1)</item> "
+msgstr ""
+
+#: 04060185.xhp#bm_id3153828.help.text
+msgid "<bookmark_value>VAR function</bookmark_value> <bookmark_value>variances</bookmark_value>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3153828.128.help.text
+msgctxt "04060185.xhp#hd_id3153828.128.help.text"
+msgid "VAR"
+msgstr ""
+
+#: 04060185.xhp#par_id3159165.129.help.text
+msgid "<ahelp hid=\"HID_FUNC_VARIANZ\">Estimates the variance based on a sample.</ahelp>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3154286.130.help.text
+msgctxt "04060185.xhp#hd_id3154286.130.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060185.xhp#par_id3153054.131.help.text
+msgid "VAR(Number1; Number2; ...Number30)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3147233.133.help.text
+#, fuzzy
+msgctxt "04060185.xhp#hd_id3147233.133.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060185.xhp#par_id3153575.134.help.text
+msgid " <item type=\"input\">=VAR(A1:A50)</item> "
+msgstr ""
+
+#: 04060185.xhp#bm_id3151045.help.text
+msgid "<bookmark_value>VARA function</bookmark_value>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3151045.202.help.text
+msgid "VARA"
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3149176.204.help.text
+msgctxt "04060185.xhp#hd_id3149176.204.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060185.xhp#par_id3149999.205.help.text
+msgid "VARA(Value1; Value2; ...Value30)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3149160.207.help.text
+#, fuzzy
+msgctxt "04060185.xhp#hd_id3149160.207.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060185.xhp#par_id3154279.208.help.text
+msgid " <item type=\"input\">=VARA(A1:A50)</item> "
+msgstr ""
+
+#: 04060185.xhp#bm_id3166441.help.text
+msgid "<bookmark_value>VARP function</bookmark_value>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3166441.136.help.text
+msgctxt "04060185.xhp#hd_id3166441.136.help.text"
+msgid "VARP"
+msgstr ""
+
+#: 04060185.xhp#par_id3159199.137.help.text
+msgid "<ahelp hid=\"HID_FUNC_VARIANZEN\">Calculates a variance based on the entire population.</ahelp>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3150706.138.help.text
+msgctxt "04060185.xhp#hd_id3150706.138.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060185.xhp#par_id3147282.139.help.text
+msgid "VARP(Number1; Number2; ...Number30)"
+msgstr ""
+
+#: 04060185.xhp#par_id3149793.140.help.text
+msgid " <emph>Number1, Number2, ...Number30</emph> are numerical values or ranges representing an entire population."
+msgstr ""
+
+#: 04060185.xhp#hd_id3152939.141.help.text
+#, fuzzy
+msgctxt "04060185.xhp#hd_id3152939.141.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060185.xhp#par_id3153385.142.help.text
+msgid " <item type=\"input\">=VARP(A1:A50)</item> "
+msgstr ""
+
+#: 04060185.xhp#bm_id3153688.help.text
+msgid "<bookmark_value>VARPA function</bookmark_value>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3153688.210.help.text
+msgid "VARPA"
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3152880.212.help.text
+msgctxt "04060185.xhp#hd_id3152880.212.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060185.xhp#par_id3149967.213.help.text
+msgid "VARPA(Value1; Value2; ...Value30)"
+msgstr ""
+
+#: 04060185.xhp#par_id3149920.214.help.text
+msgid " <emph>Value1,value2,...Value30</emph> are values or ranges representing an entire population."
+msgstr ""
+
+#: 04060185.xhp#hd_id3154862.215.help.text
+#, fuzzy
+msgctxt "04060185.xhp#hd_id3154862.215.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060185.xhp#par_id3156203.216.help.text
+msgid " <item type=\"input\">=VARPA(A1:A50)</item> "
+msgstr ""
+
+#: 04060185.xhp#bm_id3154599.help.text
+msgid "<bookmark_value>PERMUT function</bookmark_value> <bookmark_value>number of permutations</bookmark_value>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3154599.144.help.text
+msgid "PERMUT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3149422.146.help.text
+msgctxt "04060185.xhp#hd_id3149422.146.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060185.xhp#par_id3148466.147.help.text
+msgid "PERMUT(Count1; Count2)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3153351.150.help.text
+#, fuzzy
+msgctxt "04060185.xhp#hd_id3153351.150.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060185.xhp#bm_id3143276.help.text
+msgid "<bookmark_value>PERMUTATIONA function</bookmark_value>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3143276.153.help.text
+msgid "PERMUTATIONA"
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3145598.155.help.text
+msgctxt "04060185.xhp#hd_id3145598.155.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060185.xhp#par_id3149298.156.help.text
+msgid "PERMUTATIONA(Count1; Count2)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3151382.159.help.text
+#, fuzzy
+msgctxt "04060185.xhp#hd_id3151382.159.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060185.xhp#par_id3153949.160.help.text
+msgid "How often can 2 objects be selected from a total of 11 objects?"
+msgstr ""
+
+#: 04060185.xhp#par_id3149233.161.help.text
+msgid " <item type=\"input\">=PERMUTATIONA(11;2)</item> returns 121."
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#bm_id3152952.help.text
+msgid "<bookmark_value>PROB function</bookmark_value>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3152952.164.help.text
+msgid "PROB"
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3146810.166.help.text
+msgctxt "04060185.xhp#hd_id3146810.166.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060185.xhp#par_id3147330.167.help.text
+msgid "PROB(Data; Probability; Start; End)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#par_id3156334.169.help.text
+msgid " <emph>Probability</emph> is the array or range of the corresponding probabilities."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060185.xhp#hd_id3147574.172.help.text
+#, fuzzy
+msgctxt "04060185.xhp#hd_id3147574.172.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060185.xhp#bm_id3150941.help.text
+msgid "<bookmark_value>WEIBULL function</bookmark_value>"
+msgstr ""
+
+#: 04060185.xhp#hd_id3150941.175.help.text
+msgid "WEIBULL"
+msgstr ""
+
+#: 04060185.xhp#par_id3154916.176.help.text
+msgid "<ahelp hid=\"HID_FUNC_WEIBULL\">Returns the values of the Weibull distribution.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060185.xhp#par_id0305200911372777.help.text
+msgid "If C is 0, WEIBULL calculates the probability density function."
+msgstr ""
+
+#: 04060185.xhp#par_id0305200911372743.help.text
+msgid "If C is 1, WEIBULL calculates the cumulative distribution function."
+msgstr ""
+
+#: 04060185.xhp#hd_id3159393.177.help.text
+msgctxt "04060185.xhp#hd_id3159393.177.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060185.xhp#par_id3154478.178.help.text
+msgid "WEIBULL(Number; Alpha; Beta; C)"
+msgstr ""
+
+#: 04060185.xhp#par_id3151317.179.help.text
+msgid " <emph>Number</emph> is the value at which to calculate the Weibull distribution."
+msgstr ""
+
+#: 04060185.xhp#par_id3158436.180.help.text
+msgid " <emph>Alpha </emph>is the shape parameter of the Weibull distribution."
+msgstr ""
+
+#: 04060185.xhp#par_id3154668.181.help.text
+msgid " <emph>Beta</emph> is the scale parameter of the Weibull distribution."
+msgstr ""
+
+#: 04060185.xhp#par_id3154825.182.help.text
+msgid " <emph>C</emph> indicates the type of function."
+msgstr ""
+
+#: 04060185.xhp#hd_id3153794.183.help.text
+#, fuzzy
+msgctxt "04060185.xhp#hd_id3153794.183.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060185.xhp#par_id3146077.184.help.text
+msgid " <item type=\"input\">=WEIBULL(2;1;1;1)</item> returns 0.86."
+msgstr ""
+
+#: 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 ""
+
+#: 04070000.xhp#hd_id3153951.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 04070000.xhp#hd_id3153878.3.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Define\">Define</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 04070000.xhp#hd_id3146969.4.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04070200.xhp\" name=\"Insert\">Insert</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 04070000.xhp#hd_id3155764.5.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04070300.xhp\" name=\"Apply\">Apply</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 04070000.xhp#hd_id3156382.6.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04070400.xhp\" name=\"Labels\">Labels</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 03090000.xhp#tit.help.text
+msgid "Formula Bar"
+msgstr "Панель формул"
+
+#: 03090000.xhp#bm_id3147264.help.text
+msgid "<bookmark_value>formula bar;spreadsheets</bookmark_value><bookmark_value>spreadsheets; formula bar</bookmark_value>"
+msgstr ""
+
+#: 03090000.xhp#hd_id3147264.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/03090000.xhp\" name=\"Formula Bar\">Formula Bar</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 03090000.xhp#par_id3154686.4.help.text
+msgid "To hide the Formula Bar, unmark the menu item."
+msgstr ""
+
+#: 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 ""
+
+#: 04010100.xhp#tit.help.text
+msgctxt "04010100.xhp#tit.help.text"
+msgid "Row Break"
+msgstr ""
+
+#: 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 ""
+
+#: 04010100.xhp#hd_id3153821.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04010100.xhp\" name=\"Row Break\">Row Break</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 04010100.xhp#par_id3156422.3.help.text
+msgid "The manual row break is indicated by a dark blue horizontal line."
+msgstr ""
+
+#: 02190200.xhp#tit.help.text
+msgctxt "02190200.xhp#tit.help.text"
+msgid "Column Break"
+msgstr ""
+
+#: 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 ""
+
+#: 02190200.xhp#hd_id3151384.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/02190200.xhp\" name=\"Column Break\">Column Break</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 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 ""
+
+#: 02140000.xhp#tit.help.text
+msgid "Fill"
+msgstr ""
+
+#: 02140000.xhp#bm_id8473769.help.text
+msgid "<bookmark_value>filling;selection lists</bookmark_value> <bookmark_value>selection lists;filling cells</bookmark_value>"
+msgstr ""
+
+#: 02140000.xhp#hd_id3153876.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/02140000.xhp\" name=\"Fill\">Fill</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 02140000.xhp#par_id3156285.2.help.text
+msgid "<ahelp hid=\".\">Automatically fills cells with content.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 02140000.xhp#hd_id3149207.7.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/02140500.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 02140000.xhp#hd_id3155111.8.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/02140600.xhp\" name=\"Rows\">Series</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 02140000.xhp#par_id3152994.3.help.text
+msgid "<emph>Filling cells using context menus:</emph>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02140000.xhp#par_id3148699.6.help.text
+msgid "Click one of the listed entries to copy it to the cell."
+msgstr ""
+
+#: 12090106.xhp#tit.help.text
+msgctxt "12090106.xhp#tit.help.text"
+msgid "Data Field Options"
+msgstr ""
+
+#: 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>текст; вставка малюнків у</bookmark_value><bookmark_value>зображення; вставка у текст</bookmark_value><bookmark_value>вставка; малюнки</bookmark_value><bookmark_value>малюнки; параметри вставки</bookmark_value>"
+
+#: 12090106.xhp#par_idN10542.help.text
+msgctxt "12090106.xhp#par_idN10542.help.text"
+msgid "Data Field Options"
+msgstr ""
+
+#: 12090106.xhp#par_idN10546.help.text
+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 ""
+
+#: 12090106.xhp#par_idN10557.help.text
+msgctxt "12090106.xhp#par_idN10557.help.text"
+msgid "Sort by"
+msgstr ""
+
+#: 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 ""
+
+#: 12090106.xhp#par_idN1055E.help.text
+msgctxt "12090106.xhp#par_idN1055E.help.text"
+msgid "Ascending"
+msgstr ""
+
+#: 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 ""
+
+#: 12090106.xhp#par_idN10565.help.text
+msgctxt "12090106.xhp#par_idN10565.help.text"
+msgid "Descending"
+msgstr ""
+
+#: 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 ""
+
+#: 12090106.xhp#par_idN1056C.help.text
+msgid "Manual"
+msgstr ""
+
+#: 12090106.xhp#par_idN10570.help.text
+msgid "<ahelp hid=\"1495384582\">Sorts values alphabetically.</ahelp>"
+msgstr ""
+
+#: 12090106.xhp#par_idN10585.help.text
+msgid "Display options"
+msgstr ""
+
+#: 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 ""
+
+#: 12090106.xhp#par_idN1058C.help.text
+msgctxt "12090106.xhp#par_idN1058C.help.text"
+msgid "Layout"
+msgstr ""
+
+#: 12090106.xhp#par_idN10590.help.text
+msgid "<ahelp hid=\"1495387654\">Select the layout mode for the field in the list box.</ahelp>"
+msgstr ""
+
+#: 12090106.xhp#par_idN10593.help.text
+msgid "Empty line after each item"
+msgstr ""
+
+#: 12090106.xhp#par_idN10597.help.text
+msgid "<ahelp hid=\"1495385090\">Adds an empty row after the data for each item in the pivot table.</ahelp>"
+msgstr ""
+
+#: 12090106.xhp#par_idN1059A.help.text
+msgid "Show automatically"
+msgstr ""
+
+#: 12090106.xhp#par_idN1059E.help.text
+msgid "Displays the top or bottom nn items when you sort by a specified field."
+msgstr ""
+
+#: 12090106.xhp#par_idN105A1.help.text
+msgctxt "12090106.xhp#par_idN105A1.help.text"
+msgid "Show"
+msgstr ""
+
+#: 12090106.xhp#par_idN105A5.help.text
+msgid "<ahelp hid=\"1495385091\">Turns on the automatic show feature.</ahelp>"
+msgstr ""
+
+#: 12090106.xhp#par_idN105A8.help.text
+msgid "items"
+msgstr ""
+
+#: 12090106.xhp#par_idN105AC.help.text
+msgid "<ahelp hid=\"1495390209\">Enter the maximum number of items that you want to show automatically.</ahelp>"
+msgstr ""
+
+#: 12090106.xhp#par_idN105AF.help.text
+msgid "From"
+msgstr ""
+
+#: 12090106.xhp#par_idN105B3.help.text
+msgid "<ahelp hid=\"1495387655\">Shows the top or bottom items in the specified sort order.</ahelp>"
+msgstr ""
+
+#: 12090106.xhp#par_idN105B6.help.text
+msgid "Using field"
+msgstr ""
+
+#: 12090106.xhp#par_idN105BA.help.text
+msgid "<ahelp hid=\"1495387656\">Select the data field that you want to sort the data by.</ahelp>"
+msgstr ""
+
+#: 12090106.xhp#par_idN105BD.help.text
+msgid "Hide items"
+msgstr ""
+
+#: 12090106.xhp#par_idN105C1.help.text
+msgid "<ahelp hid=\"59010\">Select the items that you want to hide from the calculations.</ahelp>"
+msgstr ""
+
+#: 12090106.xhp#par_idN105C4.help.text
+msgid "Hierarchy"
+msgstr ""
+
+#: 12090106.xhp#par_idN105C8.help.text
+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 ""
+
+#: 04070200.xhp#tit.help.text
+msgctxt "04070200.xhp#tit.help.text"
+msgid "Insert Name"
+msgstr ""
+
+#: 04070200.xhp#bm_id3153195.help.text
+msgid "<bookmark_value>cell ranges; inserting named ranges</bookmark_value><bookmark_value>inserting; cell ranges</bookmark_value>"
+msgstr ""
+
+#: 04070200.xhp#hd_id3153195.1.help.text
+msgctxt "04070200.xhp#hd_id3153195.1.help.text"
+msgid "Insert Name"
+msgstr ""
+
+#: 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 ""
+
+#: 04070200.xhp#par_id3149412.7.help.text
+msgid "You can only insert a cell area after having defined a name for the area."
+msgstr ""
+
+#: 04070200.xhp#hd_id3153160.3.help.text
+msgid "Insert name "
+msgstr ""
+
+#: 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 ""
+
+#: 04070200.xhp#hd_id3153418.5.help.text
+msgid "Insert All"
+msgstr ""
+
+#: 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 ""
+
+#: 12120200.xhp#tit.help.text
+msgid "Input Help"
+msgstr ""
+
+#: 12120200.xhp#hd_id3156280.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12120200.xhp\" name=\"Input Help\">Input Help</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 12120200.xhp#hd_id3146986.3.help.text
+msgid "Show input help when cell is selected"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 12120200.xhp#hd_id3147394.6.help.text
+msgctxt "12120200.xhp#hd_id3147394.6.help.text"
+msgid "Contents"
+msgstr ""
+
+#: 12120200.xhp#hd_id3149582.8.help.text
+msgctxt "12120200.xhp#hd_id3149582.8.help.text"
+msgid "Title"
+msgstr ""
+
+#: 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 ""
+
+#: 12120200.xhp#hd_id3149121.10.help.text
+msgid "Input help"
+msgstr ""
+
+#: 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 ""
+
+#: 02210000.xhp#tit.help.text
+msgctxt "02210000.xhp#tit.help.text"
+msgid "Selecting Sheets"
+msgstr ""
+
+#: 02210000.xhp#hd_id3156023.5.help.text
+msgctxt "02210000.xhp#hd_id3156023.5.help.text"
+msgid "Selecting Sheets"
+msgstr ""
+
+#: 02210000.xhp#par_id3147265.1.help.text
+msgid "<variable id=\"tabellenauswaehlen\"><ahelp hid=\".uno:SelectTables\" visibility=\"visible\">Selects multiple sheets.</ahelp></variable>"
+msgstr ""
+
+#: 02210000.xhp#hd_id3125863.2.help.text
+msgid "Selected Sheets"
+msgstr ""
+
+#: 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 ""
+
+#: 02140400.xhp#tit.help.text
+msgctxt "02140400.xhp#tit.help.text"
+msgid "Left"
+msgstr ""
+
+#: 02140400.xhp#hd_id3153896.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/02140400.xhp\" name=\"Left\">Left</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 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 ""
+
+#: 12090100.xhp#tit.help.text
+msgctxt "12090100.xhp#tit.help.text"
+msgid "Select Source"
+msgstr ""
+
+#: 12090100.xhp#hd_id3153663.1.help.text
+msgctxt "12090100.xhp#hd_id3153663.1.help.text"
+msgid "Select Source"
+msgstr ""
+
+#: 12090100.xhp#par_id3145119.2.help.text
+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 ""
+
+#: 12090100.xhp#hd_id3154760.5.help.text
+msgctxt "12090100.xhp#hd_id3154760.5.help.text"
+msgid "Selection"
+msgstr ""
+
+#: 12090100.xhp#par_id3150543.6.help.text
+msgid "Select a data source for the pivot table."
+msgstr ""
+
+#: 12090100.xhp#hd_id3148799.7.help.text
+msgid "Current Selection"
+msgstr ""
+
+#: 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=\".\">Панель \"Таблиця даних\" призначена для керування представленням даних. </ahelp>"
+
+#: 12090100.xhp#par_id3150011.13.help.text
+msgid "The data columns in the pivot table use the same number format as the first data row in the current selection."
+msgstr ""
+
+#: 12090100.xhp#hd_id3147348.9.help.text
+msgid "Data source registered in $[officename]"
+msgstr ""
+
+#: 12090100.xhp#par_id3145271.10.help.text
+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 ""
+
+#: 12090100.xhp#hd_id3146119.11.help.text
+msgid "External source/interface"
+msgstr ""
+
+#: 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=\".\">Відкриває діалогове вікно \"Міжсимвольний інтервал для текстового ефекту\", де можна ввести нове значення для міжсимвольного інтервалу текстового ефекту.</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/smath/01/06010000.xhp\" name=\"Каталог\">Каталог</link>"
+
+#: 12050200.xhp#tit.help.text
+msgctxt "12050200.xhp#tit.help.text"
+msgid "Options"
+msgstr ""
+
+#: 12050200.xhp#bm_id3154758.help.text
+msgid "<bookmark_value>subtotals; sorting options</bookmark_value>"
+msgstr ""
+
+#: 12050200.xhp#hd_id3154758.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12050200.xhp\" name=\"Options\">Options</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 12050200.xhp#hd_id3156422.3.help.text
+msgid "Page break between groups"
+msgstr ""
+
+#: 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 ""
+
+#: 12050200.xhp#hd_id3146985.5.help.text
+msgctxt "12050200.xhp#hd_id3146985.5.help.text"
+msgid "Case sensitive"
+msgstr ""
+
+#: 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 ""
+
+#: 12050200.xhp#hd_id3151119.7.help.text
+msgid "Pre-sort area according to groups"
+msgstr ""
+
+#: 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 ""
+
+#: 12050200.xhp#hd_id3153951.9.help.text
+msgctxt "12050200.xhp#hd_id3153951.9.help.text"
+msgid "Sort"
+msgstr ""
+
+#: 12050200.xhp#hd_id3145252.11.help.text
+msgid "Include formats"
+msgstr ""
+
+#: 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 ""
+
+#: 12050200.xhp#hd_id3155418.13.help.text
+msgid "Custom sort order"
+msgstr ""
+
+#: 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 ""
+
+#: 12050200.xhp#hd_id3149121.15.help.text
+msgctxt "12050200.xhp#hd_id3149121.15.help.text"
+msgid "Ascending"
+msgstr ""
+
+#: 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 ""
+
+#: 12050200.xhp#hd_id3155443.17.help.text
+msgctxt "12050200.xhp#hd_id3155443.17.help.text"
+msgid "Descending"
+msgstr ""
+
+#: 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 ""
+
+#: 05070500.xhp#tit.help.text
+msgctxt "05070500.xhp#tit.help.text"
+msgid "Sheet"
+msgstr ""
+
+#: 05070500.xhp#bm_id3150542.help.text
+msgid "<bookmark_value>pages; order when printing</bookmark_value><bookmark_value>printing; page order</bookmark_value>"
+msgstr ""
+
+#: 05070500.xhp#hd_id3156329.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/05070500.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 05070500.xhp#hd_id3150542.3.help.text
+msgctxt "05070500.xhp#hd_id3150542.3.help.text"
+msgid "Print"
+msgstr ""
+
+#: 05070500.xhp#par_id3125863.4.help.text
+msgid "Defines which elements of the spreadsheet are to be printed."
+msgstr ""
+
+#: 05070500.xhp#hd_id3151041.5.help.text
+msgid "Column and row headers"
+msgstr ""
+
+#: 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 ""
+
+#: 05070500.xhp#hd_id3150439.7.help.text
+msgid "Grid"
+msgstr "Сітка"
+
+#: 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 ""
+
+#: 05070500.xhp#hd_id3145750.9.help.text
+msgctxt "05070500.xhp#hd_id3145750.9.help.text"
+msgid "Comments"
+msgstr ""
+
+#: 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 ""
+
+#: 05070500.xhp#hd_id3154944.11.help.text
+msgid "Objects/graphics"
+msgstr ""
+
+#: 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 ""
+
+#: 05070500.xhp#hd_id3149377.13.help.text
+msgid "Charts"
+msgstr ""
+
+#: 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 ""
+
+#: 05070500.xhp#hd_id3153418.15.help.text
+msgid "Drawing Objects"
+msgstr ""
+
+#: 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 ""
+
+#: 05070500.xhp#hd_id3150330.17.help.text
+#, fuzzy
+msgctxt "05070500.xhp#hd_id3150330.17.help.text"
+msgid "Formulas"
+msgstr "Формула"
+
+#: 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 ""
+
+#: 05070500.xhp#hd_id3156385.19.help.text
+msgid "Zero Values"
+msgstr ""
+
+#: 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 ""
+
+#: 05070500.xhp#hd_id3154022.21.help.text
+msgid "Page Order"
+msgstr ""
+
+#: 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 ""
+
+#: 05070500.xhp#hd_id3152580.23.help.text
+msgid "Top to bottom, then right"
+msgstr ""
+
+#: 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 ""
+
+#: 05070500.xhp#hd_id3150786.25.help.text
+msgid "Left to right, then down"
+msgstr ""
+
+#: 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 ""
+
+#: 05070500.xhp#hd_id3150887.27.help.text
+msgid "First page number"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 05070500.xhp#hd_id3146978.29.help.text
+msgid "Scale"
+msgstr ""
+
+#: 05070500.xhp#par_id3149408.30.help.text
+msgid "Defines a page scale for the printed spreadsheet."
+msgstr ""
+
+#: 05070500.xhp#par_idN1096D.help.text
+msgid "Scaling mode"
+msgstr ""
+
+#: 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 ""
+
+#: 05070500.xhp#hd_id3155089.31.help.text
+msgid "Reduce/enlarge printout"
+msgstr ""
+
+#: 05070500.xhp#par_id3159171.32.help.text
+msgid "Specifies a scaling factor to scale all printed pages."
+msgstr ""
+
+#: 05070500.xhp#par_idN1099A.help.text
+msgid "Scaling factor"
+msgstr ""
+
+#: 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 ""
+
+#: 05070500.xhp#par_idN109B2.help.text
+msgid "Fit print range(s) to width/height"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 05070500.xhp#par_idN109C3.help.text
+msgid "If you clear both boxes, this will result in a scaling factor of 100%."
+msgstr ""
+
+#: 05070500.xhp#par_idN109CE.help.text
+msgid "Width in pages"
+msgstr ""
+
+#: 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 ""
+
+#: 05070500.xhp#par_idN109E8.help.text
+msgid "Height in pages"
+msgstr ""
+
+#: 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 ""
+
+#: 05070500.xhp#hd_id3148868.33.help.text
+msgid "Fit print range(s) on number of pages"
+msgstr ""
+
+#: 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 ""
+
+#: 05070500.xhp#par_idN10A26.help.text
+msgid "Number of pages"
+msgstr ""
+
+#: 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 ""
+
+#: 05030000.xhp#tit.help.text
+msgctxt "05030000.xhp#tit.help.text"
+msgid "Row"
+msgstr ""
+
+#: 05030000.xhp#hd_id3147228.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/05030000.xhp\" name=\"Row\">Row</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 05030000.xhp#par_id3154685.2.help.text
+msgid "<ahelp hid=\".\">Sets the row height and hides or shows selected rows.</ahelp>"
+msgstr ""
+
+#: 05030000.xhp#hd_id3155132.3.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Height\">Height</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 05030000.xhp#hd_id3155854.4.help.text
+msgid "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal Height\">Optimal Height</link>"
+msgstr ""
+
+#: 03070000.xhp#tit.help.text
+msgid "Column & Row Headers"
+msgstr ""
+
+#: 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 ""
+
+#: 03070000.xhp#hd_id3156024.1.help.text
+msgid "<link href=\"text/scalc/01/03070000.xhp\" name=\"Column & Row Headers\">Column & Row Headers</link>"
+msgstr ""
+
+#: 03070000.xhp#par_id3147230.2.help.text
+msgid "<ahelp hid=\".uno:ViewRowColumnHeaders\">Shows column headers and row headers.</ahelp>"
+msgstr ""
+
+#: 03070000.xhp#par_id3156280.4.help.text
+msgid "To hide the column and row headers unmark this menu entry."
+msgstr ""
+
+#: 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 ""
+
+#: 03100000.xhp#tit.help.text
+msgid "Page Break Preview"
+msgstr ""
+
+#: 03100000.xhp#hd_id3151384.1.help.text
+msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"Page Break Preview\">Page Break Preview</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 03100000.xhp#hd_id3154731.14.help.text
+msgid "Delete All Manual Breaks"
+msgstr ""
+
+#: 03100000.xhp#par_id3149400.15.help.text
+msgid "<ahelp hid=\".uno:DeleteAllBreaks\">Deletes all manual breaks in the current sheet.</ahelp>"
+msgstr ""
+
+#: 03100000.xhp#hd_id3155067.18.help.text
+msgid "Add Print Range"
+msgstr ""
+
+#: 03100000.xhp#par_id3155764.19.help.text
+msgid "Adds the selected cells to print ranges."
+msgstr ""
+
+#: 12080000.xhp#tit.help.text
+msgid "Group and Outline"
+msgstr ""
+
+#: 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 ""
+
+#: 12080000.xhp#hd_id3152350.1.help.text
+msgid "<link href=\"text/scalc/01/12080000.xhp\" name=\"Group and Outline\">Group and Outline</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 12080000.xhp#hd_id3147229.3.help.text
+#, fuzzy
+msgctxt "12080000.xhp#hd_id3147229.3.help.text"
+msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 12080000.xhp#hd_id3153188.4.help.text
+#, fuzzy
+msgctxt "12080000.xhp#hd_id3153188.4.help.text"
+msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 01120000.xhp#tit.help.text
+#, fuzzy
+msgid "Page Preview"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Попередній перегляд\n"
+"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Попередній перегляд сторінки"
+
+#: 01120000.xhp#hd_id1918698.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/01120000.xhp\">Page Preview</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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\">Відображення або приховання попереднього перегляду друкованої сторінки.</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 "Для прокрутки сторінок документа або друку використовуються значки на <emph>панелі попереднього перегляду</emph>."
+
+#: 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 ""
+
+#: 01120000.xhp#par_id7211828.help.text
+msgid "You cannot edit your document while you are in the page preview."
+msgstr "Ви не можете відредагувати документ в режимі попереднього перегляду."
+
+#: 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 ""
+
+#: 01120000.xhp#par_id3155829.help.text
+msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Page View Object Bar\">Page View Object Bar</link>"
+msgstr ""
+
+#: 06040000.xhp#tit.help.text
+msgctxt "06040000.xhp#tit.help.text"
+msgid "Goal Seek"
+msgstr ""
+
+#: 06040000.xhp#hd_id3155629.1.help.text
+msgctxt "06040000.xhp#hd_id3155629.1.help.text"
+msgid "Goal Seek"
+msgstr ""
+
+#: 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 ""
+
+#: 06040000.xhp#hd_id3149656.3.help.text
+msgid "Default"
+msgstr "Типово"
+
+#: 06040000.xhp#par_id3151211.4.help.text
+msgid "In this section, you can define the variables in your formula."
+msgstr ""
+
+#: 06040000.xhp#hd_id3150869.5.help.text
+msgid "Formula cell"
+msgstr ""
+
+#: 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 ""
+
+#: 06040000.xhp#hd_id3154685.7.help.text
+msgid "Target value"
+msgstr ""
+
+#: 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 ""
+
+#: 06040000.xhp#hd_id3150012.9.help.text
+msgid "Variable cell"
+msgstr ""
+
+#: 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 ""
+
+#: func_month.xhp#tit.help.text
+msgid "MONTH "
+msgstr ""
+
+#: func_month.xhp#bm_id3149936.help.text
+msgid "<bookmark_value>MONTH function</bookmark_value>"
+msgstr ""
+
+#: func_month.xhp#hd_id3149936.76.help.text
+msgid "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">MONTH</link></variable>"
+msgstr ""
+
+#: 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 ""
+
+#: func_month.xhp#hd_id3149517.78.help.text
+msgctxt "func_month.xhp#hd_id3149517.78.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: func_month.xhp#par_id3145602.79.help.text
+msgid "MONTH(Number)"
+msgstr ""
+
+#: 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 ""
+
+#: func_month.xhp#hd_id3153322.81.help.text
+#, fuzzy
+msgctxt "func_month.xhp#hd_id3153322.81.help.text"
+msgid "Examples"
+msgstr "Приклади:"
+
+#: func_month.xhp#par_id3149244.83.help.text
+msgid "=MONTH(NOW()) returns the current month."
+msgstr ""
+
+#: 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 ""
+
+#: 12090104.xhp#tit.help.text
+msgctxt "12090104.xhp#tit.help.text"
+msgid "Options"
+msgstr ""
+
+#: 12090104.xhp#hd_id3149119.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"Options\">Options</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 12090104.xhp#hd_id3147008.3.help.text
+msgctxt "12090104.xhp#hd_id3147008.3.help.text"
+msgid "Options"
+msgstr ""
+
+#: 12090104.xhp#hd_id3153662.5.help.text
+msgctxt "12090104.xhp#hd_id3153662.5.help.text"
+msgid "Case sensitive"
+msgstr ""
+
+#: 12090104.xhp#par_id3145673.6.help.text
+msgid "Distinguishes between uppercase and lowercase letters."
+msgstr ""
+
+#: 12090104.xhp#hd_id3156327.7.help.text
+msgid "Regular Expression"
+msgstr ""
+
+#: 12090104.xhp#par_id3151245.8.help.text
+msgid "Allows you to use wildcards in the filter definition."
+msgstr ""
+
+#: 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 ""
+
+#: 12090104.xhp#hd_id3153379.30.help.text
+msgid "Unique records only"
+msgstr ""
+
+#: 12090104.xhp#par_id3154138.31.help.text
+msgid "Excludes duplicate rows in the list of filtered data."
+msgstr ""
+
+#: 12090104.xhp#hd_id3156282.32.help.text
+msgid "Data area"
+msgstr ""
+
+#: 12090104.xhp#par_id3150768.33.help.text
+msgid "Displays the name of the filtered data area in the table."
+msgstr ""
+
+#: 12090104.xhp#hd_id3156424.34.help.text
+msgid "More<<"
+msgstr ""
+
+#: 12090104.xhp#par_id3125864.35.help.text
+msgctxt "12090104.xhp#par_id3125864.35.help.text"
+msgid "Hides the additional options."
+msgstr ""
+
+#: 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 ""
+
+#: 04060105.xhp#tit.help.text
+msgctxt "04060105.xhp#tit.help.text"
+msgid "Logical Functions"
+msgstr ""
+
+#: 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 ""
+
+#: 04060105.xhp#hd_id3153484.1.help.text
+msgctxt "04060105.xhp#hd_id3153484.1.help.text"
+msgid "Logical Functions"
+msgstr ""
+
+#: 04060105.xhp#par_id3149312.2.help.text
+msgid "<variable id=\"logischtext\">This category contains the <emph>Logical</emph> functions. </variable>"
+msgstr ""
+
+#: 04060105.xhp#bm_id3147505.help.text
+msgid "<bookmark_value>AND function</bookmark_value>"
+msgstr ""
+
+#: 04060105.xhp#hd_id3147505.29.help.text
+msgid "AND"
+msgstr "AND"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060105.xhp#hd_id3150374.31.help.text
+msgctxt "04060105.xhp#hd_id3150374.31.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060105.xhp#par_id3159123.32.help.text
+msgid "AND(LogicalValue1; LogicalValue2 ...LogicalValue30)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060105.xhp#hd_id3149143.34.help.text
+#, fuzzy
+msgctxt "04060105.xhp#hd_id3149143.34.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060105.xhp#par_id3145632.36.help.text
+msgid " <item type=\"input\">=AND(12<13;14>12;7<6)</item> returns FALSE."
+msgstr ""
+
+#: 04060105.xhp#par_id3149946.60.help.text
+msgid " <item type=\"input\">=AND (FALSE;TRUE)</item> returns FALSE."
+msgstr ""
+
+#: 04060105.xhp#bm_id3149015.help.text
+msgid "<bookmark_value>FALSE function</bookmark_value>"
+msgstr ""
+
+#: 04060105.xhp#hd_id3149015.3.help.text
+msgid "FALSE"
+msgstr "FALSE"
+
+#: 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 ""
+
+#: 04060105.xhp#hd_id3146939.5.help.text
+msgctxt "04060105.xhp#hd_id3146939.5.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060105.xhp#par_id3150030.6.help.text
+msgid "FALSE()"
+msgstr ""
+
+#: 04060105.xhp#hd_id3150697.7.help.text
+#, fuzzy
+msgctxt "04060105.xhp#hd_id3150697.7.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060105.xhp#par_id3154842.8.help.text
+msgid " <item type=\"input\">=FALSE()</item> returns FALSE"
+msgstr ""
+
+#: 04060105.xhp#par_id3147468.9.help.text
+msgid " <item type=\"input\">=NOT(FALSE())</item> returns TRUE"
+msgstr ""
+
+#: 04060105.xhp#bm_id3150141.help.text
+msgid "<bookmark_value>IF function</bookmark_value>"
+msgstr ""
+
+#: 04060105.xhp#hd_id3150141.48.help.text
+msgid "IF"
+msgstr ""
+
+#: 04060105.xhp#par_id3148740.49.help.text
+msgid "<ahelp hid=\"HID_FUNC_WENN\">Specifies a logical test to be performed.</ahelp>"
+msgstr ""
+
+#: 04060105.xhp#hd_id3153325.50.help.text
+msgctxt "04060105.xhp#hd_id3153325.50.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060105.xhp#par_id3154558.51.help.text
+msgid "IF(Test; ThenValue; OtherwiseValue)"
+msgstr ""
+
+#: 04060105.xhp#par_id3149727.52.help.text
+msgid " <emph>Test</emph> is any value or expression that can be TRUE or FALSE."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060105.xhp#par_idN107FA.help.text
+msgctxt "04060105.xhp#par_idN107FA.help.text"
+msgid " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+msgstr ""
+
+#: 04060105.xhp#hd_id3149507.55.help.text
+#, fuzzy
+msgctxt "04060105.xhp#hd_id3149507.55.help.text"
+msgid "Examples"
+msgstr "Приклади:"
+
+#: 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 ""
+
+#: 04060105.xhp#bm_id3155954.help.text
+msgid "<bookmark_value>NOT function</bookmark_value>"
+msgstr ""
+
+#: 04060105.xhp#hd_id3155954.12.help.text
+msgid "NOT"
+msgstr "NOT"
+
+#: 04060105.xhp#par_id3153570.13.help.text
+msgid "<ahelp hid=\"HID_FUNC_NICHT\">Complements (inverts) a logical value.</ahelp>"
+msgstr ""
+
+#: 04060105.xhp#hd_id3147372.14.help.text
+msgctxt "04060105.xhp#hd_id3147372.14.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060105.xhp#par_id3157996.15.help.text
+msgid "NOT(LogicalValue)"
+msgstr ""
+
+#: 04060105.xhp#par_id3148766.16.help.text
+msgid " <emph>LogicalValue</emph> is any value to be complemented."
+msgstr ""
+
+#: 04060105.xhp#hd_id3149884.17.help.text
+#, fuzzy
+msgctxt "04060105.xhp#hd_id3149884.17.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060105.xhp#par_id3150132.18.help.text
+msgid " <item type=\"input\">=NOT(A)</item>. If A=TRUE then NOT(A) will evaluate FALSE."
+msgstr ""
+
+#: 04060105.xhp#bm_id3148394.help.text
+msgid "<bookmark_value>OR function</bookmark_value>"
+msgstr ""
+
+#: 04060105.xhp#hd_id3148394.20.help.text
+msgid "OR"
+msgstr "OR"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060105.xhp#hd_id3155517.22.help.text
+msgctxt "04060105.xhp#hd_id3155517.22.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060105.xhp#par_id3150468.23.help.text
+msgid "OR(LogicalValue1; LogicalValue2 ...LogicalValue30)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060105.xhp#hd_id3153228.25.help.text
+#, fuzzy
+msgctxt "04060105.xhp#hd_id3153228.25.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060105.xhp#par_id3155371.27.help.text
+msgid " <item type=\"input\">=OR(12<11;13>22;45=45)</item> returns TRUE."
+msgstr ""
+
+#: 04060105.xhp#par_id3158412.59.help.text
+msgid " <item type=\"input\">=OR(FALSE;TRUE)</item> returns TRUE."
+msgstr ""
+
+#: 04060105.xhp#bm_id3156256.help.text
+msgid "<bookmark_value>TRUE function</bookmark_value>"
+msgstr ""
+
+#: 04060105.xhp#hd_id3156256.38.help.text
+msgid "TRUE"
+msgstr "TRUE"
+
+#: 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 ""
+
+#: 04060105.xhp#hd_id3153717.40.help.text
+msgctxt "04060105.xhp#hd_id3153717.40.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060105.xhp#par_id3152590.41.help.text
+msgid "TRUE()"
+msgstr ""
+
+#: 04060105.xhp#hd_id3147175.42.help.text
+#, fuzzy
+msgctxt "04060105.xhp#hd_id3147175.42.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060105.xhp#par_id3146148.43.help.text
+msgid "If A=TRUE and B=FALSE the following examples appear:"
+msgstr ""
+
+#: 04060105.xhp#par_id3083285.44.help.text
+msgid " <item type=\"input\">=AND(A;B)</item> returns FALSE"
+msgstr ""
+
+#: 04060105.xhp#par_id3083444.45.help.text
+msgid " <item type=\"input\">=OR(A;B)</item> returns TRUE"
+msgstr ""
+
+#: 04060105.xhp#par_id3154314.46.help.text
+msgid " <item type=\"input\">=NOT(AND(A;B))</item> returns TRUE"
+msgstr ""
+
+#: func_yearfrac.xhp#tit.help.text
+msgid "YEARFRAC"
+msgstr ""
+
+#: func_yearfrac.xhp#bm_id3148735.help.text
+msgid "<bookmark_value>YEARFRAC function</bookmark_value>"
+msgstr ""
+
+#: func_yearfrac.xhp#hd_id3148735.196.help.text
+msgid "<variable id=\"yearfrac\"><link href=\"text/scalc/01/func_yearfrac.xhp\">YEARFRAC</link></variable>"
+msgstr ""
+
+#: 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 ""
+
+#: func_yearfrac.xhp#hd_id3155259.198.help.text
+msgctxt "func_yearfrac.xhp#hd_id3155259.198.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: func_yearfrac.xhp#par_id3155823.199.help.text
+msgid "YEARFRAC(StartDate; EndDate; Basis)"
+msgstr ""
+
+#: func_yearfrac.xhp#par_id3145144.200.help.text
+msgid "<emph>StartDate</emph> and <emph>EndDate</emph> are two date values."
+msgstr ""
+
+#: 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 ""
+
+#: func_yearfrac.xhp#par_id3146847.202.help.text
+msgid "Basis"
+msgstr ""
+
+#: func_yearfrac.xhp#par_id3155956.203.help.text
+msgid "Calculation"
+msgstr ""
+
+#: func_yearfrac.xhp#par_id3154502.204.help.text
+msgctxt "func_yearfrac.xhp#par_id3154502.204.help.text"
+msgid "0 or missing"
+msgstr ""
+
+#: func_yearfrac.xhp#par_id3149877.205.help.text
+msgid "US method (NASD), 12 months of 30 days each"
+msgstr ""
+
+#: func_yearfrac.xhp#par_id3148766.250.help.text
+msgctxt "func_yearfrac.xhp#par_id3148766.250.help.text"
+msgid "1"
+msgstr ""
+
+#: func_yearfrac.xhp#par_id3154326.206.help.text
+msgid "Exact number of days in months, exact number of days in year"
+msgstr ""
+
+#: func_yearfrac.xhp#par_id3145245.251.help.text
+msgctxt "func_yearfrac.xhp#par_id3145245.251.help.text"
+msgid "2"
+msgstr ""
+
+#: func_yearfrac.xhp#par_id3155620.207.help.text
+msgid "Exact number of days in month, year has 360 days"
+msgstr ""
+
+#: func_yearfrac.xhp#par_id3145297.252.help.text
+msgctxt "func_yearfrac.xhp#par_id3145297.252.help.text"
+msgid "3"
+msgstr ""
+
+#: func_yearfrac.xhp#par_id3148394.208.help.text
+msgid "Exact number of days in month, year has 365 days"
+msgstr ""
+
+#: func_yearfrac.xhp#par_id3151022.253.help.text
+msgctxt "func_yearfrac.xhp#par_id3151022.253.help.text"
+msgid "4"
+msgstr ""
+
+#: func_yearfrac.xhp#par_id3150931.209.help.text
+msgid "European method, 12 months of 30 days each"
+msgstr ""
+
+#: func_yearfrac.xhp#hd_id3145626.210.help.text
+#, fuzzy
+msgctxt "func_yearfrac.xhp#hd_id3145626.210.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: func_yearfrac.xhp#par_id3154632.212.help.text
+msgid "=YEARFRAC(\"2008-01-01\"; \"2008-07-01\";0) returns 0.50."
+msgstr ""
+
+#: 12090200.xhp#tit.help.text
+msgid "Refresh"
+msgstr ""
+
+#: 12090200.xhp#hd_id3151385.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12090200.xhp\" name=\"Refresh\">Refresh</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 12090200.xhp#par_id3149456.2.help.text
+#, fuzzy
+msgid "<ahelp hid=\".uno:RecalcPivotTable\">Updates the pivot table.</ahelp>"
+msgstr "<ahelp hid=\".uno:PrevRecord\">Перехід до попереднього запису.</ahelp>"
+
+#: 12090200.xhp#par_id3150400.3.help.text
+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 ""
+
+#: 05020000.xhp#tit.help.text
+msgctxt "05020000.xhp#tit.help.text"
+msgid "Format Cells"
+msgstr ""
+
+#: 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 ""
+
+#: 05020000.xhp#hd_id3148663.1.help.text
+msgctxt "05020000.xhp#hd_id3148663.1.help.text"
+msgid "Format Cells"
+msgstr ""
+
+#: 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 ""
+
+#: 05020000.xhp#hd_id3145785.3.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 05020000.xhp#hd_id3146119.4.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 12040300.xhp#tit.help.text
+msgctxt "12040300.xhp#tit.help.text"
+msgid "Advanced Filter"
+msgstr ""
+
+#: 12040300.xhp#hd_id3158394.1.help.text
+msgctxt "12040300.xhp#hd_id3158394.1.help.text"
+msgid "Advanced Filter"
+msgstr ""
+
+#: 12040300.xhp#par_id3156281.2.help.text
+msgid "<variable id=\"spezialfilter\"><ahelp hid=\".uno:DataFilterSpecialFilter\">Defines an advanced filter.</ahelp></variable>"
+msgstr ""
+
+#: 12040300.xhp#par_idN105EB.help.text
+msgid "<embedvar href=\"text/scalc/guide/filters.xhp#filters\"/>"
+msgstr ""
+
+#: 12040300.xhp#hd_id3153771.25.help.text
+msgid "Read filter criteria from"
+msgstr ""
+
+#: 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 ""
+
+#: 12040300.xhp#hd_id3153188.27.help.text
+#, fuzzy
+msgctxt "12040300.xhp#hd_id3153188.27.help.text"
+msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: func_second.xhp#tit.help.text
+msgid "SECOND "
+msgstr ""
+
+#: func_second.xhp#bm_id3159390.help.text
+msgid "<bookmark_value>SECOND function</bookmark_value>"
+msgstr ""
+
+#: func_second.xhp#hd_id3159390.86.help.text
+msgid "<variable id=\"second\"><link href=\"text/scalc/01/func_second.xhp\">SECOND</link></variable>"
+msgstr ""
+
+#: 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 ""
+
+#: func_second.xhp#hd_id3154362.88.help.text
+msgctxt "func_second.xhp#hd_id3154362.88.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: func_second.xhp#par_id3148407.89.help.text
+msgid "SECOND(Number)"
+msgstr ""
+
+#: 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 ""
+
+#: func_second.xhp#hd_id3149992.91.help.text
+#, fuzzy
+msgctxt "func_second.xhp#hd_id3149992.91.help.text"
+msgid "Examples"
+msgstr "Приклади:"
+
+#: func_second.xhp#par_id3153350.93.help.text
+msgid "<item type=\"input\">=SECOND(NOW())</item> returns the current second"
+msgstr ""
+
+#: 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 ""
+
+#: 05100100.xhp#tit.help.text
+msgctxt "05100100.xhp#tit.help.text"
+msgid "Merge Cells"
+msgstr "Об'єднати комірки"
+
+#: 05100100.xhp#hd_id3154765.help.text
+msgctxt "05100100.xhp#hd_id3154765.help.text"
+msgid "Merge Cells"
+msgstr "Об'єднати комірки"
+
+#: 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
+msgid "Choose <emph>Format - Merge Cells - Merge Cells</emph>"
+msgstr ""
+
+#: func_networkdays.xhp#tit.help.text
+msgid "NETWORKDAYS"
+msgstr ""
+
+#: func_networkdays.xhp#bm_id3151254.help.text
+msgid "<bookmark_value>NETWORKDAYS function</bookmark_value>"
+msgstr ""
+
+#: func_networkdays.xhp#hd_id3151254.240.help.text
+msgid "<variable id=\"networkdays\"><link href=\"text/scalc/01/func_networkdays.xhp\">NETWORKDAYS</link></variable>"
+msgstr ""
+
+#: 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 ""
+
+#: func_networkdays.xhp#hd_id3148677.242.help.text
+msgctxt "func_networkdays.xhp#hd_id3148677.242.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: func_networkdays.xhp#par_id3145775.243.help.text
+msgid "NETWORKDAYS(StartDate; EndDate; Holidays)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: func_networkdays.xhp#hd_id3146902.247.help.text
+#, fuzzy
+msgctxt "func_networkdays.xhp#hd_id3146902.247.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: func_networkdays.xhp#par_id3147328.249.help.text
+msgid "=NETWORKDAYS(C3;D3;F3:J3) returns 17 workdays."
+msgstr ""
+
+#: 04060104.xhp#tit.help.text
+msgctxt "04060104.xhp#tit.help.text"
+msgid "Information Functions"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3147247.1.help.text
+msgctxt "04060104.xhp#hd_id3147247.1.help.text"
+msgid "Information Functions"
+msgstr ""
+
+#: 04060104.xhp#par_id3147499.2.help.text
+msgid "<variable id=\"informationtext\">This category contains the <emph>Information</emph> functions. </variable>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#par_id3146885.4.help.text
+msgctxt "04060104.xhp#par_id3146885.4.help.text"
+msgid "C"
+msgstr ""
+
+#: 04060104.xhp#par_id3149944.5.help.text
+msgctxt "04060104.xhp#par_id3149944.5.help.text"
+msgid "D"
+msgstr ""
+
+#: 04060104.xhp#par_id3150457.6.help.text
+msgctxt "04060104.xhp#par_id3150457.6.help.text"
+msgid "<emph>2</emph>"
+msgstr ""
+
+#: 04060104.xhp#par_id3150024.7.help.text
+msgid "x <item type=\"input\">value</item>"
+msgstr ""
+
+#: 04060104.xhp#par_id3148725.8.help.text
+msgid "y <item type=\"input\">value</item>"
+msgstr ""
+
+#: 04060104.xhp#par_id3150480.9.help.text
+msgctxt "04060104.xhp#par_id3150480.9.help.text"
+msgid "<emph>3</emph>"
+msgstr ""
+
+#: 04060104.xhp#par_id3148440.10.help.text
+msgid "<item type=\"input\">-5</item>"
+msgstr ""
+
+#: 04060104.xhp#par_id3148888.11.help.text
+msgid "<item type=\"input\">-3</item>"
+msgstr ""
+
+#: 04060104.xhp#par_id3153034.12.help.text
+msgctxt "04060104.xhp#par_id3153034.12.help.text"
+msgid "<emph>4</emph>"
+msgstr ""
+
+#: 04060104.xhp#par_id3150139.13.help.text
+msgid "<item type=\"input\">-2</item>"
+msgstr ""
+
+#: 04060104.xhp#par_id3149542.14.help.text
+msgctxt "04060104.xhp#par_id3149542.14.help.text"
+msgid "<item type=\"input\">0</item>"
+msgstr ""
+
+#: 04060104.xhp#par_id3149188.15.help.text
+msgctxt "04060104.xhp#par_id3149188.15.help.text"
+msgid "<emph>5</emph>"
+msgstr ""
+
+#: 04060104.xhp#par_id3153329.16.help.text
+msgid "<item type=\"input\">-1</item>"
+msgstr ""
+
+#: 04060104.xhp#par_id3155257.17.help.text
+msgctxt "04060104.xhp#par_id3155257.17.help.text"
+msgid "<item type=\"input\">1</item>"
+msgstr ""
+
+#: 04060104.xhp#par_id3145142.18.help.text
+msgctxt "04060104.xhp#par_id3145142.18.help.text"
+msgid "<emph>6</emph>"
+msgstr ""
+
+#: 04060104.xhp#par_id3149956.19.help.text
+msgctxt "04060104.xhp#par_id3149956.19.help.text"
+msgid "<item type=\"input\">0</item>"
+msgstr ""
+
+#: 04060104.xhp#par_id3145594.20.help.text
+msgctxt "04060104.xhp#par_id3145594.20.help.text"
+msgid "<item type=\"input\">3</item>"
+msgstr ""
+
+#: 04060104.xhp#par_id3153113.21.help.text
+msgctxt "04060104.xhp#par_id3153113.21.help.text"
+msgid "<emph>7</emph>"
+msgstr ""
+
+#: 04060104.xhp#par_id3148573.22.help.text
+msgctxt "04060104.xhp#par_id3148573.22.help.text"
+msgid "<item type=\"input\">2</item>"
+msgstr ""
+
+#: 04060104.xhp#par_id3145166.23.help.text
+msgctxt "04060104.xhp#par_id3145166.23.help.text"
+msgid "<item type=\"input\">4</item>"
+msgstr ""
+
+#: 04060104.xhp#par_id3157998.24.help.text
+msgctxt "04060104.xhp#par_id3157998.24.help.text"
+msgid "<emph>8</emph>"
+msgstr ""
+
+#: 04060104.xhp#par_id3150018.25.help.text
+msgctxt "04060104.xhp#par_id3150018.25.help.text"
+msgid "<item type=\"input\">4</item>"
+msgstr ""
+
+#: 04060104.xhp#par_id3150129.26.help.text
+msgctxt "04060104.xhp#par_id3150129.26.help.text"
+msgid "<item type=\"input\">6</item>"
+msgstr ""
+
+#: 04060104.xhp#par_id3145245.27.help.text
+msgctxt "04060104.xhp#par_id3145245.27.help.text"
+msgid "<emph>9</emph>"
+msgstr ""
+
+#: 04060104.xhp#par_id3148389.28.help.text
+msgctxt "04060104.xhp#par_id3148389.28.help.text"
+msgid "<item type=\"input\">6</item>"
+msgstr ""
+
+#: 04060104.xhp#par_id3156068.29.help.text
+msgctxt "04060104.xhp#par_id3156068.29.help.text"
+msgid "<item type=\"input\">8</item>"
+msgstr ""
+
+#: 04060104.xhp#bm_id3691824.help.text
+msgid "<bookmark_value>INFO function</bookmark_value>"
+msgstr ""
+
+#: 04060104.xhp#hd_id5787224.help.text
+msgid "INFO"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id7693411.help.text
+msgctxt "04060104.xhp#hd_id7693411.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060104.xhp#par_id3928952.help.text
+msgid "INFO(\"Type\")"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#par_id5735953.help.text
+msgid "Value for \"Type\""
+msgstr ""
+
+#: 04060104.xhp#par_id8360850.help.text
+msgctxt "04060104.xhp#par_id8360850.help.text"
+msgid "Return value"
+msgstr ""
+
+#: 04060104.xhp#par_id9648731.help.text
+msgid "\"osversion\""
+msgstr ""
+
+#: 04060104.xhp#par_id908841.help.text
+msgid "Always \"Windows (32-bit) NT 5.01\", for compatibility reasons"
+msgstr ""
+
+#: 04060104.xhp#par_id8193914.help.text
+msgid "\"system\""
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#par_id2701803.help.text
+msgid "\"release\""
+msgstr ""
+
+#: 04060104.xhp#par_id2136295.help.text
+msgid "The product release identifier, for example \"300m25(Build:9876)\""
+msgstr ""
+
+#: 04060104.xhp#par_id9200109.help.text
+msgid "\"numfile\""
+msgstr ""
+
+#: 04060104.xhp#par_id4186223.help.text
+msgid "Always 1, for compatibility reasons"
+msgstr ""
+
+#: 04060104.xhp#par_id5766472.help.text
+msgid "\"recalc\""
+msgstr ""
+
+#: 04060104.xhp#par_id1491134.help.text
+msgid "Current formula recalculation mode, either \"Automatic\" or \"Manual\" (localized into %PRODUCTNAME language)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id5459456.help.text
+#, fuzzy
+msgctxt "04060104.xhp#hd_id5459456.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060104.xhp#par_id3994567.help.text
+msgid "<item type=\"input\">=INFO(\"release\")</item> returns the product release number of the %PRODUCTNAME in use."
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#bm_id3155625.help.text
+msgid "<bookmark_value>CURRENT function</bookmark_value>"
+msgstr ""
+
+#: 04060104.xhp#hd_id3155625.30.help.text
+msgid "CURRENT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3148880.32.help.text
+msgctxt "04060104.xhp#hd_id3148880.32.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060104.xhp#par_id3150930.33.help.text
+msgid "CURRENT()"
+msgstr ""
+
+#: 04060104.xhp#hd_id3145629.34.help.text
+#, fuzzy
+msgctxt "04060104.xhp#hd_id3145629.34.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060104.xhp#par_id5919064.help.text
+msgid "<item type=\"input\">=1+2+CURRENT()</item>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#par_id5863826.help.text
+msgid "<item type=\"input\">=A2+B2+STYLE(IF(CURRENT()>10;”Red”;”Default”))</item>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#par_id7318643.help.text
+msgid "<item type=\"input\">=\"choo\"&CURRENT()</item>"
+msgstr ""
+
+#: 04060104.xhp#par_id6019165.help.text
+msgid "The example returns choochoo."
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3150688.147.help.text
+msgid "FORMULA"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3154954.149.help.text
+msgctxt "04060104.xhp#hd_id3154954.149.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060104.xhp#par_id3147535.150.help.text
+msgid "FORMULA(Reference)"
+msgstr ""
+
+#: 04060104.xhp#par_id3014313.help.text
+msgid "<emph>Reference</emph> is a reference to a cell containing a formula."
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3152820.151.help.text
+#, fuzzy
+msgctxt "04060104.xhp#hd_id3152820.151.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060104.xhp#par_id3153179.152.help.text
+msgid "If cell A8 contains the formula <item type=\"input\">=SUM(1;2;3)</item> then"
+msgstr ""
+
+#: 04060104.xhp#par_id3153923.153.help.text
+msgid "<item type=\"input\">=FORMULA(A8)</item> returns the text =SUM(1;2;3)."
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3155409.37.help.text
+msgid "ISREF"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3147175.39.help.text
+msgctxt "04060104.xhp#hd_id3147175.39.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060104.xhp#par_id3149821.40.help.text
+msgid "ISREF(Value)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3083448.42.help.text
+#, fuzzy
+msgctxt "04060104.xhp#hd_id3083448.42.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060104.xhp#par_id2131544.help.text
+msgid "<item type=\"input\">=ISREF(4)</item> returns FALSE."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060104.xhp#bm_id3154812.help.text
+msgid "<bookmark_value>ISERR function</bookmark_value><bookmark_value>error codes;controlling</bookmark_value>"
+msgstr ""
+
+#: 04060104.xhp#hd_id3154812.45.help.text
+msgid "ISERR"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3149450.47.help.text
+msgctxt "04060104.xhp#hd_id3149450.47.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060104.xhp#par_id3156312.48.help.text
+msgid "ISERR(Value)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3153212.50.help.text
+#, fuzzy
+msgctxt "04060104.xhp#hd_id3153212.50.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060104.xhp#bm_id3147081.help.text
+msgid "<bookmark_value>ISERROR function</bookmark_value><bookmark_value>recognizing;general errors</bookmark_value>"
+msgstr ""
+
+#: 04060104.xhp#hd_id3147081.53.help.text
+msgid "ISERROR"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3147569.55.help.text
+msgctxt "04060104.xhp#hd_id3147569.55.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060104.xhp#par_id3153155.56.help.text
+msgid "ISERROR(Value)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3155994.58.help.text
+#, fuzzy
+msgctxt "04060104.xhp#hd_id3155994.58.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3153618.61.help.text
+msgid "ISFORMULA"
+msgstr ""
+
+#: 04060104.xhp#par_id3149138.62.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTFORMEL\">Returns TRUE if a cell is a formula cell.</ahelp>"
+msgstr ""
+
+#: 04060104.xhp#hd_id3155100.63.help.text
+msgctxt "04060104.xhp#hd_id3155100.63.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060104.xhp#par_id3143230.64.help.text
+msgid "ISFORMULA(Reference)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3147491.66.help.text
+#, fuzzy
+msgctxt "04060104.xhp#hd_id3147491.66.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060104.xhp#bm_id3149760.help.text
+msgid "<bookmark_value>ISEVEN_ADD function</bookmark_value>"
+msgstr ""
+
+#: 04060104.xhp#hd_id3149760.229.help.text
+msgid "ISEVEN_ADD"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3152799.231.help.text
+msgctxt "04060104.xhp#hd_id3152799.231.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060104.xhp#par_id3149202.232.help.text
+msgid "ISEVEN_ADD(Number)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3150115.234.help.text
+#, fuzzy
+msgctxt "04060104.xhp#hd_id3150115.234.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060104.xhp#par_id3153904.235.help.text
+msgid "<item type=\"input\">=ISEVEN_ADD(5)</item> returns 0."
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#bm_id3154692.help.text
+msgid "<bookmark_value>ISNONTEXT function</bookmark_value><bookmark_value>cell contents;no text</bookmark_value>"
+msgstr ""
+
+#: 04060104.xhp#hd_id3154692.68.help.text
+msgid "ISNONTEXT"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#par_id5719779.help.text
+msgid "If an error occurs, the function returns TRUE."
+msgstr ""
+
+#: 04060104.xhp#hd_id3154931.70.help.text
+msgctxt "04060104.xhp#hd_id3154931.70.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060104.xhp#par_id3148829.71.help.text
+msgid "ISNONTEXT(Value)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3150525.73.help.text
+#, fuzzy
+msgctxt "04060104.xhp#hd_id3150525.73.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3159148.77.help.text
+msgid "ISBLANK"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3159162.79.help.text
+msgctxt "04060104.xhp#hd_id3159162.79.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060104.xhp#par_id3158406.80.help.text
+msgid "ISBLANK(Value)"
+msgstr ""
+
+#: 04060104.xhp#par_id3154212.81.help.text
+msgid "<emph>Value</emph> is the content to be tested."
+msgstr ""
+
+#: 04060104.xhp#hd_id3147508.82.help.text
+#, fuzzy
+msgctxt "04060104.xhp#hd_id3147508.82.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060104.xhp#par_id3147234.83.help.text
+msgid "<item type=\"input\">=ISBLANK(D2)</item> returns FALSE as a result."
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3155356.85.help.text
+msgid "ISLOGICAL"
+msgstr ""
+
+#: 04060104.xhp#par_id3148926.86.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTLOG\">Tests for a logical value (TRUE or FALSE).</ahelp>"
+msgstr ""
+
+#: 04060104.xhp#par_id3541062.help.text
+msgctxt "04060104.xhp#par_id3541062.help.text"
+msgid "If an error occurs, the function returns FALSE."
+msgstr ""
+
+#: 04060104.xhp#hd_id3149162.87.help.text
+msgctxt "04060104.xhp#hd_id3149162.87.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060104.xhp#par_id3148918.88.help.text
+msgid "ISLOGICAL(Value)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3150709.90.help.text
+#, fuzzy
+msgctxt "04060104.xhp#hd_id3150709.90.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060104.xhp#bm_id3153685.help.text
+msgid "<bookmark_value>ISNA function</bookmark_value><bookmark_value>#N/A error;recognizing</bookmark_value>"
+msgstr ""
+
+#: 04060104.xhp#hd_id3153685.93.help.text
+msgid "ISNA"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#par_id6018860.help.text
+msgctxt "04060104.xhp#par_id6018860.help.text"
+msgid "If an error occurs, the function returns FALSE."
+msgstr ""
+
+#: 04060104.xhp#hd_id3152947.95.help.text
+msgctxt "04060104.xhp#hd_id3152947.95.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060104.xhp#par_id3153748.96.help.text
+msgid "ISNA(Value)"
+msgstr ""
+
+#: 04060104.xhp#par_id3152884.97.help.text
+msgid "<emph>Value</emph> is the value or expression to be tested."
+msgstr ""
+
+#: 04060104.xhp#hd_id3149964.98.help.text
+#, fuzzy
+msgctxt "04060104.xhp#hd_id3149964.98.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060104.xhp#par_id3154852.99.help.text
+msgid "<item type=\"input\">=ISNA(D3)</item> returns FALSE as a result."
+msgstr ""
+
+#: 04060104.xhp#bm_id3149426.help.text
+msgid "<bookmark_value>ISTEXT function</bookmark_value><bookmark_value>cell contents;text</bookmark_value>"
+msgstr ""
+
+#: 04060104.xhp#hd_id3149426.101.help.text
+msgid "ISTEXT"
+msgstr ""
+
+#: 04060104.xhp#par_id3145368.102.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTTEXT\">Returns TRUE if the cell contents refer to text.</ahelp>"
+msgstr ""
+
+#: 04060104.xhp#par_id6779686.help.text
+msgctxt "04060104.xhp#par_id6779686.help.text"
+msgid "If an error occurs, the function returns FALSE."
+msgstr ""
+
+#: 04060104.xhp#hd_id3154332.103.help.text
+msgctxt "04060104.xhp#hd_id3154332.103.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060104.xhp#par_id3148649.104.help.text
+msgid "ISTEXT(Value)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3149239.106.help.text
+#, fuzzy
+msgctxt "04060104.xhp#hd_id3149239.106.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060104.xhp#bm_id3153939.help.text
+msgid "<bookmark_value>ISODD_ADD function</bookmark_value>"
+msgstr ""
+
+#: 04060104.xhp#hd_id3153939.236.help.text
+msgid "ISODD_ADD"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3145601.238.help.text
+msgctxt "04060104.xhp#hd_id3145601.238.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060104.xhp#par_id3149485.239.help.text
+msgid "ISODD_ADD(Number)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3143274.241.help.text
+#, fuzzy
+msgctxt "04060104.xhp#hd_id3143274.241.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060104.xhp#par_id3154793.242.help.text
+msgid "<item type=\"input\">=ISODD_ADD(5)</item> returns 1."
+msgstr ""
+
+#: 04060104.xhp#bm_id3148688.help.text
+msgid "<bookmark_value>ISNUMBER function</bookmark_value><bookmark_value>cell contents;numbers</bookmark_value>"
+msgstr ""
+
+#: 04060104.xhp#hd_id3148688.110.help.text
+msgid "ISNUMBER"
+msgstr ""
+
+#: 04060104.xhp#par_id3154618.111.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTZAHL\">Returns TRUE if the value refers to a number.</ahelp>"
+msgstr ""
+
+#: 04060104.xhp#hd_id3152769.112.help.text
+msgctxt "04060104.xhp#hd_id3152769.112.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060104.xhp#par_id3150595.113.help.text
+msgid "ISNUMBER(Value)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3146793.115.help.text
+#, fuzzy
+msgctxt "04060104.xhp#hd_id3146793.115.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060104.xhp#bm_id3153694.help.text
+msgid "<bookmark_value>N function</bookmark_value>"
+msgstr ""
+
+#: 04060104.xhp#hd_id3153694.119.help.text
+msgid "N"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#par_id3153883.122.help.text
+msgid "N(Value)"
+msgstr ""
+
+#: 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
+#, fuzzy
+msgctxt "04060104.xhp#hd_id3147097.124.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060104.xhp#par_id3154117.125.help.text
+msgid "<item type=\"input\">=N(123)</item> returns 123"
+msgstr ""
+
+#: 04060104.xhp#par_id2337717.help.text
+msgid "<item type=\"input\">=N(TRUE)</item> returns 1"
+msgstr ""
+
+#: 04060104.xhp#par_id3153781.126.help.text
+msgid "<item type=\"input\">=N(FALSE)</item> returns 0"
+msgstr ""
+
+#: 04060104.xhp#par_id3154670.243.help.text
+msgid "<item type=\"input\">=N(\"abc\")</item> returns 0"
+msgstr ""
+
+#: 04060104.xhp#par_id3519089.help.text
+msgid "=N(1/0) returns #DIV/0!"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3156275.129.help.text
+msgid "NA"
+msgstr ""
+
+#: 04060104.xhp#par_id3156161.130.help.text
+msgid "<ahelp hid=\"HID_FUNC_NV\">Returns the error value #N/A.</ahelp>"
+msgstr ""
+
+#: 04060104.xhp#hd_id3147532.131.help.text
+msgctxt "04060104.xhp#hd_id3147532.131.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060104.xhp#par_id3149563.132.help.text
+msgid "NA()"
+msgstr ""
+
+#: 04060104.xhp#hd_id3155128.133.help.text
+#, fuzzy
+msgctxt "04060104.xhp#hd_id3155128.133.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 04060104.xhp#par_id3154481.134.help.text
+msgid "<item type=\"input\">=NA()</item> converts the contents of the cell into #N/A."
+msgstr ""
+
+#: 04060104.xhp#bm_id3151255.help.text
+msgid "<bookmark_value>TYPE function</bookmark_value>"
+msgstr ""
+
+#: 04060104.xhp#hd_id3151255.136.help.text
+msgctxt "04060104.xhp#hd_id3151255.136.help.text"
+msgid "TYPE"
+msgstr ""
+
+#: 04060104.xhp#par_id3155900.137.help.text
+msgid "<ahelp hid=\"HID_FUNC_TYP\">Returns the type of value.</ahelp>"
+msgstr ""
+
+#: 04060104.xhp#hd_id3149992.138.help.text
+msgctxt "04060104.xhp#hd_id3149992.138.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060104.xhp#par_id3148400.139.help.text
+msgid "TYPE(Value)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3154363.141.help.text
+msgid "Example (see example table above)"
+msgstr ""
+
+#: 04060104.xhp#par_id3153357.142.help.text
+msgid "<item type=\"input\">=TYPE(C2)</item> returns 2 as a result."
+msgstr ""
+
+#: 04060104.xhp#par_id3148980.143.help.text
+msgid "<item type=\"input\">=TYPE(D9)</item> returns 1 as a result."
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3155509.154.help.text
+msgid "CELL"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#hd_id3149323.156.help.text
+msgctxt "04060104.xhp#hd_id3149323.156.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060104.xhp#par_id3147355.157.help.text
+msgid "CELL(\"InfoType\"; Reference)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#par_id3150636.165.help.text
+msgid "InfoType"
+msgstr ""
+
+#: 04060104.xhp#par_id3149344.166.help.text
+msgid "Meaning"
+msgstr ""
+
+#: 04060104.xhp#par_id3153266.167.help.text
+msgid "COL"
+msgstr ""
+
+#: 04060104.xhp#par_id3156204.168.help.text
+msgid "Returns the number of the referenced column."
+msgstr ""
+
+#: 04060104.xhp#par_id3150094.162.help.text
+msgid "<item type=\"input\">=CELL(\"COL\";D2)</item> returns 4."
+msgstr ""
+
+#: 04060104.xhp#par_id3151276.169.help.text
+msgctxt "04060104.xhp#par_id3151276.169.help.text"
+msgid "ROW"
+msgstr ""
+
+#: 04060104.xhp#par_id3147583.170.help.text
+msgid "Returns the number of the referenced row."
+msgstr ""
+
+#: 04060104.xhp#par_id3151222.163.help.text
+msgid "<item type=\"input\">=CELL(\"ROW\";D2)</item> returns 2."
+msgstr ""
+
+#: 04060104.xhp#par_id3159217.171.help.text
+msgctxt "04060104.xhp#par_id3159217.171.help.text"
+msgid "SHEET"
+msgstr ""
+
+#: 04060104.xhp#par_id3151201.172.help.text
+msgid "Returns the number of the referenced sheet."
+msgstr ""
+
+#: 04060104.xhp#par_id3149169.164.help.text
+msgid "<item type=\"input\">=CELL(\"Sheet\";Sheet3.D2)</item> returns 3."
+msgstr ""
+
+#: 04060104.xhp#par_id3149431.173.help.text
+msgctxt "04060104.xhp#par_id3149431.173.help.text"
+msgid "ADDRESS"
+msgstr ""
+
+#: 04060104.xhp#par_id3156054.174.help.text
+msgid "Returns the absolute address of the referenced cell."
+msgstr ""
+
+#: 04060104.xhp#par_id3154136.175.help.text
+msgid "<item type=\"input\">=CELL(\"ADDRESS\";D2)</item> returns $D$2."
+msgstr ""
+
+#: 04060104.xhp#par_id3159198.176.help.text
+msgid "<item type=\"input\">=CELL(\"ADDRESS\";Sheet3.D2)</item> returns $Sheet3.$D$2."
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#par_id3146811.178.help.text
+msgid "FILENAME"
+msgstr ""
+
+#: 04060104.xhp#par_id3151328.179.help.text
+msgid "Returns the file name and the sheet number of the referenced cell."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060104.xhp#par_id3151381.182.help.text
+msgid "COORD"
+msgstr ""
+
+#: 04060104.xhp#par_id3151004.183.help.text
+msgid "Returns the complete cell address in Lotus(TM) notation."
+msgstr ""
+
+#: 04060104.xhp#par_id3159104.184.help.text
+msgid "<item type=\"input\">=CELL(\"COORD\"; D2)</item> returns $A:$D$2."
+msgstr ""
+
+#: 04060104.xhp#par_id3163720.185.help.text
+msgid "<item type=\"input\">=CELL(\"COORD\"; Sheet3.D2)</item> returns $C:$D$2."
+msgstr ""
+
+#: 04060104.xhp#par_id3155910.186.help.text
+msgid "CONTENTS"
+msgstr ""
+
+#: 04060104.xhp#par_id3156041.187.help.text
+msgid "Returns the contents of the referenced cell, without any formatting."
+msgstr ""
+
+#: 04060104.xhp#par_id3151069.188.help.text
+msgctxt "04060104.xhp#par_id3151069.188.help.text"
+msgid "TYPE"
+msgstr ""
+
+#: 04060104.xhp#par_id3155344.189.help.text
+msgid "Returns the type of cell contents."
+msgstr ""
+
+#: 04060104.xhp#par_id3145217.190.help.text
+msgid "b = blank. empty cell"
+msgstr ""
+
+#: 04060104.xhp#par_id3155176.191.help.text
+msgid "l = label. Text, result of a formula as text"
+msgstr ""
+
+#: 04060104.xhp#par_id3147280.192.help.text
+msgid "v = value. Value, result of a formula as a number"
+msgstr ""
+
+#: 04060104.xhp#par_id3156348.193.help.text
+msgid "WIDTH"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#par_id3152355.195.help.text
+msgid "PREFIX"
+msgstr ""
+
+#: 04060104.xhp#par_id3154230.196.help.text
+msgid "Returns the alignment of the referenced cell."
+msgstr ""
+
+#: 04060104.xhp#par_id3155946.197.help.text
+msgid "' = align left or left-justified"
+msgstr ""
+
+#: 04060104.xhp#par_id3147220.198.help.text
+msgid "\" = align right"
+msgstr ""
+
+#: 04060104.xhp#par_id3149038.199.help.text
+msgid "^ = centered"
+msgstr ""
+
+#: 04060104.xhp#par_id3153129.200.help.text
+msgid "\\ = repeating (currently inactive)"
+msgstr ""
+
+#: 04060104.xhp#par_id3154406.201.help.text
+msgid "PROTECT"
+msgstr ""
+
+#: 04060104.xhp#par_id3145127.202.help.text
+msgid "Returns the status of the cell protection for the cell."
+msgstr ""
+
+#: 04060104.xhp#par_id3155794.203.help.text
+msgid "1 = cell is protected"
+msgstr ""
+
+#: 04060104.xhp#par_id3155072.204.help.text
+msgid "0 = cell is not protected"
+msgstr ""
+
+#: 04060104.xhp#par_id3156178.205.help.text
+msgid "FORMAT"
+msgstr ""
+
+#: 04060104.xhp#par_id3150220.206.help.text
+msgid "Returns a character string that indicates the number format."
+msgstr ""
+
+#: 04060104.xhp#par_id3153824.207.help.text
+msgid ", = number with thousands separator"
+msgstr ""
+
+#: 04060104.xhp#par_id3153837.208.help.text
+msgid "F = number without thousands separator"
+msgstr ""
+
+#: 04060104.xhp#par_id3150318.209.help.text
+msgid "C = currency format"
+msgstr ""
+
+#: 04060104.xhp#par_id3153168.210.help.text
+msgid "S = exponential representation, for example, 1.234+E56"
+msgstr ""
+
+#: 04060104.xhp#par_id3153515.211.help.text
+msgid "P = percentage"
+msgstr ""
+
+#: 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 ""
+
+#: 04060104.xhp#par_id3150575.213.help.text
+msgid "D1 = MMM-D-YY, MM-D-YY and similar formats"
+msgstr ""
+
+#: 04060104.xhp#par_id3150589.214.help.text
+msgid "D2 = DD-MM"
+msgstr ""
+
+#: 04060104.xhp#par_id3151034.215.help.text
+msgid "D3 = MM-YY"
+msgstr ""
+
+#: 04060104.xhp#par_id3156371.216.help.text
+msgid "D4 = DD-MM-YYYY HH:MM:SS"
+msgstr ""
+
+#: 04060104.xhp#par_id3157881.217.help.text
+msgid "D5 = MM-DD"
+msgstr ""
+
+#: 04060104.xhp#par_id3157894.218.help.text
+msgid "D6 = HH:MM:SS AM/PM"
+msgstr ""
+
+#: 04060104.xhp#par_id3154068.219.help.text
+msgid "D7 = HH:MM AM/PM"
+msgstr ""
+
+#: 04060104.xhp#par_id3150286.220.help.text
+msgid "D8 = HH:MM:SS"
+msgstr ""
+
+#: 04060104.xhp#par_id3145756.221.help.text
+msgid "D9 = HH:MM"
+msgstr ""
+
+#: 04060104.xhp#par_id3145768.222.help.text
+msgid "G = All other formats"
+msgstr ""
+
+#: 04060104.xhp#par_id3153375.223.help.text
+msgid "- (Minus) at the end = negative numbers are formatted in color"
+msgstr ""
+
+#: 04060104.xhp#par_id3155545.224.help.text
+msgid "() (brackets) at the end = there is an opening bracket in the format code"
+msgstr ""
+
+#: 04060104.xhp#par_id3154594.225.help.text
+msgid "COLOR"
+msgstr ""
+
+#: 04060104.xhp#par_id3152922.226.help.text
+msgid "Returns 1, if negative values have been formatted in color, otherwise 0."
+msgstr ""
+
+#: 04060104.xhp#par_id3145563.227.help.text
+msgid "PARENTHESES"
+msgstr ""
+
+#: 04060104.xhp#par_id3156072.228.help.text
+msgid "Returns 1 if the format code contains an opening bracket (, otherwise 0."
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#tit.help.text
+msgctxt "04060103.xhp#tit.help.text"
+msgid "Financial Functions Part One"
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3143284.1.help.text
+msgctxt "04060103.xhp#hd_id3143284.1.help.text"
+msgid "Financial Functions Part One"
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#bm_id3153366.help.text
+msgid "<bookmark_value>AMORDEGRC function</bookmark_value> <bookmark_value>depreciations;degressive amortizations</bookmark_value>"
+msgstr ""
+
+#: 04060103.xhp#hd_id3153366.359.help.text
+msgid "AMORDEGRC"
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3155855.361.help.text
+msgctxt "04060103.xhp#hd_id3155855.361.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060103.xhp#par_id3147427.362.help.text
+msgid "AMORDEGRC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
+msgstr ""
+
+#: 04060103.xhp#par_id3147125.363.help.text
+msgid " <emph>Cost</emph> is the acquisition costs."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060103.xhp#bm_id3153765.help.text
+msgid "<bookmark_value>AMORLINC function</bookmark_value> <bookmark_value>depreciations;linear amortizations</bookmark_value>"
+msgstr ""
+
+#: 04060103.xhp#hd_id3153765.369.help.text
+msgid "AMORLINC"
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3150044.371.help.text
+msgctxt "04060103.xhp#hd_id3150044.371.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060103.xhp#par_id3147363.372.help.text
+msgid "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
+msgstr ""
+
+#: 04060103.xhp#par_id3146920.373.help.text
+msgid " <emph>Cost</emph> means the acquisition costs."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060103.xhp#bm_id3145257.help.text
+msgid "<bookmark_value>ACCRINT function</bookmark_value>"
+msgstr ""
+
+#: 04060103.xhp#hd_id3145257.335.help.text
+msgid "ACCRINT"
+msgstr ""
+
+#: 04060103.xhp#bm_id3151276.help.text
+msgid "<bookmark_value>accrued interests;periodic payments</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3152581.337.help.text
+msgctxt "04060103.xhp#hd_id3152581.337.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060103.xhp#par_id3159092.338.help.text
+msgid "ACCRINT(Issue; FirstInterest; Settlement; Rate; Par; Frequency; Basis)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#par_id3155376.340.help.text
+msgid " <emph>FirstInterest</emph> is the first interest date of the security."
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#par_id3154486.342.help.text
+msgid " <emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3148699.345.help.text
+#, fuzzy
+msgctxt "04060103.xhp#hd_id3148699.345.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060103.xhp#bm_id3151240.help.text
+msgid "<bookmark_value>ACCRINTM function</bookmark_value> <bookmark_value>accrued interests;one-off payments</bookmark_value>"
+msgstr ""
+
+#: 04060103.xhp#hd_id3151240.348.help.text
+msgid "ACCRINTM"
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3159097.350.help.text
+msgctxt "04060103.xhp#hd_id3159097.350.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060103.xhp#par_id3147074.351.help.text
+msgid "ACCRINTM(Issue; Settlement; Rate; Par; Basis)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060103.xhp#par_id3153972.354.help.text
+msgid " <emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)."
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3155384.356.help.text
+#, fuzzy
+msgctxt "04060103.xhp#hd_id3155384.356.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060103.xhp#bm_id3145753.help.text
+msgid "<bookmark_value>RECEIVED function</bookmark_value> <bookmark_value>amount received for fixed-interest securities</bookmark_value>"
+msgstr ""
+
+#: 04060103.xhp#hd_id3145753.390.help.text
+msgid "RECEIVED"
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3149385.392.help.text
+msgctxt "04060103.xhp#hd_id3149385.392.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060103.xhp#par_id3145362.393.help.text
+msgid "RECEIVED(\"Settlement\"; \"Maturity\"; Investment; Discount; Basis)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060103.xhp#par_id3155525.396.help.text
+msgid " <emph>Investment</emph> is the purchase sum."
+msgstr ""
+
+#: 04060103.xhp#par_id3155760.397.help.text
+msgid " <emph>Discount</emph> is the percentage discount on acquisition of the security."
+msgstr ""
+
+#: 04060103.xhp#hd_id3154710.398.help.text
+#, fuzzy
+msgctxt "04060103.xhp#hd_id3154710.398.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060103.xhp#par_id3146108.400.help.text
+msgid "The amount received on the maturity date is calculated as follows:"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3147556.3.help.text
+msgid "PV"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3147407.7.help.text
+msgctxt "04060103.xhp#hd_id3147407.7.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060103.xhp#par_id3150395.8.help.text
+msgid "PV(Rate; NPer; Pmt; FV; Type)"
+msgstr ""
+
+#: 04060103.xhp#par_id3151341.9.help.text
+msgid " <emph>Rate</emph> defines the interest rate per period."
+msgstr ""
+
+#: 04060103.xhp#par_id3153023.10.help.text
+msgid " <emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 04060103.xhp#par_id3146323.11.help.text
+msgid " <emph>Pmt</emph> is the regular payment made per period."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060103.xhp#par_idN10B13.help.text
+msgctxt "04060103.xhp#par_idN10B13.help.text"
+msgid " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+msgstr ""
+
+#: 04060103.xhp#hd_id3150037.14.help.text
+#, fuzzy
+msgctxt "04060103.xhp#hd_id3150037.14.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3152978.19.help.text
+msgid "SYD"
+msgstr ""
+
+#: 04060103.xhp#par_id3148732.20.help.text
+msgid "<ahelp hid=\"HID_FUNC_DIA\">Returns the arithmetic-declining depreciation rate.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3149431.22.help.text
+msgctxt "04060103.xhp#hd_id3149431.22.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060103.xhp#par_id3150483.23.help.text
+msgid "SYD(Cost; Salvage; Life; Period)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#par_id3147423.25.help.text
+msgid " <emph>Salvage</emph> is the value of an asset after depreciation."
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#par_id3147473.27.help.text
+msgid " <emph>Period</emph> defines the period for which the depreciation is to be calculated."
+msgstr ""
+
+#: 04060103.xhp#hd_id3148434.28.help.text
+#, fuzzy
+msgctxt "04060103.xhp#hd_id3148434.28.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060103.xhp#par_id3155258.32.help.text
+msgid " <emph>A</emph> "
+msgstr ""
+
+#: 04060103.xhp#par_id3154558.33.help.text
+msgid " <emph>B</emph> "
+msgstr ""
+
+#: 04060103.xhp#par_id3152372.34.help.text
+msgid " <emph>C</emph> "
+msgstr ""
+
+#: 04060103.xhp#par_id3149949.35.help.text
+msgid " <emph>D</emph> "
+msgstr ""
+
+#: 04060103.xhp#par_id3145123.36.help.text
+msgid " <emph>E</emph> "
+msgstr ""
+
+#: 04060103.xhp#par_id3149504.37.help.text
+msgctxt "04060103.xhp#par_id3149504.37.help.text"
+msgid "1"
+msgstr ""
+
+#: 04060103.xhp#par_id3153778.38.help.text
+msgid " <item type=\"input\">Initial Cost</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3159083.39.help.text
+msgid " <item type=\"input\">Salvage Value</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3150002.40.help.text
+msgid " <item type=\"input\">Useful Life</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3153006.41.help.text
+msgid " <item type=\"input\">Time Period</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3154505.42.help.text
+msgid " <item type=\"input\">Deprec. SYD</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3150336.43.help.text
+msgctxt "04060103.xhp#par_id3150336.43.help.text"
+msgid "2"
+msgstr ""
+
+#: 04060103.xhp#par_id3155926.44.help.text
+msgid " <item type=\"input\">50,000 currency units</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3153736.45.help.text
+msgid " <item type=\"input\">10,000 currency units</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3150131.46.help.text
+msgctxt "04060103.xhp#par_id3150131.46.help.text"
+msgid " <item type=\"input\">5</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3148766.47.help.text
+msgid " <item type=\"input\">1</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3159136.48.help.text
+msgid " <item type=\"input\">13,333.33 currency units</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3151018.49.help.text
+msgctxt "04060103.xhp#par_id3151018.49.help.text"
+msgid "3"
+msgstr ""
+
+#: 04060103.xhp#par_id3148397.50.help.text
+msgid " <item type=\"input\">2</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3146907.51.help.text
+msgid " <item type=\"input\">10,666.67 currency units</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3147356.52.help.text
+msgctxt "04060103.xhp#par_id3147356.52.help.text"
+msgid "4"
+msgstr ""
+
+#: 04060103.xhp#par_id3150267.53.help.text
+msgid " <item type=\"input\">3</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3145628.54.help.text
+msgid " <item type=\"input\">8,000.00 currency units</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3149004.55.help.text
+msgctxt "04060103.xhp#par_id3149004.55.help.text"
+msgid "5"
+msgstr ""
+
+#: 04060103.xhp#par_id3153545.56.help.text
+msgid " <item type=\"input\">4</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3154634.57.help.text
+msgid " <item type=\"input\">5,333.33 currency units</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3147537.58.help.text
+msgctxt "04060103.xhp#par_id3147537.58.help.text"
+msgid "6"
+msgstr ""
+
+#: 04060103.xhp#par_id3155085.59.help.text
+msgctxt "04060103.xhp#par_id3155085.59.help.text"
+msgid " <item type=\"input\">5</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3158413.60.help.text
+msgid " <item type=\"input\">2,666.67 currency units</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3154866.61.help.text
+msgctxt "04060103.xhp#par_id3154866.61.help.text"
+msgid "7"
+msgstr ""
+
+#: 04060103.xhp#par_id3155404.62.help.text
+msgid " <item type=\"input\">6</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3148431.63.help.text
+msgid " <item type=\"input\">0.00 currency units</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3156261.64.help.text
+msgctxt "04060103.xhp#par_id3156261.64.help.text"
+msgid "8"
+msgstr ""
+
+#: 04060103.xhp#par_id3083286.65.help.text
+msgid " <item type=\"input\">7</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3083443.67.help.text
+msgctxt "04060103.xhp#par_id3083443.67.help.text"
+msgid "9"
+msgstr ""
+
+#: 04060103.xhp#par_id3154815.68.help.text
+msgid " <item type=\"input\">8</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3145082.70.help.text
+msgctxt "04060103.xhp#par_id3145082.70.help.text"
+msgid "10"
+msgstr ""
+
+#: 04060103.xhp#par_id3156307.71.help.text
+msgid " <item type=\"input\">9</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3147564.73.help.text
+msgctxt "04060103.xhp#par_id3147564.73.help.text"
+msgid "11"
+msgstr ""
+
+#: 04060103.xhp#par_id3146856.74.help.text
+msgid " <item type=\"input\">10</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3150880.76.help.text
+msgctxt "04060103.xhp#par_id3150880.76.help.text"
+msgid "12"
+msgstr ""
+
+#: 04060103.xhp#par_id3145208.77.help.text
+msgctxt "04060103.xhp#par_id3145208.77.help.text"
+msgid "13"
+msgstr ""
+
+#: 04060103.xhp#par_id3156113.78.help.text
+msgid " <item type=\"input\">>0</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3153625.79.help.text
+msgid " <item type=\"input\">Total</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3151297.80.help.text
+msgid " <item type=\"input\">40,000.00 currency units</item> "
+msgstr ""
+
+#: 04060103.xhp#par_id3149979.81.help.text
+msgid "The formula in E2 is as follows:"
+msgstr ""
+
+#: 04060103.xhp#par_id3155849.82.help.text
+msgid " <item type=\"input\">=SYD($A$2;$B$2;$C$2;D2)</item> "
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060103.xhp#par_id3152811.85.help.text
+msgid " <item type=\"input\">=SUMIF(E2:E11;A13)</item> "
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#bm_id3155104.help.text
+msgid "<bookmark_value>DISC function</bookmark_value> <bookmark_value>allowances</bookmark_value> <bookmark_value>discounts</bookmark_value>"
+msgstr ""
+
+#: 04060103.xhp#hd_id3155104.379.help.text
+msgid "DISC"
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3153982.381.help.text
+msgctxt "04060103.xhp#hd_id3153982.381.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060103.xhp#par_id3149756.382.help.text
+msgid "DISC(\"Settlement\"; \"Maturity\"; Price; Redemption; Basis)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3151174.387.help.text
+#, fuzzy
+msgctxt "04060103.xhp#hd_id3151174.387.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3154695.402.help.text
+msgid "DURATION_ADD"
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3153904.404.help.text
+msgctxt "04060103.xhp#hd_id3153904.404.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060103.xhp#par_id3153373.405.help.text
+msgid "DURATION_ADD(\"Settlement\"; \"Maturity\"; Coupon; Yield; Frequency; Basis)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060103.xhp#par_id3153096.408.help.text
+msgid " <emph>Coupon</emph> is the annual coupon interest rate (nominal rate of interest)"
+msgstr ""
+
+#: 04060103.xhp#par_id3154594.409.help.text
+msgid " <emph>Yield</emph> is the annual yield of the security."
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3146995.411.help.text
+#, fuzzy
+msgctxt "04060103.xhp#hd_id3146995.411.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3159147.88.help.text
+msgid "EFFECTIVE"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3150510.91.help.text
+msgctxt "04060103.xhp#hd_id3150510.91.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060103.xhp#par_id3148805.92.help.text
+msgid "EFFECTIVE(Nom; P)"
+msgstr ""
+
+#: 04060103.xhp#par_id3149768.93.help.text
+msgid " <emph>Nom</emph> is the nominal interest."
+msgstr ""
+
+#: 04060103.xhp#par_id3149334.94.help.text
+msgid " <emph>P</emph> is the number of interest payment periods per year."
+msgstr ""
+
+#: 04060103.xhp#hd_id3154223.95.help.text
+#, fuzzy
+msgctxt "04060103.xhp#hd_id3154223.95.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060103.xhp#bm_id3147241.help.text
+msgid "<bookmark_value>effective interest rates</bookmark_value> <bookmark_value>EFFECT_ADD function</bookmark_value>"
+msgstr ""
+
+#: 04060103.xhp#hd_id3147241.414.help.text
+msgid "EFFECT_ADD"
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3155364.416.help.text
+msgctxt "04060103.xhp#hd_id3155364.416.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060103.xhp#par_id3155118.417.help.text
+msgid "EFFECT_ADD(NominalRate; NPerY)"
+msgstr ""
+
+#: 04060103.xhp#par_id3148907.418.help.text
+msgid " <emph>NominalRate</emph> is the annual nominal rate of interest."
+msgstr ""
+
+#: 04060103.xhp#par_id3154274.419.help.text
+msgid " <emph>NPerY </emph>is the number of interest payments per year."
+msgstr ""
+
+#: 04060103.xhp#hd_id3149156.420.help.text
+#, fuzzy
+msgctxt "04060103.xhp#hd_id3149156.420.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060103.xhp#par_id3148927.422.help.text
+msgid " <item type=\"input\">=EFFECT_ADD(0.0525;4)</item> returns 0.053543 or 5.3543%."
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3149998.99.help.text
+msgid "DDB"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3156038.102.help.text
+msgctxt "04060103.xhp#hd_id3156038.102.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060103.xhp#par_id3166452.103.help.text
+msgid "DDB(Cost; Salvage; Life; Period; Factor)"
+msgstr ""
+
+#: 04060103.xhp#par_id3153237.104.help.text
+msgid " <emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 04060103.xhp#par_id3149787.105.help.text
+msgid " <emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#par_id3149736.107.help.text
+msgid " <emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3159274.109.help.text
+#, fuzzy
+msgctxt "04060103.xhp#hd_id3159274.109.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3149962.113.help.text
+msgid "DB"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3149807.116.help.text
+msgctxt "04060103.xhp#hd_id3149807.116.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060103.xhp#par_id3153349.117.help.text
+msgid "DB(Cost; Salvage; Life; Period; Month)"
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#par_id3148658.119.help.text
+msgid " <emph>Salvage</emph> is the value of an asset at the end of the depreciation."
+msgstr ""
+
+#: 04060103.xhp#par_id3145371.120.help.text
+msgid " <emph>Life</emph> defines the period over which an asset is depreciated."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3151130.123.help.text
+#, fuzzy
+msgctxt "04060103.xhp#hd_id3151130.123.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 04060103.xhp#par_id3149513.125.help.text
+msgid " <item type=\"input\">=DB(25000;1000;36;1;6)</item> = 1,075.00 currency units"
+msgstr ""
+
+#: 04060103.xhp#par_id3159242.126.help.text
+msgid "The fixed-declining depreciation of the computer system is 1,075.00 currency units."
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3153948.128.help.text
+msgid "IRR"
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3150599.130.help.text
+msgctxt "04060103.xhp#hd_id3150599.130.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060103.xhp#par_id3155427.131.help.text
+msgid "IRR(Values; Guess)"
+msgstr ""
+
+#: 04060103.xhp#par_id3144758.132.help.text
+msgid " <emph>Values</emph> represents an array containing the values."
+msgstr ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3151258.134.help.text
+#, fuzzy
+msgctxt "04060103.xhp#hd_id3151258.134.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060103.xhp#hd_id3151012.314.help.text
+msgid "ISPMT"
+msgstr ""
+
+#: 04060103.xhp#par_id3148693.315.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISPMT\">Calculates the level of interest for unchanged amortization installments.</ahelp>"
+msgstr ""
+
+#: 04060103.xhp#hd_id3154661.316.help.text
+msgctxt "04060103.xhp#hd_id3154661.316.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: 04060103.xhp#par_id3146070.317.help.text
+msgid "ISPMT(Rate; Period; TotalPeriods; Invest)"
+msgstr ""
+
+#: 04060103.xhp#par_id3148672.318.help.text
+msgid " <emph>Rate</emph> sets the periodic interest rate."
+msgstr ""
+
+#: 04060103.xhp#par_id3145777.319.help.text
+msgid " <emph>Period</emph> is the number of installments for calculation of interest."
+msgstr ""
+
+#: 04060103.xhp#par_id3153678.320.help.text
+msgid " <emph>TotalPeriods</emph> is the total number of installment periods."
+msgstr ""
+
+#: 04060103.xhp#par_id3159390.321.help.text
+msgid " <emph>Invest</emph> is the amount of the investment."
+msgstr ""
+
+#: 04060103.xhp#hd_id3156162.322.help.text
+#, fuzzy
+msgctxt "04060103.xhp#hd_id3156162.322.help.text"
+msgid "Example"
+msgstr "Приклад:"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: func_days.xhp#tit.help.text
+msgid "DAYS "
+msgstr ""
+
+#: func_days.xhp#bm_id3151328.help.text
+msgid "<bookmark_value>DAYS function</bookmark_value>"
+msgstr ""
+
+#: func_days.xhp#hd_id3151328.116.help.text
+msgid "<variable id=\"days\"><link href=\"text/scalc/01/func_days.xhp\">DAYS</link></variable>"
+msgstr ""
+
+#: 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 ""
+
+#: func_days.xhp#hd_id3155184.118.help.text
+msgctxt "func_days.xhp#hd_id3155184.118.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: func_days.xhp#par_id3149578.119.help.text
+msgid "DAYS(Date2; Date1)"
+msgstr ""
+
+#: 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 ""
+
+#: func_days.xhp#hd_id3151001.121.help.text
+#, fuzzy
+msgctxt "func_days.xhp#hd_id3151001.121.help.text"
+msgid "Examples"
+msgstr "Приклади:"
+
+#: 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 ""
+
+#: func_days.xhp#par_id3163720.172.help.text
+msgid "=DAYS(\"1990-10-10\";\"1980-10-10\") returns 3652 days."
+msgstr ""
+
+#: 02140100.xhp#tit.help.text
+msgctxt "02140100.xhp#tit.help.text"
+msgid "Down"
+msgstr ""
+
+#: 02140100.xhp#hd_id3150792.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/02140100.xhp\" name=\"Down\">Down</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 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 ""
+
+#: 04030000.xhp#tit.help.text
+msgctxt "04030000.xhp#tit.help.text"
+msgid "Rows"
+msgstr ""
+
+#: 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 ""
+
+#: 04030000.xhp#hd_id3150541.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04030000.xhp\" name=\"Rows\">Rows</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 04060108.xhp#tit.help.text
+msgctxt "04060108.xhp#tit.help.text"
+msgid "Statistics Functions"
+msgstr ""
+
+#: 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 ""
+
+#: 04060108.xhp#hd_id3153018.1.help.text
+msgctxt "04060108.xhp#hd_id3153018.1.help.text"
+msgid "Statistics Functions"
+msgstr ""
+
+#: 04060108.xhp#par_id3157874.2.help.text
+msgid "<variable id=\"statistiktext\">This category contains the <emph>Statistics</emph> functions. </variable>"
+msgstr ""
+
+#: 04060108.xhp#par_id3149001.9.help.text
+msgid "Some of the examples use the following data table:"
+msgstr ""
+
+#: 04060108.xhp#par_id3148775.10.help.text
+msgctxt "04060108.xhp#par_id3148775.10.help.text"
+msgid "C"
+msgstr ""
+
+#: 04060108.xhp#par_id3145297.11.help.text
+msgctxt "04060108.xhp#par_id3145297.11.help.text"
+msgid "D"
+msgstr ""
+
+#: 04060108.xhp#par_id3150661.12.help.text
+msgctxt "04060108.xhp#par_id3150661.12.help.text"
+msgid "2"
+msgstr ""
+
+#: 04060108.xhp#par_id3153551.13.help.text
+msgid "x value"
+msgstr ""
+
+#: 04060108.xhp#par_id3147536.14.help.text
+msgid "y value"
+msgstr ""
+
+#: 04060108.xhp#par_id3153224.15.help.text
+msgctxt "04060108.xhp#par_id3153224.15.help.text"
+msgid "3"
+msgstr ""
+
+#: 04060108.xhp#par_id3150475.16.help.text
+msgctxt "04060108.xhp#par_id3150475.16.help.text"
+msgid "-5"
+msgstr ""
+
+#: 04060108.xhp#par_id3155367.17.help.text
+msgid "-3"
+msgstr ""
+
+#: 04060108.xhp#par_id3149783.18.help.text
+msgctxt "04060108.xhp#par_id3149783.18.help.text"
+msgid "4"
+msgstr ""
+
+#: 04060108.xhp#par_id3153181.19.help.text
+msgid "-2"
+msgstr ""
+
+#: 04060108.xhp#par_id3148429.20.help.text
+msgctxt "04060108.xhp#par_id3148429.20.help.text"
+msgid "0"
+msgstr ""
+
+#: 04060108.xhp#par_id3152588.21.help.text
+msgctxt "04060108.xhp#par_id3152588.21.help.text"
+msgid "5"
+msgstr ""
+
+#: 04060108.xhp#par_id3147483.22.help.text
+msgid "-1"
+msgstr ""
+
+#: 04060108.xhp#par_id3083443.23.help.text
+msgctxt "04060108.xhp#par_id3083443.23.help.text"
+msgid "1"
+msgstr ""
+
+#: 04060108.xhp#par_id3149826.24.help.text
+msgctxt "04060108.xhp#par_id3149826.24.help.text"
+msgid "6"
+msgstr ""
+
+#: 04060108.xhp#par_id3163820.25.help.text
+msgctxt "04060108.xhp#par_id3163820.25.help.text"
+msgid "0"
+msgstr ""
+
+#: 04060108.xhp#par_id3154816.26.help.text
+msgctxt "04060108.xhp#par_id3154816.26.help.text"
+msgid "3"
+msgstr ""
+
+#: 04060108.xhp#par_id3149276.27.help.text
+msgctxt "04060108.xhp#par_id3149276.27.help.text"
+msgid "7"
+msgstr ""
+
+#: 04060108.xhp#par_id3149267.28.help.text
+msgctxt "04060108.xhp#par_id3149267.28.help.text"
+msgid "2"
+msgstr ""
+
+#: 04060108.xhp#par_id3156310.29.help.text
+msgctxt "04060108.xhp#par_id3156310.29.help.text"
+msgid "4"
+msgstr ""
+
+#: 04060108.xhp#par_id3154639.30.help.text
+msgctxt "04060108.xhp#par_id3154639.30.help.text"
+msgid "8"
+msgstr ""
+
+#: 04060108.xhp#par_id3145205.31.help.text
+msgctxt "04060108.xhp#par_id3145205.31.help.text"
+msgid "4"
+msgstr ""
+
+#: 04060108.xhp#par_id3153276.32.help.text
+msgctxt "04060108.xhp#par_id3153276.32.help.text"
+msgid "6"
+msgstr ""
+
+#: 04060108.xhp#par_id3150756.33.help.text
+msgctxt "04060108.xhp#par_id3150756.33.help.text"
+msgid "9"
+msgstr ""
+
+#: 04060108.xhp#par_id3156095.34.help.text
+msgctxt "04060108.xhp#par_id3156095.34.help.text"
+msgid "6"
+msgstr ""
+
+#: 04060108.xhp#par_id3152929.35.help.text
+msgctxt "04060108.xhp#par_id3152929.35.help.text"
+msgid "8"
+msgstr ""
+
+#: 04060108.xhp#par_id3156324.36.help.text
+msgid "The statistical functions are described in the following subsections."
+msgstr ""
+
+#: 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 ""
+
+#: 05030300.xhp#tit.help.text
+msgid "Hide"
+msgstr ""
+
+#: 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 ""
+
+#: 05030300.xhp#hd_id3147265.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/05030300.xhp\" name=\"Hide\">Hide</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 05030300.xhp#par_id3156281.2.help.text
+msgid "<ahelp hid=\".uno:Hide\">Hides selected rows, columns or individual sheets.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 05030300.xhp#par_id3145251.4.help.text
+msgid "To display hidden rows, columns or sheets"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: func_minute.xhp#tit.help.text
+msgid "MINUTE"
+msgstr ""
+
+#: func_minute.xhp#bm_id3149803.help.text
+msgid "<bookmark_value>MINUTE function</bookmark_value>"
+msgstr ""
+
+#: func_minute.xhp#hd_id3149803.66.help.text
+msgid "<variable id=\"minute\"><link href=\"text/scalc/01/func_minute.xhp\">MINUTE</link></variable>"
+msgstr ""
+
+#: 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 ""
+
+#: func_minute.xhp#hd_id3154343.68.help.text
+msgctxt "func_minute.xhp#hd_id3154343.68.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: func_minute.xhp#par_id3148660.69.help.text
+msgid "MINUTE(Number)"
+msgstr ""
+
+#: 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 ""
+
+#: func_minute.xhp#hd_id3145374.71.help.text
+#, fuzzy
+msgctxt "func_minute.xhp#hd_id3145374.71.help.text"
+msgid "Examples"
+msgstr "Приклади:"
+
+#: func_minute.xhp#par_id3148463.72.help.text
+msgid "<item type=\"input\">=MINUTE(8.999)</item> returns 58"
+msgstr ""
+
+#: func_minute.xhp#par_id3149419.73.help.text
+msgid "<item type=\"input\">=MINUTE(8.9999)</item> returns 59"
+msgstr ""
+
+#: func_minute.xhp#par_id3144755.74.help.text
+msgid "<item type=\"input\">=MINUTE(NOW())</item> returns the current minute value."
+msgstr ""
+
+#: 12030100.xhp#tit.help.text
+msgid "Sort Criteria"
+msgstr ""
+
+#: 12030100.xhp#bm_id3152350.help.text
+msgid "<bookmark_value>sorting; sort criteria for database ranges</bookmark_value>"
+msgstr ""
+
+#: 12030100.xhp#hd_id3152350.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12030100.xhp\" name=\"Sort Criteria\">Sort Criteria</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</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 ""
+
+#: 12030100.xhp#par_id3152462.24.help.text
+msgid "Ensure that you include any row and column titles in the selection."
+msgstr ""
+
+#: 12030100.xhp#hd_id3147428.3.help.text
+msgctxt "12030100.xhp#hd_id3147428.3.help.text"
+msgid "Sort by"
+msgstr ""
+
+#: 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 ""
+
+#: 12030100.xhp#hd_id3146121.5.help.text
+msgctxt "12030100.xhp#hd_id3146121.5.help.text"
+msgid "Ascending"
+msgstr ""
+
+#: 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 ""
+
+#: 12030100.xhp#hd_id3155411.7.help.text
+msgctxt "12030100.xhp#hd_id3155411.7.help.text"
+msgid "Descending"
+msgstr ""
+
+#: 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 ""
+
+#: 12030100.xhp#hd_id3154492.9.help.text
+msgctxt "12030100.xhp#hd_id3154492.9.help.text"
+msgid "Then by"
+msgstr ""
+
+#: 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 ""
+
+#: 12030100.xhp#hd_id3149413.11.help.text
+msgctxt "12030100.xhp#hd_id3149413.11.help.text"
+msgid "Ascending"
+msgstr ""
+
+#: 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 ""
+
+#: 12030100.xhp#hd_id3146972.13.help.text
+msgctxt "12030100.xhp#hd_id3146972.13.help.text"
+msgid "Descending"
+msgstr ""
+
+#: 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 ""
+
+#: 12030100.xhp#hd_id3154756.15.help.text
+msgctxt "12030100.xhp#hd_id3154756.15.help.text"
+msgid "Then by"
+msgstr ""
+
+#: 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 ""
+
+#: 12030100.xhp#hd_id3163808.17.help.text
+msgctxt "12030100.xhp#hd_id3163808.17.help.text"
+msgid "Ascending"
+msgstr ""
+
+#: 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 ""
+
+#: 12030100.xhp#hd_id3147364.19.help.text
+msgctxt "12030100.xhp#hd_id3147364.19.help.text"
+msgid "Descending"
+msgstr ""
+
+#: 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 ""
+
+#: 12030100.xhp#hd_id3150300.21.help.text
+msgid "Sort Ascending/Descending"
+msgstr ""
+
+#: 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 ""
+
+#: 12030100.xhp#par_id3159236.25.help.text
+msgid "Icons on the <emph>Standard</emph> toolbar"
+msgstr ""
+
+#: 05100000.xhp#tit.help.text
+msgid "Styles and Formatting"
+msgstr ""
+
+#: 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 ""
+
+#: 05100000.xhp#hd_id3150447.1.help.text
+msgid "<link href=\"text/scalc/01/05100000.xhp\" name=\"Styles and Formatting\">Styles and Formatting</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 05100000.xhp#hd_id3150012.36.help.text
+msgid "How to apply a cell style:"
+msgstr ""
+
+#: 05100000.xhp#par_id3159155.37.help.text
+msgid "Select the cell or cell range."
+msgstr ""
+
+#: 05100000.xhp#par_id3145749.38.help.text
+msgid "Double-click the style in the Styles and Formatting window."
+msgstr ""
+
+#: 05100000.xhp#hd_id3153877.4.help.text
+msgctxt "05100000.xhp#hd_id3153877.4.help.text"
+msgid "Cell Styles"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 05100000.xhp#par_id3154255.5.help.text
+msgctxt "05100000.xhp#par_id3154255.5.help.text"
+msgid "Cell Styles"
+msgstr ""
+
+#: 05100000.xhp#hd_id3153963.7.help.text
+msgctxt "05100000.xhp#hd_id3153963.7.help.text"
+msgid "Page Styles"
+msgstr ""
+
+#: 05100000.xhp#par_id3147003.9.help.text
+msgid "<ahelp hid=\".uno:PageStyle\">Displays the Page Styles available for indirect page formatting.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 05100000.xhp#par_id3150361.8.help.text
+msgctxt "05100000.xhp#par_id3150361.8.help.text"
+msgid "Page Styles"
+msgstr ""
+
+#: 05100000.xhp#hd_id3150202.10.help.text
+msgctxt "05100000.xhp#hd_id3150202.10.help.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 05100000.xhp#par_id3156198.11.help.text
+msgctxt "05100000.xhp#par_id3156198.11.help.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: 05100000.xhp#hd_id3148870.13.help.text
+msgid "How to apply a new style with the paint can:"
+msgstr ""
+
+#: 05100000.xhp#par_id3145078.27.help.text
+msgid "Select the desired style from the Styles and Formatting window."
+msgstr ""
+
+#: 05100000.xhp#par_id3159098.28.help.text
+msgid "Click the <emph>Fill Format Mode</emph> icon."
+msgstr ""
+
+#: 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 ""
+
+#: 05100000.xhp#par_id3149438.29.help.text
+msgid "Click the <emph>Fill Format Mode</emph> again to exit this mode."
+msgstr ""
+
+#: 05100000.xhp#hd_id3153975.16.help.text
+msgctxt "05100000.xhp#hd_id3153975.16.help.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 05100000.xhp#par_id3146963.17.help.text
+msgctxt "05100000.xhp#par_id3146963.17.help.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: 05100000.xhp#hd_id3153813.19.help.text
+msgctxt "05100000.xhp#hd_id3153813.19.help.text"
+msgid "Update Style"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 05100000.xhp#par_id3147501.20.help.text
+msgctxt "05100000.xhp#par_id3147501.20.help.text"
+msgid "Update Style"
+msgstr ""
+
+#: 05100000.xhp#par_idN109BE.help.text
+msgid "Style List"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 05100000.xhp#hd_id3149053.24.help.text
+msgid "Style Groups"
+msgstr ""
+
+#: 05100000.xhp#par_id3147299.25.help.text
+msgid "<ahelp hid=\"HID_TEMPLATE_FILTER\">Lists the available style groups.</ahelp>"
+msgstr ""
+
+#: func_hour.xhp#tit.help.text
+msgid "HOUR "
+msgstr ""
+
+#: func_hour.xhp#bm_id3154725.help.text
+msgid "<bookmark_value>HOUR function</bookmark_value>"
+msgstr ""
+
+#: func_hour.xhp#hd_id3154725.96.help.text
+msgid "<variable id=\"hour\"><link href=\"text/scalc/01/func_hour.xhp\">HOUR</link></variable>"
+msgstr ""
+
+#: 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 ""
+
+#: func_hour.xhp#hd_id3149338.98.help.text
+msgctxt "func_hour.xhp#hd_id3149338.98.help.text"
+msgid "Syntax"
+msgstr ""
+
+#: func_hour.xhp#par_id3150637.99.help.text
+msgid "HOUR(Number)"
+msgstr ""
+
+#: 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 ""
+
+#: func_hour.xhp#hd_id3153264.101.help.text
+#, fuzzy
+msgctxt "func_hour.xhp#hd_id3153264.101.help.text"
+msgid "Examples"
+msgstr "Приклади:"
+
+#: func_hour.xhp#par_id3159215.103.help.text
+msgid "<item type=\"input\">=HOUR(NOW())</item> returns the current hour"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 06030300.xhp#tit.help.text
+msgid "Trace Dependents"
+msgstr ""
+
+#: 06030300.xhp#bm_id3153252.help.text
+msgid "<bookmark_value>cells; tracing dependents</bookmark_value>"
+msgstr ""
+
+#: 06030300.xhp#hd_id3153252.1.help.text
+msgid "<link href=\"text/scalc/01/06030300.xhp\" name=\"Trace Dependents\">Trace Dependents</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 06060200.xhp#tit.help.text
+msgctxt "06060200.xhp#tit.help.text"
+msgid "Protecting document"
+msgstr ""
+
+#: 06060200.xhp#hd_id3150541.1.help.text
+msgctxt "06060200.xhp#hd_id3150541.1.help.text"
+msgid "Protecting document"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 06060200.xhp#hd_id3152596.4.help.text
+msgctxt "06060200.xhp#hd_id3152596.4.help.text"
+msgid "Password (optional)"
+msgstr ""
+
+#: 06060200.xhp#par_id3155412.5.help.text
+msgid "You can create a password to protect your document against unauthorized or accidental modifications."
+msgstr ""
+
+#: 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 ""
+
+#: 04060100.xhp#tit.help.text
+msgctxt "04060100.xhp#tit.help.text"
+msgid "Functions by Category"
+msgstr ""
+
+#: 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 ""
+
+#: 04060100.xhp#hd_id3154944.16.help.text
+msgctxt "04060100.xhp#hd_id3154944.16.help.text"
+msgid "Functions by Category"
+msgstr ""
+
+#: 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 ""
+
+#: 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
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04060101.xhp\" name=\"Database\">Database</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 04060100.xhp#hd_id3155443.4.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"Date & Time\">Date & Time</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 04060100.xhp#hd_id3147339.5.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Financial\">Financial</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 04060100.xhp#hd_id3153963.6.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04060104.xhp\" name=\"Information\">Information</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 04060100.xhp#hd_id3146316.7.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04060105.xhp\" name=\"Logical\">Logical</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 04060100.xhp#hd_id3148485.8.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04060106.xhp\" name=\"Mathematical\">Mathematical</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 04060100.xhp#hd_id3150363.9.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04060107.xhp\" name=\"Matrix\">Array</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 04060100.xhp#hd_id3150208.10.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Statistical\">Statistical</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 04060100.xhp#hd_id3166428.11.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04060109.xhp\" name=\"Spreadsheet\">Spreadsheet</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 04060100.xhp#hd_id3145585.12.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04060110.xhp\" name=\"Text\">Text</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 04060100.xhp#hd_id3156449.13.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Add-in\">Add-in</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Область\">Область</link>"
+
+#: 04060100.xhp#par_id3150715.14.help.text
+msgid "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operators\">Operators</link> are also available."
+msgstr ""
+
+#: 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/uk/helpcontent2/source/text/scalc/02.po b/source/uk/helpcontent2/source/text/scalc/02.po
new file mode 100644
index 00000000000..b0fc566ce0b
--- /dev/null
+++ b/source/uk/helpcontent2/source/text/scalc/02.po
@@ -0,0 +1,545 @@
+#. 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-13 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "Вставити"
+
+#: 18010000.xhp#bm_id3156329.help.text
+msgid "<bookmark_value>inserting; objects, toolbar icon</bookmark_value>"
+msgstr ""
+
+#: 18010000.xhp#hd_id3156329.1.help.text
+msgid "<link href=\"text/scalc/02/18010000.xhp\" name=\"Insert\">Insert</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 18010000.xhp#par_id3148664.3.help.text
+msgctxt "18010000.xhp#par_id3148664.3.help.text"
+msgid "Tools bar icon:"
+msgstr ""
+
+#: 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 ""
+
+#: 18010000.xhp#par_id3146120.4.help.text
+msgctxt "18010000.xhp#par_id3146120.4.help.text"
+msgid "Insert"
+msgstr "Вставити"
+
+#: 18010000.xhp#par_id3153188.6.help.text
+msgctxt "18010000.xhp#par_id3153188.6.help.text"
+msgid "You can select the following icons:"
+msgstr ""
+
+#: 18010000.xhp#hd_id4283883.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Плаваюча рамка</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/04160500.xhp\" name=\"Незалежна рамка\">Незалежна рамка</link>\n"
+"#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/04160500.xhp\" name=\"Плаваюча рамка\">Плаваюча рамка</link>"
+
+#: 18010000.xhp#hd_id3149410.8.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Спеціальний символ</link>\n"
+"#-#-#-#-# simpress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/04100000.xhp\" name=\"Спеціальні символи\">Спеціальні символи</link>\n"
+"#-#-#-#-# 02.po (PACKAGE VERSION) #-#-#-#-#\n"
+"<link href=\"text/shared/01/04100000.xhp\" name=\"Спеціальні символи\">Спеціальні символи</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=\"З файлу\">З файлу</link>"
+
+#: 18010000.xhp#hd_id3633533.help.text
+#, fuzzy
+msgid "<link href=\"text/shared/01/04160300.xhp\" name=\"Formula\">Formula</link>"
+msgstr "<link href=\"text/shared/01/04140000.xhp\" name=\"З файлу\">З файлу</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=\"Вставити діаграму\">Діаграма</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 об'єкт\">OLE об'єкт</link>"
+
+#: 06080000.xhp#tit.help.text
+msgid "Theme Selection"
+msgstr ""
+
+#: 06080000.xhp#hd_id3153087.1.help.text
+msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Theme Selection\">Theme Selection</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 06080000.xhp#par_id3153953.4.help.text
+msgid "Choose Themes"
+msgstr ""
+
+#: 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 ""
+
+#: 10060000.xhp#tit.help.text
+msgid "Zoom Out"
+msgstr "Зменшити"
+
+#: 10060000.xhp#bm_id3153561.help.text
+msgid "<bookmark_value>page views;reducing scales</bookmark_value><bookmark_value>zooming;reducing page views</bookmark_value>"
+msgstr ""
+
+#: 10060000.xhp#hd_id3153561.1.help.text
+msgid "<link href=\"text/scalc/02/10060000.xhp\" name=\"Zoom Out\">Zoom Out</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 10060000.xhp#par_id3150398.4.help.text
+msgid "The minimum zoom factor is 20%."
+msgstr ""
+
+#: 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 ""
+
+#: 10060000.xhp#par_id3150440.3.help.text
+msgid "Zooming Out"
+msgstr ""
+
+#: 08080000.xhp#tit.help.text
+msgid "Standard Formula, Date/Time, Error Warning"
+msgstr ""
+
+#: 08080000.xhp#bm_id3147335.help.text
+msgid "<bookmark_value>formulas;status bar</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 08080000.xhp#par_id3153969.4.help.text
+msgid "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error codes\">Error codes</link>"
+msgstr ""
+
+#: 02160000.xhp#tit.help.text
+msgctxt "02160000.xhp#tit.help.text"
+msgid "Number Format: Add Decimal Place"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02160000.xhp#par_id3149262.3.help.text
+msgctxt "02160000.xhp#par_id3149262.3.help.text"
+msgid "Number Format: Add Decimal Place"
+msgstr ""
+
+#: 06010000.xhp#tit.help.text
+msgid "Sheet Area"
+msgstr ""
+
+#: 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 ""
+
+#: 06010000.xhp#hd_id3156326.1.help.text
+msgid "<link href=\"text/scalc/02/06010000.xhp\" name=\"Name Box\">Name Box</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 06010000.xhp#par_id3151118.4.help.text
+msgid "Name Box"
+msgstr ""
+
+#: 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 ""
+
+#: 02150000.xhp#tit.help.text
+msgid "Number format: Default"
+msgstr ""
+
+#: 02150000.xhp#hd_id3149182.1.help.text
+msgid "<link href=\"text/scalc/02/02150000.xhp\" name=\"Number format: Default\">Number format: Default</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 02150000.xhp#par_id3155922.help.text
+msgid "<image src=\"cmd/sc_numberformatstandard.png\" id=\"img_id3156024\"><alt id=\"alt_id3156024\">Icon</alt></image>"
+msgstr ""
+
+#: 02150000.xhp#par_id3153361.3.help.text
+msgid "Number Format: Standard"
+msgstr ""
+
+#: 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 ""
+
+#: 06050000.xhp#tit.help.text
+msgid "Input line"
+msgstr ""
+
+#: 06050000.xhp#hd_id3153821.1.help.text
+msgid "<link href=\"text/scalc/02/06050000.xhp\" name=\"Input line\">Input line</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 02170000.xhp#tit.help.text
+msgctxt "02170000.xhp#tit.help.text"
+msgid "Number Format: Delete Decimal Place"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02170000.xhp#par_id3154686.3.help.text
+msgctxt "02170000.xhp#par_id3154686.3.help.text"
+msgid "Number Format: Delete Decimal Place"
+msgstr ""
+
+#: 06030000.xhp#tit.help.text
+msgctxt "06030000.xhp#tit.help.text"
+msgid "Sum"
+msgstr ""
+
+#: 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 ""
+
+#: 06030000.xhp#hd_id3157909.1.help.text
+msgid "<link href=\"text/scalc/02/06030000.xhp\" name=\"Sum\">Sum</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 06030000.xhp#par_id3152577.15.help.text
+msgctxt "06030000.xhp#par_id3152577.15.help.text"
+msgid "Sum"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 08010000.xhp#tit.help.text
+msgid "Position in document"
+msgstr ""
+
+#: 08010000.xhp#hd_id3145119.1.help.text
+msgid "<link href=\"text/scalc/02/08010000.xhp\" name=\"Position in document\">Position in document</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 06060000.xhp#tit.help.text
+msgctxt "06060000.xhp#tit.help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 06060000.xhp#bm_id3154514.help.text
+msgid "<bookmark_value>formula bar; canceling inputs</bookmark_value><bookmark_value>functions; canceling input icon</bookmark_value>"
+msgstr ""
+
+#: 06060000.xhp#hd_id3154514.1.help.text
+msgid "<link href=\"text/scalc/02/06060000.xhp\" name=\"Cancel\">Cancel</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 06060000.xhp#par_id3153970.3.help.text
+msgctxt "06060000.xhp#par_id3153970.3.help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 02130000.xhp#tit.help.text
+msgid "Number format: Currency"
+msgstr ""
+
+#: 02130000.xhp#hd_id3152892.1.help.text
+msgid "<link href=\"text/scalc/02/02130000.xhp\" name=\"Number format: Currency\">Number format: Currency</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 02130000.xhp#par_id3155267.help.text
+msgid "<image src=\"cmd/sc_currencyfield.png\" id=\"img_id3159096\"><alt id=\"alt_id3159096\">Icon</alt></image>"
+msgstr ""
+
+#: 02130000.xhp#par_id3150214.3.help.text
+msgid "Number Format: Currency"
+msgstr ""
+
+#: 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 ""
+
+#: 06070000.xhp#tit.help.text
+msgctxt "06070000.xhp#tit.help.text"
+msgid "Accept"
+msgstr ""
+
+#: 06070000.xhp#bm_id3143267.help.text
+msgid "<bookmark_value>formula bar; accepting inputs</bookmark_value><bookmark_value>functions; accepting input icon</bookmark_value>"
+msgstr ""
+
+#: 06070000.xhp#hd_id3143267.1.help.text
+msgid "<link href=\"text/scalc/02/06070000.xhp\" name=\"Accept\">Accept</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 06070000.xhp#par_id3125864.3.help.text
+msgctxt "06070000.xhp#par_id3125864.3.help.text"
+msgid "Accept"
+msgstr ""
+
+#: 02140000.xhp#tit.help.text
+msgid "Number format: Percent"
+msgstr ""
+
+#: 02140000.xhp#hd_id3156329.1.help.text
+msgid "<link href=\"text/scalc/02/02140000.xhp\" name=\"Number format: Percent\">Number format: Percent</link>"
+msgstr ""
+
+#: 02140000.xhp#par_id3155629.2.help.text
+msgid "<ahelp hid=\".uno:NumberFormatPercent\">Applies the percentage format to the selected cells.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 02140000.xhp#par_id3151114.3.help.text
+msgid "Number Format: Percent"
+msgstr ""
+
+#: 02140000.xhp#bm_id3149260.help.text
+msgid "<bookmark_value>percentage calculations</bookmark_value>"
+msgstr ""
+
+#: 02140000.xhp#par_id3149260.5.help.text
+msgid "You can also enter a percentage sign (%) after a number in a cell:"
+msgstr ""
+
+#: 02140000.xhp#par_id3155411.6.help.text
+msgid "1% corresponds to 0.01"
+msgstr ""
+
+#: 02140000.xhp#par_id3145749.7.help.text
+msgid "1 + 16% corresponds to 116% or 1.16"
+msgstr ""
+
+#: 02140000.xhp#par_id3148575.8.help.text
+msgid "1%% corresponds to 0.0001"
+msgstr ""
+
+#: 02140000.xhp#par_id3159153.10.help.text
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>"
+msgstr ""
+
+#: 06040000.xhp#tit.help.text
+msgctxt "06040000.xhp#tit.help.text"
+msgid "Function"
+msgstr ""
+
+#: 06040000.xhp#bm_id3150084.help.text
+msgid "<bookmark_value>formula bar; functions</bookmark_value><bookmark_value>functions; formula bar icon</bookmark_value>"
+msgstr ""
+
+#: 06040000.xhp#hd_id3150084.1.help.text
+msgid "<link href=\"text/scalc/02/06040000.xhp\" name=\"Function\">Function</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 06040000.xhp#par_id3153360.3.help.text
+msgid "This icon is only available when the <emph>Input line</emph> box is not active."
+msgstr ""
+
+#: 06040000.xhp#par_id3153770.help.text
+msgid "<image id=\"img_id3145785\" src=\"sc/imglst/sc26049.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145785\">Icon</alt></image>"
+msgstr ""
+
+#: 06040000.xhp#par_id3153951.4.help.text
+msgctxt "06040000.xhp#par_id3153951.4.help.text"
+msgid "Function"
+msgstr ""
+
+#: 10050000.xhp#tit.help.text
+msgctxt "10050000.xhp#tit.help.text"
+msgid "Zoom In"
+msgstr ""
+
+#: 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 ""
+
+#: 10050000.xhp#hd_id3148491.1.help.text
+msgid "<link href=\"text/scalc/02/10050000.xhp\" name=\"Zoom In\">Zoom In</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 10050000.xhp#par_id3145171.4.help.text
+msgid "The maximum zoom factor is 400%."
+msgstr ""
+
+#: 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 ""
+
+#: 10050000.xhp#par_id3145273.3.help.text
+msgctxt "10050000.xhp#par_id3145273.3.help.text"
+msgid "Zoom In"
+msgstr ""
+
+#: 18020000.xhp#tit.help.text
+msgid "Insert Cells"
+msgstr ""
+
+#: 18020000.xhp#bm_id3150275.help.text
+msgid "<bookmark_value>inserting; cells, toolbar icon</bookmark_value>"
+msgstr ""
+
+#: 18020000.xhp#hd_id3150275.1.help.text
+msgid "<link href=\"text/scalc/02/18020000.xhp\" name=\"Insert Cells\">Insert Cells</link>"
+msgstr ""
+
+#: 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 ""
+
+#: 18020000.xhp#par_id3150398.3.help.text
+msgctxt "18020000.xhp#par_id3150398.3.help.text"
+msgid "Tools bar icon:"
+msgstr ""
+
+#: 18020000.xhp#par_id3150767.5.help.text
+msgctxt "18020000.xhp#par_id3150767.5.help.text"
+msgid "You can select the following icons:"
+msgstr ""
+
+#: 18020000.xhp#hd_id3150439.6.help.text
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Down\">Insert Cells Down</link>"
+msgstr ""
+
+#: 18020000.xhp#hd_id3146119.7.help.text
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Right\">Insert Cells Right</link>"
+msgstr ""
+
+#: 18020000.xhp#hd_id3153190.8.help.text
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Rows\">Rows</link>"
+msgstr ""
+
+#: 18020000.xhp#hd_id3153726.9.help.text
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Columns\">Columns</link>"
+msgstr ""
diff --git a/source/uk/helpcontent2/source/text/scalc/04.po b/source/uk/helpcontent2/source/text/scalc/04.po
new file mode 100644
index 00000000000..fecf8bfb131
--- /dev/null
+++ b/source/uk/helpcontent2/source/text/scalc/04.po
@@ -0,0 +1,832 @@
+#. 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: 2011-04-13 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 01020000.xhp#tit.help.text
+msgid "Shortcut Keys for Spreadsheets"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01020000.xhp#hd_id3149407.86.help.text
+msgctxt "01020000.xhp#hd_id3149407.86.help.text"
+msgid "Shortcut Keys"
+msgstr ""
+
+#: 01020000.xhp#par_id3153815.87.help.text
+msgctxt "01020000.xhp#par_id3153815.87.help.text"
+msgid "<emph>Effect</emph>"
+msgstr ""
+
+#: 01020000.xhp#hd_id3146871.88.help.text
+#, fuzzy
+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\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3159093.89.help.text
+msgid "Moves the cursor to the first cell in the sheet (A1)."
+msgstr ""
+
+#: 01020000.xhp#hd_id3145073.90.help.text
+#, fuzzy
+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\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3153283.91.help.text
+msgid "Moves the cursor to the last cell on the sheet that contains data."
+msgstr ""
+
+#: 01020000.xhp#hd_id3149127.92.help.text
+msgctxt "01020000.xhp#hd_id3149127.92.help.text"
+msgid "Home"
+msgstr ""
+
+#: 01020000.xhp#par_id3159205.93.help.text
+msgid "Moves the cursor to the first cell of the current row."
+msgstr ""
+
+#: 01020000.xhp#hd_id3149897.94.help.text
+msgctxt "01020000.xhp#hd_id3149897.94.help.text"
+msgid "End"
+msgstr ""
+
+#: 01020000.xhp#par_id3155095.95.help.text
+msgid "Moves the cursor to the last cell of the current row."
+msgstr ""
+
+#: 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
+#, fuzzy
+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\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 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 ""
+
+#: 01020000.xhp#hd_id3153554.103.help.text
+#, fuzzy
+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\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 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 ""
+
+#: 01020000.xhp#hd_id3149317.105.help.text
+#, fuzzy
+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\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 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 ""
+
+#: 01020000.xhp#hd_id3147250.107.help.text
+#, fuzzy
+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\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 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 ""
+
+#: 01020000.xhp#hd_id3148744.184.help.text
+#, fuzzy
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Arrow"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 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 ""
+
+#: 01020000.xhp#hd_id3156399.109.help.text
+#, fuzzy
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3145236.110.help.text
+msgid "Moves one sheet to the left."
+msgstr ""
+
+#: 01020000.xhp#par_id3149725.131.help.text
+msgid "In the page preview: Moves to the previous print page."
+msgstr ""
+
+#: 01020000.xhp#hd_id3147411.111.help.text
+#, fuzzy
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Down"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3150372.112.help.text
+msgid "Moves one sheet to the right."
+msgstr ""
+
+#: 01020000.xhp#par_id3159120.132.help.text
+msgid "In the page preview: Moves to the next print page."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01020000.xhp#par_idN10AFC.help.text
+#, fuzzy
+msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 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 ""
+
+#: 01020000.xhp#par_idN10B03.help.text
+#, fuzzy
+msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Down"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01020000.xhp#par_id3150144.182.help.text
+msgid "Selects the matrix formula range that contains the cursor."
+msgstr ""
+
+#: 01020000.xhp#par_id8163396.help.text
+#, fuzzy
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Plus key"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id9901425.help.text
+msgid "Insert cells (as in menu Insert - Cells)"
+msgstr ""
+
+#: 01020000.xhp#par_id3389080.help.text
+#, fuzzy
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Minus key"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id5104220.help.text
+msgid "Delete cells (as in menu Edit - Delete Cells)"
+msgstr ""
+
+#: 01020000.xhp#hd_id3155825.99.help.text
+msgid "Enter (in a selected range)"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01020000.xhp#hd_id3148756.5.help.text
+msgid "Function Keys Used in Spreadsheets"
+msgstr ""
+
+#: 01020000.xhp#hd_id3148581.6.help.text
+msgctxt "01020000.xhp#hd_id3148581.6.help.text"
+msgid "Shortcut Keys"
+msgstr ""
+
+#: 01020000.xhp#par_id3152790.8.help.text
+msgctxt "01020000.xhp#par_id3152790.8.help.text"
+msgid "<emph>Effect</emph>"
+msgstr ""
+
+#: 01020000.xhp#hd_id3154809.139.help.text
+#, fuzzy
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F1"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3145140.138.help.text
+msgid "Displays the comment that is attached to the current cell"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01020000.xhp#hd_id3146850.11.help.text
+#, fuzzy
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3145162.12.help.text
+msgid "Opens the Function Wizard."
+msgstr ""
+
+#: 01020000.xhp#hd_id3147366.137.help.text
+#, fuzzy
+msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 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 ""
+
+#: 01020000.xhp#hd_id3153730.15.help.text
+#, fuzzy
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3145245.16.help.text
+msgid "Opens the <emph>Define Names</emph> dialog."
+msgstr ""
+
+#: 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 ""
+
+#: 01020000.xhp#hd_id3145353.19.help.text
+msgid "Shift+F4"
+msgstr "Shift+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 ""
+
+#: 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 ""
+
+#: 01020000.xhp#hd_id3148392.23.help.text
+#, fuzzy
+msgid "Shift+F5"
+msgstr "Shift+F4"
+
+#: 01020000.xhp#par_id3150268.24.help.text
+msgid "Traces dependents."
+msgstr ""
+
+#: 01020000.xhp#hd_id3148430.27.help.text
+#, fuzzy
+msgid "Shift+F7"
+msgstr "Shift+F4"
+
+#: 01020000.xhp#par_id3153179.28.help.text
+msgid "Traces precedents."
+msgstr ""
+
+#: 01020000.xhp#hd_id3150568.135.help.text
+#, fuzzy
+msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F5"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01020000.xhp#hd_id3150688.31.help.text
+#, fuzzy
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F7"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3149781.32.help.text
+msgid "Opens the Thesaurus if the current cell contains text."
+msgstr ""
+
+#: 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 ""
+
+#: 01020000.xhp#hd_id3154313.37.help.text
+#, fuzzy
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F8"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3150385.38.help.text
+msgid "Highlights cells containing values."
+msgstr ""
+
+#: 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 ""
+
+#: 01020000.xhp#par_id9027069.help.text
+#, fuzzy
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F9"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id1729178.help.text
+msgid "Recalculates all formulas in all sheets."
+msgstr ""
+
+#: 01020000.xhp#hd_id3156300.41.help.text
+#, fuzzy
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3154817.42.help.text
+msgid "Updates the selected chart."
+msgstr ""
+
+#: 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\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 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 ""
+
+#: 01020000.xhp#hd_id3156308.48.help.text
+msgid "Shift+F11"
+msgstr "Shift+F11"
+
+#: 01020000.xhp#par_id3145209.49.help.text
+msgid "Creates a document template."
+msgstr ""
+
+#: 01020000.xhp#hd_id3147622.50.help.text
+#, fuzzy
+msgid "Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command</caseinline><defaultinline>+Ctrl</defaultinline></switchinline>+F11"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3153215.51.help.text
+msgid "Updates the templates."
+msgstr ""
+
+#: 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 ""
+
+#: 01020000.xhp#hd_id3146859.54.help.text
+#, fuzzy
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3156128.55.help.text
+msgid "Ungroups the selected data range."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01020000.xhp#hd_id3149293.125.help.text
+#, fuzzy
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Shift+Arrow Key"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3159180.126.help.text
+msgid "Optimizes the column width or row height based on the current cell."
+msgstr ""
+
+#: 01020000.xhp#hd_id3156013.56.help.text
+msgid "Formatting Cells Using Shortcut Keys"
+msgstr ""
+
+#: 01020000.xhp#par_id3153979.57.help.text
+msgid "The following cell formats can be applied with the keyboard:"
+msgstr ""
+
+#: 01020000.xhp#hd_id3147492.58.help.text
+msgctxt "01020000.xhp#hd_id3147492.58.help.text"
+msgid "Shortcut Keys"
+msgstr ""
+
+#: 01020000.xhp#par_id3154305.60.help.text
+msgctxt "01020000.xhp#par_id3154305.60.help.text"
+msgid "<emph>Effect</emph>"
+msgstr ""
+
+#: 01020000.xhp#hd_id3145669.help.text
+#, fuzzy
+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\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3149197.help.text
+msgid "Open Format Cells dialog"
+msgstr ""
+
+#: 01020000.xhp#hd_id3145668.61.help.text
+#, fuzzy
+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\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3149196.63.help.text
+msgid "Two decimal places, thousands separator"
+msgstr ""
+
+#: 01020000.xhp#hd_id3155331.64.help.text
+#, fuzzy
+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\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3150120.66.help.text
+msgid "Standard exponential format"
+msgstr ""
+
+#: 01020000.xhp#hd_id3154932.67.help.text
+#, fuzzy
+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\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3148822.69.help.text
+msgid "Standard date format"
+msgstr ""
+
+#: 01020000.xhp#hd_id3148829.70.help.text
+#, fuzzy
+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\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3159152.72.help.text
+msgid "Standard currency format"
+msgstr ""
+
+#: 01020000.xhp#hd_id3150776.73.help.text
+#, fuzzy
+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\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3148800.75.help.text
+msgid "Standard percentage format (two decimal places)"
+msgstr ""
+
+#: 01020000.xhp#hd_id3158407.76.help.text
+#, fuzzy
+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\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3148444.78.help.text
+msgid "Standard format"
+msgstr ""
+
+#: 01020000.xhp#hd_id3154205.178.help.text
+msgid "Using the pivot table"
+msgstr ""
+
+#: 01020000.xhp#par_idN11326.help.text
+msgid "Keys"
+msgstr ""
+
+#: 01020000.xhp#par_idN1132C.help.text
+msgid "Effect"
+msgstr "Результат"
+
+#: 01020000.xhp#hd_id3153577.177.help.text
+msgid "Tab"
+msgstr "Tab"
+
+#: 01020000.xhp#par_id3147511.176.help.text
+msgid "Changes the focus by moving forwards through the areas and buttons of the dialog."
+msgstr ""
+
+#: 01020000.xhp#hd_id3154266.175.help.text
+msgid "Shift+Tab"
+msgstr "Shift+Tab"
+
+#: 01020000.xhp#par_id3155362.174.help.text
+msgid "Changes the focus by moving backwards through the areas and buttons of the dialog."
+msgstr ""
+
+#: 01020000.xhp#hd_id3148484.173.help.text
+msgid "Up Arrow"
+msgstr ""
+
+#: 01020000.xhp#par_id3149152.172.help.text
+msgid "Moves the focus up one item in the current dialog area."
+msgstr ""
+
+#: 01020000.xhp#hd_id3154273.171.help.text
+msgid "Down Arrow"
+msgstr ""
+
+#: 01020000.xhp#par_id3158424.170.help.text
+msgid "Moves the focus down one item in the current dialog area."
+msgstr ""
+
+#: 01020000.xhp#hd_id3148912.169.help.text
+msgid "Left Arrow"
+msgstr ""
+
+#: 01020000.xhp#par_id3153238.168.help.text
+msgid "Moves the focus one item to the left in the current dialog area."
+msgstr ""
+
+#: 01020000.xhp#hd_id3150712.167.help.text
+msgid "Right Arrow"
+msgstr ""
+
+#: 01020000.xhp#par_id3166458.166.help.text
+msgid "Moves the focus one item to the right in the current dialog area."
+msgstr ""
+
+#: 01020000.xhp#hd_id3146947.165.help.text
+msgctxt "01020000.xhp#hd_id3146947.165.help.text"
+msgid "Home"
+msgstr ""
+
+#: 01020000.xhp#par_id3153742.164.help.text
+msgid "Selects the first item in the current dialog area."
+msgstr ""
+
+#: 01020000.xhp#hd_id3153387.163.help.text
+msgctxt "01020000.xhp#hd_id3153387.163.help.text"
+msgid "End"
+msgstr ""
+
+#: 01020000.xhp#par_id3153684.162.help.text
+msgid "Selects the last item in the current dialog area."
+msgstr ""
+
+#: 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 ""
+
+#: 01020000.xhp#par_id3152949.160.help.text
+msgid "Copies or moves the current field into the \"Row\" area."
+msgstr ""
+
+#: 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 ""
+
+#: 01020000.xhp#par_id3149968.158.help.text
+msgid "Copies or moves the current field into the \"Column\" area."
+msgstr ""
+
+#: 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 ""
+
+#: 01020000.xhp#par_id3148649.156.help.text
+msgid "Copies or moves the current field into the \"Data\" area."
+msgstr ""
+
+#: 01020000.xhp#hd_id3149418.155.help.text
+#, fuzzy
+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\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3154335.154.help.text
+msgid "Moves the current field up one place."
+msgstr ""
+
+#: 01020000.xhp#hd_id3148462.153.help.text
+#, fuzzy
+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\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3154603.152.help.text
+msgid "Moves the current field down one place."
+msgstr ""
+
+#: 01020000.xhp#hd_id3145373.151.help.text
+#, fuzzy
+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\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3151125.150.help.text
+msgid "Moves the current field one place to the left."
+msgstr ""
+
+#: 01020000.xhp#hd_id3150423.149.help.text
+#, fuzzy
+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\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3153316.148.help.text
+msgid "Moves the current field one place to the right."
+msgstr ""
+
+#: 01020000.xhp#hd_id3149519.147.help.text
+#, fuzzy
+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\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3149237.146.help.text
+msgid "Moves the current field to the first place."
+msgstr ""
+
+#: 01020000.xhp#hd_id3145310.145.help.text
+#, fuzzy
+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\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3153942.144.help.text
+msgid "Moves the current field to the last place."
+msgstr ""
+
+#: 01020000.xhp#hd_id3149933.143.help.text
+#, fuzzy
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+O"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+
+#: 01020000.xhp#par_id3154798.142.help.text
+msgid "Displays the options for the current field."
+msgstr ""
+
+#: 01020000.xhp#hd_id3148418.141.help.text
+#, fuzzy
+msgid "Delete"
+msgstr ""
+"#-#-#-#-# swriter.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Видалити\n"
+"#-#-#-#-# 01.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вилучити"
+
+#: 01020000.xhp#par_id3159251.140.help.text
+msgid "Removes the current field from the area."
+msgstr ""
+
+#: 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 ""
diff --git a/source/uk/helpcontent2/source/text/scalc/05.po b/source/uk/helpcontent2/source/text/scalc/05.po
new file mode 100644
index 00000000000..03488e1ed9a
--- /dev/null
+++ b/source/uk/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 23:20+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
+
+#: empty_cells.xhp#bm_id3146799.help.text
+msgid "<bookmark_value>empty cells;handling of</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: empty_cells.xhp#par_id8277230.help.text
+msgid "A1: 1 B1: <empty> C1: =B1 (displays 0)"
+msgstr ""
+
+#: empty_cells.xhp#par_id4086428.help.text
+msgctxt "empty_cells.xhp#par_id4086428.help.text"
+msgid "=B1=0 => TRUE"
+msgstr ""
+
+#: empty_cells.xhp#par_id9024628.help.text
+msgid "=B1=\"\" => TRUE"
+msgstr ""
+
+#: empty_cells.xhp#par_id3067110.help.text
+msgid "=C1=0 => TRUE"
+msgstr ""
+
+#: empty_cells.xhp#par_id8841822.help.text
+msgid "=C1=\"\" => TRUE (previously was FALSE)"
+msgstr ""
+
+#: empty_cells.xhp#par_id4077578.help.text
+msgid "=ISNUMBER(B1) => FALSE"
+msgstr ""
+
+#: empty_cells.xhp#par_id9094515.help.text
+msgid "=ISNUMBER(C1) => FALSE (previously was TRUE)"
+msgstr ""
+
+#: empty_cells.xhp#par_id396740.help.text
+msgid "=ISNUMBER(VLOOKUP(1;A1:C1;2)) => FALSE (B1)"
+msgstr ""
+
+#: empty_cells.xhp#par_id3859675.help.text
+msgid "=ISNUMBER(VLOOKUP(1;A1:C1;3)) => FALSE (C1, previously was TRUE)"
+msgstr ""
+
+#: empty_cells.xhp#par_id402233.help.text
+msgctxt "empty_cells.xhp#par_id402233.help.text"
+msgid "=ISTEXT(B1) => FALSE"
+msgstr ""
+
+#: empty_cells.xhp#par_id1623889.help.text
+msgctxt "empty_cells.xhp#par_id1623889.help.text"
+msgid "=ISTEXT(C1) => FALSE"
+msgstr ""
+
+#: empty_cells.xhp#par_id7781914.help.text
+msgid "=ISTEXT(VLOOKUP(1;A1:C1;2)) => FALSE (B1, previously was TRUE)"
+msgstr ""
+
+#: empty_cells.xhp#par_id300912.help.text
+msgid "=ISTEXT(VLOOKUP(1;A1:C1;3)) => FALSE (C1)"
+msgstr ""
+
+#: empty_cells.xhp#par_id9534592.help.text
+msgid "=ISBLANK(B1) => TRUE"
+msgstr ""
+
+#: empty_cells.xhp#par_id4969328.help.text
+msgid "=ISBLANK(C1) => FALSE"
+msgstr ""
+
+#: empty_cells.xhp#par_id9635914.help.text
+msgid "=ISBLANK(VLOOKUP(1;A1:C1;2)) => TRUE (B1, previously was FALSE)"
+msgstr ""
+
+#: empty_cells.xhp#par_id2476577.help.text
+msgid "=ISBLANK(VLOOKUP(1;A1:C1;3)) => FALSE (C1)"
+msgstr ""
+
+#: 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 ""
+
+#: empty_cells.xhp#par_id2629474.help.text
+msgid "A1: <empty>"
+msgstr ""
+
+#: empty_cells.xhp#par_id8069704.help.text
+msgid "B1: =A1 => displays 0, but is just a reference to an empty cell"
+msgstr ""
+
+#: empty_cells.xhp#par_id4524674.help.text
+msgid "=ISNUMBER(A1) => FALSE"
+msgstr ""
+
+#: empty_cells.xhp#par_id4396801.help.text
+msgid "=ISTEXT(A1) => FALSE"
+msgstr ""
+
+#: empty_cells.xhp#par_id5293740.help.text
+msgid "=A1=0 => TRUE"
+msgstr ""
+
+#: empty_cells.xhp#par_id7623828.help.text
+msgid "=A1=\"\" => TRUE"
+msgstr ""
+
+#: empty_cells.xhp#par_id2861720.help.text
+msgid "=ISNUMBER(B1) => FALSE (MS-Excel: TRUE)"
+msgstr ""
+
+#: empty_cells.xhp#par_id9604480.help.text
+msgctxt "empty_cells.xhp#par_id9604480.help.text"
+msgid "=ISTEXT(B1) => FALSE"
+msgstr ""
+
+#: empty_cells.xhp#par_id2298959.help.text
+msgctxt "empty_cells.xhp#par_id2298959.help.text"
+msgid "=B1=0 => TRUE"
+msgstr ""
+
+#: empty_cells.xhp#par_id4653767.help.text
+msgid "=B1=\"\" => TRUE (MS-Excel: FALSE)"
+msgstr ""
+
+#: empty_cells.xhp#par_id8801538.help.text
+msgid "C1: =VLOOKUP(...) with empty cell result => displays empty (MS-Excel: displays 0)"
+msgstr ""
+
+#: empty_cells.xhp#par_id6746421.help.text
+msgid "=ISNUMBER(VLOOKUP(...)) => FALSE"
+msgstr ""
+
+#: empty_cells.xhp#par_id4876247.help.text
+msgid "=ISTEXT(VLOOKUP(...)) => FALSE"
+msgstr ""
+
+#: empty_cells.xhp#par_id7458723.help.text
+msgid "=ISNUMBER(C1) => FALSE (MS-Excel: TRUE)"
+msgstr ""
+
+#: empty_cells.xhp#par_id2753379.help.text
+msgctxt "empty_cells.xhp#par_id2753379.help.text"
+msgid "=ISTEXT(C1) => FALSE"
+msgstr ""
+
+#: 02140000.xhp#tit.help.text
+msgid "Error Codes in %PRODUCTNAME Calc"
+msgstr ""
+
+#: 02140000.xhp#bm_id3146797.help.text
+msgid "<bookmark_value>error codes;list of</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02140000.xhp#bm_id0202201010205429.help.text
+msgid "<bookmark_value>### error message</bookmark_value>"
+msgstr ""
+
+#: 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 ""
+
+#: 02140000.xhp#bm_id3148428.help.text
+msgid "<bookmark_value>invalid names; error messages</bookmark_value> <bookmark_value>#NAME error message</bookmark_value>"
+msgstr ""
+
+#: 02140000.xhp#par_id3153968.3.help.text
+msgid "Error Code"
+msgstr ""
+
+#: 02140000.xhp#par_id3125863.4.help.text
+msgid "Message"
+msgstr ""
+
+#: 02140000.xhp#par_id3151112.5.help.text
+msgid "Explanation"
+msgstr ""
+
+#: 02140000.xhp#par_id1668467.help.text
+msgid "###"
+msgstr ""
+
+#: 02140000.xhp#par_id3165766.13.help.text
+msgid "none"
+msgstr ""
+
+#: 02140000.xhp#par_id3169266.14.help.text
+msgid "The cell is not wide enough to display the contents."
+msgstr ""
+
+#: 02140000.xhp#par_id3153188.6.help.text
+msgid "501"
+msgstr ""
+
+#: 02140000.xhp#par_id3148645.7.help.text
+msgid "Invalid character"
+msgstr ""
+
+#: 02140000.xhp#par_id3155854.8.help.text
+msgid "Character in a formula is not valid."
+msgstr ""
+
+#: 02140000.xhp#par_id3145253.9.help.text
+msgid "502"
+msgstr ""
+
+#: 02140000.xhp#par_id3147397.10.help.text
+msgid "Invalid argument"
+msgstr ""
+
+#: 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 ""
+
+#: 02140000.xhp#par_id3159266.14.help.text
+msgid "A calculation results in an overflow of the defined value range."
+msgstr ""
+
+#: 02140000.xhp#par_id3149258.15.help.text
+msgid "504"
+msgstr ""
+
+#: 02140000.xhp#par_id3147344.16.help.text
+msgid "Parameter list error"
+msgstr ""
+
+#: 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 ""
+
+#: 02140000.xhp#par_id3154532.27.help.text
+msgid "508"
+msgstr ""
+
+#: 02140000.xhp#par_id3150107.28.help.text
+msgid "Error: Pair missing"
+msgstr ""
+
+#: 02140000.xhp#par_id3149129.29.help.text
+msgid "Missing bracket, for example, closing brackets, but no opening brackets"
+msgstr ""
+
+#: 02140000.xhp#par_id3149895.30.help.text
+msgid "509"
+msgstr ""
+
+#: 02140000.xhp#par_id3155097.31.help.text
+msgid "Missing operator"
+msgstr ""
+
+#: 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 ""
+
+#: 02140000.xhp#par_id3153813.33.help.text
+msgid "510"
+msgstr ""
+
+#: 02140000.xhp#par_id3153483.34.help.text
+msgctxt "02140000.xhp#par_id3153483.34.help.text"
+msgid "Missing variable"
+msgstr ""
+
+#: 02140000.xhp#par_id3154710.35.help.text
+msgid "Variable is missing, for example when two operators are together \"=1+*2\"."
+msgstr ""
+
+#: 02140000.xhp#par_id3154739.36.help.text
+msgid "511"
+msgstr ""
+
+#: 02140000.xhp#par_id3145112.37.help.text
+msgctxt "02140000.xhp#par_id3145112.37.help.text"
+msgid "Missing variable"
+msgstr ""
+
+#: 02140000.xhp#par_id3145319.38.help.text
+msgid "Function requires more variables than are provided, for example, AND() and OR()."
+msgstr ""
+
+#: 02140000.xhp#par_id3149050.39.help.text
+msgid "512"
+msgstr ""
+
+#: 02140000.xhp#par_id3150393.40.help.text
+msgid "Formula overflow"
+msgstr ""
+
+#: 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 ""
+
+#: 02140000.xhp#par_id3150537.42.help.text
+msgid "513"
+msgstr ""
+
+#: 02140000.xhp#par_id3147412.43.help.text
+msgid "String overflow"
+msgstr ""
+
+#: 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 ""
+
+#: 02140000.xhp#par_id3149147.45.help.text
+msgid "514"
+msgstr ""
+
+#: 02140000.xhp#par_id3157904.46.help.text
+msgctxt "02140000.xhp#par_id3157904.46.help.text"
+msgid "Internal overflow"
+msgstr ""
+
+#: 02140000.xhp#par_id3149352.47.help.text
+msgid "Sort operation attempted on too much numerical data (max. 100000) or a calculation stack overflow."
+msgstr ""
+
+#: 02140000.xhp#par_id3154841.51.help.text
+msgid "516"
+msgstr ""
+
+#: 02140000.xhp#par_id3147423.52.help.text
+msgctxt "02140000.xhp#par_id3147423.52.help.text"
+msgid "Internal syntax error"
+msgstr ""
+
+#: 02140000.xhp#par_id3148437.53.help.text
+msgid "Matrix is expected on the calculation stack, but is not available."
+msgstr ""
+
+#: 02140000.xhp#par_id3155261.54.help.text
+msgid "517"
+msgstr ""
+
+#: 02140000.xhp#par_id3153934.55.help.text
+msgctxt "02140000.xhp#par_id3153934.55.help.text"
+msgid "Internal syntax error"
+msgstr ""
+
+#: 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 ""
+
+#: 02140000.xhp#par_id3148585.57.help.text
+msgid "518"
+msgstr ""
+
+#: 02140000.xhp#par_id3149189.58.help.text
+msgctxt "02140000.xhp#par_id3149189.58.help.text"
+msgid "Internal syntax error"
+msgstr ""
+
+#: 02140000.xhp#par_id3149545.59.help.text
+msgid "Variable is not available"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02140000.xhp#par_id3150338.63.help.text
+msgid "520"
+msgstr ""
+
+#: 02140000.xhp#par_id3150017.64.help.text
+msgctxt "02140000.xhp#par_id3150017.64.help.text"
+msgid "Internal syntax error"
+msgstr ""
+
+#: 02140000.xhp#par_id3148758.65.help.text
+msgid "Compiler creates an unknown compiler code."
+msgstr ""
+
+#: 02140000.xhp#par_id3154324.66.help.text
+msgid "521"
+msgstr ""
+
+#: 02140000.xhp#par_id3153737.67.help.text
+msgctxt "02140000.xhp#par_id3153737.67.help.text"
+msgid "Internal syntax error"
+msgstr ""
+
+#: 02140000.xhp#par_id3155436.68.help.text
+msgid "No result."
+msgstr ""
+
+#: 02140000.xhp#par_id3153045.69.help.text
+msgid "522"
+msgstr ""
+
+#: 02140000.xhp#par_id3149008.70.help.text
+msgid "Circular reference"
+msgstr ""
+
+#: 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 ""
+
+#: 02140000.xhp#par_id3149538.72.help.text
+msgid "523"
+msgstr ""
+
+#: 02140000.xhp#par_id3150930.73.help.text
+msgid "The calculation procedure does not converge"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02140000.xhp#par_id3153720.81.help.text
+msgid "526"
+msgstr ""
+
+#: 02140000.xhp#par_id3154315.82.help.text
+msgctxt "02140000.xhp#par_id3154315.82.help.text"
+msgid "Internal syntax error"
+msgstr ""
+
+#: 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 ""
+
+#: 02140000.xhp#par_id3152483.84.help.text
+msgid "527"
+msgstr ""
+
+#: 02140000.xhp#par_id3152966.85.help.text
+msgctxt "02140000.xhp#par_id3152966.85.help.text"
+msgid "Internal overflow"
+msgstr ""
+
+#: 02140000.xhp#par_id3149709.86.help.text
+msgid " <emph>Interpreter: </emph>References, such as when a cell references a cell, are too encapsulated."
+msgstr ""
+
+#: 02140000.xhp#par_id5324564.help.text
+msgid "532<br/>#DIV/0!"
+msgstr ""
+
+#: 02140000.xhp#par_id7941831.help.text
+msgid "Division by zero"
+msgstr ""
+
+#: 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 ""
diff --git a/source/uk/helpcontent2/source/text/scalc/guide.po b/source/uk/helpcontent2/source/text/scalc/guide.po
new file mode 100644
index 00000000000..c77834a0be5
--- /dev/null
+++ b/source/uk/helpcontent2/source/text/scalc/guide.po