summaryrefslogtreecommitdiff
path: root/connectivity/source/parse/sqlnode.cxx
blob: 9a3abb0d4fc2b6b303b4b13ebbfb39d4fde7a57e (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
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
/*************************************************************************
 *
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * Copyright 2000, 2010 Oracle and/or its affiliates.
 *
 * OpenOffice.org - a multi-platform office productivity suite
 *
 * This file is part of OpenOffice.org.
 *
 * OpenOffice.org is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * OpenOffice.org is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License version 3 for more details
 * (a copy is included in the LICENSE file that accompanied this code).
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with OpenOffice.org.  If not, see
 * <http://www.openoffice.org/license.html>
 * for a copy of the LGPLv3 License.
 *
 ************************************************************************/

// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_connectivity.hxx"


#include <connectivity/sqlnode.hxx>
#include <connectivity/sqlerror.hxx>
#include <internalnode.hxx>
#define YYBISON   1
#ifndef BISON_INCLUDED
#define BISON_INCLUDED
#include <sqlbison.hxx>
#endif
#include <connectivity/sqlparse.hxx>
#include <com/sun/star/lang/Locale.hpp>
#include <com/sun/star/util/XNumberFormatter.hpp>
#include <com/sun/star/util/XNumberFormatTypes.hpp>
#include <com/sun/star/i18n/NumberFormatIndex.hpp>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/sdbc/XDatabaseMetaData.hpp>
#include <com/sun/star/sdbc/DataType.hpp>
#include <com/sun/star/sdb/XQueriesSupplier.hpp>
#include <com/sun/star/sdb/ErrorCondition.hpp>
#include <com/sun/star/util/XNumberFormatter.hpp>
#include <com/sun/star/util/XNumberFormatsSupplier.hpp>
#include <com/sun/star/util/XNumberFormats.hpp>
#include <com/sun/star/util/NumberFormat.hpp>
#include <com/sun/star/util/XNumberFormatTypes.hpp>
#include <com/sun/star/lang/Locale.hpp>
#include <com/sun/star/i18n/KParseType.hpp>
#include <com/sun/star/i18n/KParseTokens.hpp>
#include "connectivity/dbconversion.hxx"
#include <com/sun/star/util/DateTime.hpp>
#include <com/sun/star/util/Time.hpp>
#include <com/sun/star/util/Date.hpp>
#include "TConnection.hxx"
#include "sqlscan.hxx"
#include <comphelper/numbers.hxx>
#include <comphelper/processfactory.hxx>
#include <comphelper/stl_types.hxx>
#include "connectivity/dbtools.hxx"
#include "connectivity/dbmetadata.hxx"
#include "connectivity/sqlerror.hxx"
#include <tools/diagnose_ex.h>
#include <string.h>
#include <boost/bind.hpp>
#include <algorithm>
#include <functional>
#include <rtl/logfile.hxx>
#include <rtl/ustrbuf.hxx>

using namespace ::com::sun::star::sdbc;
using namespace ::com::sun::star::util;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::sdb;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::i18n;
using namespace ::com::sun::star;
using namespace ::osl;
using namespace ::dbtools;
using namespace ::comphelper;


extern int SQLyyparse (void);
extern ::rtl::OUString ConvertLikeToken(const ::connectivity::OSQLParseNode* pTokenNode, const ::connectivity::OSQLParseNode* pEscapeNode, sal_Bool bInternational);
extern void setParser( ::connectivity::OSQLParser* );

namespace
{
    // -----------------------------------------------------------------------------
    sal_Bool lcl_saveConvertToNumber(const Reference< XNumberFormatter > & _xFormatter,sal_Int32 _nKey,const ::rtl::OUString& _sValue,double& _nrValue)
    {
        sal_Bool bRet = sal_False;
        try
        {
            _nrValue = _xFormatter->convertStringToNumber(_nKey, _sValue);
            bRet = sal_True;
        }
        catch(Exception&)
        {
        }
        return bRet;
    }
    // -----------------------------------------------------------------------------
    void replaceAndReset(connectivity::OSQLParseNode*& _pResetNode,connectivity::OSQLParseNode* _pNewNode)
    {
        _pResetNode->getParent()->replace(_pResetNode, _pNewNode);
        delete _pResetNode;
        _pResetNode = _pNewNode;
    }
    // -----------------------------------------------------------------------------
    /** quotes a string and search for quotes inside the string and replace them with the new quote
        @param  rValue
            The value to be quoted.
        @param  rQuot
            The quote
        @param  rQuotToReplace
            The quote to replace with
        @return
            The quoted string.
    */
    ::rtl::OUString SetQuotation(const ::rtl::OUString& rValue, const ::rtl::OUString& rQuot, const ::rtl::OUString& rQuotToReplace)
    {
        ::rtl::OUString rNewValue = rQuot;
        rNewValue += rValue;
        sal_Int32 nIndex = (sal_Int32)-1;   // Quotes durch zweifache Quotes ersetzen, sonst kriegt der Parser Probleme

        if (rQuot.getLength())
        {
            do
            {
                nIndex += 2;
                nIndex = rNewValue.indexOf(rQuot,nIndex);
                if(nIndex != -1)
                    rNewValue = rNewValue.replaceAt(nIndex,rQuot.getLength(),rQuotToReplace);
            } while (nIndex != -1);
        }

        rNewValue += rQuot;
        return rNewValue;
    }
}

namespace connectivity
{

//=============================================================================
struct OSQLParser_Data
{
    ::com::sun::star::lang::Locale  aLocale;
    ::connectivity::SQLError        aErrors;

    OSQLParser_Data( const Reference< XMultiServiceFactory >& _xServiceFactory )
        :aErrors( _xServiceFactory )
    {
    }
};

//=============================================================================
//= SQLParseNodeParameter
//=============================================================================
//-----------------------------------------------------------------------------
SQLParseNodeParameter::SQLParseNodeParameter( const Reference< XConnection >& _rxConnection,
        const Reference< XNumberFormatter >& _xFormatter, const Reference< XPropertySet >& _xField,
        const Locale& _rLocale, const IParseContext* _pContext,
        bool _bIntl, bool _bQuote, sal_Char _cDecSep, bool _bPredicate, bool _bParseToSDBC )
    :rLocale(_rLocale)
    ,aMetaData( _rxConnection )
    ,pParser( NULL )
    ,pSubQueryHistory( new QueryNameSet )
    ,xFormatter(_xFormatter)
    ,xField(_xField)
    ,m_rContext( _pContext ? (const IParseContext&)(*_pContext) : (const IParseContext&)OSQLParser::s_aDefaultContext )
    ,cDecSep(_cDecSep)
    ,bQuote(_bQuote)
    ,bInternational(_bIntl)
    ,bPredicate(_bPredicate)
    ,bParseToSDBCLevel( _bParseToSDBC )
{
}

//-----------------------------------------------------------------------------
SQLParseNodeParameter::~SQLParseNodeParameter()
{
}

//=============================================================================
//= OSQLParseNode
//=============================================================================
//-----------------------------------------------------------------------------
::rtl::OUString OSQLParseNode::convertDateString(const SQLParseNodeParameter& rParam, const ::rtl::OUString& rString) const
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::convertDateString" );
    Date aDate = DBTypeConversion::toDate(rString);
    Reference< XNumberFormatsSupplier > xSupplier(rParam.xFormatter->getNumberFormatsSupplier());
    Reference< XNumberFormatTypes >     xTypes(xSupplier->getNumberFormats(), UNO_QUERY);

    double fDate = DBTypeConversion::toDouble(aDate,DBTypeConversion::getNULLDate(xSupplier));
    sal_Int32 nKey = xTypes->getStandardIndex(rParam.rLocale) + 36; // XXX hack
    return rParam.xFormatter->convertNumberToString(nKey, fDate);
}

//-----------------------------------------------------------------------------
::rtl::OUString OSQLParseNode::convertDateTimeString(const SQLParseNodeParameter& rParam, const ::rtl::OUString& rString) const
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::convertDateTimeString" );
    DateTime aDate = DBTypeConversion::toDateTime(rString);
    Reference< XNumberFormatsSupplier >  xSupplier(rParam.xFormatter->getNumberFormatsSupplier());
    Reference< XNumberFormatTypes >  xTypes(xSupplier->getNumberFormats(), UNO_QUERY);

    double fDateTime = DBTypeConversion::toDouble(aDate,DBTypeConversion::getNULLDate(xSupplier));
    sal_Int32 nKey = xTypes->getStandardIndex(rParam.rLocale) + 51; // XXX hack
    return rParam.xFormatter->convertNumberToString(nKey, fDateTime);
}

//-----------------------------------------------------------------------------
::rtl::OUString OSQLParseNode::convertTimeString(const SQLParseNodeParameter& rParam, const ::rtl::OUString& rString) const
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::convertTimeString" );
    Time aTime = DBTypeConversion::toTime(rString);
    Reference< XNumberFormatsSupplier >  xSupplier(rParam.xFormatter->getNumberFormatsSupplier());

    Reference< XNumberFormatTypes >  xTypes(xSupplier->getNumberFormats(), UNO_QUERY);

    double fTime = DBTypeConversion::toDouble(aTime);
    sal_Int32 nKey = xTypes->getStandardIndex(rParam.rLocale) + 41; // XXX hack
    return rParam.xFormatter->convertNumberToString(nKey, fTime);
}

//-----------------------------------------------------------------------------
void OSQLParseNode::parseNodeToStr(::rtl::OUString& rString,
                                   const Reference< XConnection >& _rxConnection,
                                   const IParseContext* pContext,
                                   sal_Bool _bIntl,
                                   sal_Bool _bQuote) const
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::parseNodeToStr" );

    parseNodeToStr(
        rString, _rxConnection, NULL, NULL,
        pContext ? pContext->getPreferredLocale() : OParseContext::getDefaultLocale(),
        pContext, _bIntl, _bQuote, '.', false, false );
}

//-----------------------------------------------------------------------------
void OSQLParseNode::parseNodeToPredicateStr(::rtl::OUString& rString,
                                              const Reference< XConnection >& _rxConnection,
                                              const Reference< XNumberFormatter > & xFormatter,
                                              const ::com::sun::star::lang::Locale& rIntl,
                                              sal_Char _cDec,
                                              const IParseContext* pContext ) const
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::parseNodeToPredicateStr" );

    OSL_ENSURE(xFormatter.is(), "OSQLParseNode::parseNodeToPredicateStr:: no formatter!");

    if (xFormatter.is())
        parseNodeToStr(rString, _rxConnection, xFormatter, NULL, rIntl, pContext, sal_True, sal_True, _cDec, true, false);
}

//-----------------------------------------------------------------------------
void OSQLParseNode::parseNodeToPredicateStr(::rtl::OUString& rString,
                                              const Reference< XConnection > & _rxConnection,
                                              const Reference< XNumberFormatter > & xFormatter,
                                              const Reference< XPropertySet > & _xField,
                                              const ::com::sun::star::lang::Locale& rIntl,
                                              sal_Char _cDec,
                                              const IParseContext* pContext ) const
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::parseNodeToPredicateStr" );

    OSL_ENSURE(xFormatter.is(), "OSQLParseNode::parseNodeToPredicateStr:: no formatter!");

    if (xFormatter.is())
        parseNodeToStr( rString, _rxConnection, xFormatter, _xField, rIntl, pContext, true, true, _cDec, true, false );
}

//-----------------------------------------------------------------------------
void OSQLParseNode::parseNodeToStr(::rtl::OUString& rString,
                      const Reference< XConnection > & _rxConnection,
                      const Reference< XNumberFormatter > & xFormatter,
                      const Reference< XPropertySet > & _xField,
                      const ::com::sun::star::lang::Locale& rIntl,
                      const IParseContext* pContext,
                      bool _bIntl,
                      bool _bQuote,
                      sal_Char _cDecSep,
                      bool _bPredicate,
                      bool _bSubstitute) const
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::parseNodeToStr" );

    OSL_ENSURE( _rxConnection.is(), "OSQLParseNode::parseNodeToStr: invalid connection!" );

    if ( _rxConnection.is() )
    {
        ::rtl::OUStringBuffer sBuffer = rString;
        try
        {
            OSQLParseNode::impl_parseNodeToString_throw( sBuffer,
                SQLParseNodeParameter(
                    _rxConnection, xFormatter, _xField, rIntl, pContext,
                    _bIntl, _bQuote, _cDecSep, _bPredicate, _bSubstitute
                ) );
        }
        catch( const SQLException& )
        {
            OSL_ENSURE( false, "OSQLParseNode::parseNodeToStr: this should not throw!" );
            // our callers don't expect this method to throw anything. The only known situation
            // where impl_parseNodeToString_throw can throw is when there is a cyclic reference
            // in the sub queries, but this cannot be the case here, as we do not parse to
            // SDBC level.
        }
        rString = sBuffer.makeStringAndClear();
    }
}
//-----------------------------------------------------------------------------
bool OSQLParseNode::parseNodeToExecutableStatement( ::rtl::OUString& _out_rString, const Reference< XConnection >& _rxConnection,
    OSQLParser& _rParser, ::com::sun::star::sdbc::SQLException* _pErrorHolder ) const
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::parseNodeToExecutableStatement" );
    OSL_PRECOND( _rxConnection.is(), "OSQLParseNode::parseNodeToExecutableStatement: invalid connection!" );
    SQLParseNodeParameter aParseParam( _rxConnection,
        NULL, NULL, OParseContext::getDefaultLocale(), NULL, false, true, '.', false, true );

    if ( aParseParam.aMetaData.supportsSubqueriesInFrom() )
    {
        Reference< XQueriesSupplier > xSuppQueries( _rxConnection, UNO_QUERY );
        OSL_ENSURE( xSuppQueries.is(), "OSQLParseNode::parseNodeToExecutableStatement: cannot substitute everything without a QueriesSupplier!" );
        if ( xSuppQueries.is() )
            aParseParam.xQueries = xSuppQueries->getQueries();
    }

    aParseParam.pParser = &_rParser;

    _out_rString = ::rtl::OUString();
    ::rtl::OUStringBuffer sBuffer;
    bool bSuccess = false;
    try
    {
        impl_parseNodeToString_throw( sBuffer, aParseParam );
        bSuccess = true;
    }
    catch( const SQLException& e )
    {
        if ( _pErrorHolder )
            *_pErrorHolder = e;
    }
    _out_rString = sBuffer.makeStringAndClear();
    return bSuccess;
}

//-----------------------------------------------------------------------------
namespace
{
    bool lcl_isAliasNamePresent( const OSQLParseNode& _rTableNameNode )
    {
        return OSQLParseNode::getTableRange(_rTableNameNode.getParent()).getLength() != 0;
    }
}

//-----------------------------------------------------------------------------
void OSQLParseNode::impl_parseNodeToString_throw(::rtl::OUStringBuffer& rString, const SQLParseNodeParameter& rParam) const
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::getTableRange" );
    if ( isToken() )
    {
        parseLeaf(rString,rParam);
        return;
    }

    // einmal auswerten wieviel Subtrees dieser Knoten besitzt
    sal_uInt32 nCount = count();

    bool bHandled = false;
    switch ( getKnownRuleID() )
    {
    // special handling for parameters
    case parameter:
    {
        if(rString.getLength())
            rString.appendAscii(" ");
        if (nCount == 1)    // ?
            m_aChildren[0]->impl_parseNodeToString_throw( rString, rParam );
        else if (nCount == 2)   // :Name
        {
            m_aChildren[0]->impl_parseNodeToString_throw( rString, rParam );
            rString.append(m_aChildren[1]->m_aNodeValue);
        }                   // [Name]
        else
        {
            m_aChildren[0]->impl_parseNodeToString_throw( rString, rParam );
            rString.append(m_aChildren[1]->m_aNodeValue);
            rString.append(m_aChildren[2]->m_aNodeValue);
        }
        bHandled = true;
    }
    break;

    // table refs
    case table_ref:
        if (  ( nCount == 2 ) || ( nCount == 3 ) || ( nCount == 5 ) )
        {
            impl_parseTableRangeNodeToString_throw( rString, rParam );
            bHandled = true;
        }
        break;

    // table name - might be a query name
    case table_name:
        bHandled = impl_parseTableNameNodeToString_throw( rString, rParam );
        break;

    case as:
        if ( rParam.aMetaData.generateASBeforeCorrelationName() )
            rString.append(::rtl::OUString::createFromAscii( " AS" ));
        bHandled = true;
        break;

    case like_predicate:
        // je nachdem ob international angegeben wird oder nicht wird like anders behandelt
        // interanational: *, ? sind Platzhalter
        // sonst SQL92 konform: %, _
        impl_parseLikeNodeToString_throw( rString, rParam );
        bHandled = true;
        break;

    case general_set_fct:
    case set_fct_spec:
    case position_exp:
    case extract_exp:
    case length_exp:
    case char_value_fct:
    {
        if (!addDateValue(rString, rParam))
        {
            // Funktionsname nicht quoten
            SQLParseNodeParameter aNewParam(rParam);
            aNewParam.bQuote = ( SQL_ISRULE(this,length_exp)    || SQL_ISRULE(this,char_value_fct) );

            m_aChildren[0]->impl_parseNodeToString_throw( rString, aNewParam );
            aNewParam.bQuote = rParam.bQuote;
            //aNewParam.bPredicate = sal_False; // disable [ ] around names // look at i73215
            ::rtl::OUStringBuffer aStringPara;
            for (sal_uInt32 i=1; i<nCount; i++)
            {
                const OSQLParseNode * pSubTree = m_aChildren[i];
                if (pSubTree)
                {
                    pSubTree->impl_parseNodeToString_throw( aStringPara, aNewParam );

                    // bei den CommaListen zwischen alle Subtrees Commas setzen
                    if ((m_eNodeType == SQL_NODE_COMMALISTRULE)     && (i < (nCount - 1)))
                        aStringPara.appendAscii(",");
                }
                else
                    i++;
            }
            rString.append(aStringPara.makeStringAndClear());
        }
        bHandled = true;
    }
    break;
    default:
        break;
    }   // switch ( getKnownRuleID() )

    if ( !bHandled )
    {
        for (OSQLParseNodes::const_iterator i = m_aChildren.begin();
            i != m_aChildren.end();)
        {
            const OSQLParseNode* pSubTree = *i;
            if ( !pSubTree )
            {
                ++i;
                continue;
            }

            SQLParseNodeParameter aNewParam(rParam);

            // don't replace the field for subqueries
            if (rParam.xField.is() && SQL_ISRULE(pSubTree,subquery))
                aNewParam.xField = NULL;

            // if there is a field given we don't display the fieldname, if there is any
            if (rParam.xField.is() && SQL_ISRULE(pSubTree,column_ref))
            {
                sal_Bool bFilter = sal_False;
                // retrieve the fields name
                ::rtl::OUString aFieldName;
                try
                {
                    sal_Int32 nNamePropertyId = PROPERTY_ID_NAME;
                    if ( rParam.xField->getPropertySetInfo()->hasPropertyByName( OMetaConnection::getPropMap().getNameByIndex( PROPERTY_ID_REALNAME ) ) )
                        nNamePropertyId = PROPERTY_ID_REALNAME;
                    rParam.xField->getPropertyValue( OMetaConnection::getPropMap().getNameByIndex( nNamePropertyId ) ) >>= aFieldName;
                }
                catch ( Exception& )
                {
                }

                if(pSubTree->count())
                {
                    const OSQLParseNode* pCol = pSubTree->m_aChildren[pSubTree->count()-1];
                    if  (   (   SQL_ISRULE(pCol,column_val)
                            &&  pCol->getChild(0)->getTokenValue().equalsIgnoreAsciiCase(aFieldName)
                            )
                        ||  pCol->getTokenValue().equalsIgnoreAsciiCase(aFieldName)
                        )
                        bFilter = sal_True;
                }

                // ok we found the field, if the following node is the
                // comparision operator '=' we filter it as well
                if (bFilter)
                {
                    if (SQL_ISRULE(this, comparison_predicate))
                    {
                        ++i;
                        if(i != m_aChildren.end())
                        {
                            pSubTree = *i;
                            if (pSubTree && pSubTree->getNodeType() == SQL_NODE_EQUAL)
                                i++;
                        }
                    }
                    else
                        i++;
                }
                else
                {
                    pSubTree->impl_parseNodeToString_throw( rString, aNewParam );
                    i++;

                    // bei den CommaListen zwischen alle Subtrees Commas setzen
                    if ((m_eNodeType == SQL_NODE_COMMALISTRULE)     && (i != m_aChildren.end()))
                        rString.appendAscii(",");
                }
            }
            else
            {
                pSubTree->impl_parseNodeToString_throw( rString, aNewParam );
                i++;

                // bei den CommaListen zwischen alle Subtrees Commas setzen
                if ((m_eNodeType == SQL_NODE_COMMALISTRULE)     && (i != m_aChildren.end()))
                {
                    if (SQL_ISRULE(this,value_exp_commalist) && rParam.bPredicate)
                        rString.appendAscii(";");
                    else
                        rString.appendAscii(",");
                }
            }
        }
    }
}

//-----------------------------------------------------------------------------
bool OSQLParseNode::impl_parseTableNameNodeToString_throw( ::rtl::OUStringBuffer& rString, const SQLParseNodeParameter& rParam ) const
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::impl_parseTableNameNodeToString_throw" );
    // is the table_name part of a table_ref?
    OSL_ENSURE( getParent(), "OSQLParseNode::impl_parseTableNameNodeToString_throw: table_name without parent?" );
    if ( !getParent() || ( getParent()->getKnownRuleID() != table_ref ) )
        return false;

    // if it's a query, maybe we need to substitute the SQL statement ...
    if ( !rParam.bParseToSDBCLevel )
        return false;

    if ( !rParam.xQueries.is() )
        // connection does not support queries in queries, or was no query supplier
        return false;

    try
    {
        ::rtl::OUString sTableOrQueryName( getChild(0)->getTokenValue() );
        bool bIsQuery = rParam.xQueries->hasByName( sTableOrQueryName );
        if ( !bIsQuery )
            return false;

        // avoid recursion (e.g. "foo" defined as "SELECT * FROM bar" and "bar" defined as "SELECT * FROM foo".
        if ( rParam.pSubQueryHistory->find( sTableOrQueryName ) != rParam.pSubQueryHistory->end() )
        {
            ::rtl::OUString sMessage( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "cyclic sub queries" ) ) );
            OSL_ENSURE( rParam.pParser, "OSQLParseNode::impl_parseTableNameNodeToString_throw: no parser?" );
            if ( rParam.pParser )
            {
                const SQLError& rErrors( rParam.pParser->getErrorHelper() );
                rErrors.raiseException( sdb::ErrorCondition::PARSER_CYCLIC_SUB_QUERIES );
            }
            else
            {
                SQLError aErrors( ::comphelper::getProcessServiceFactory() );
                aErrors.raiseException( sdb::ErrorCondition::PARSER_CYCLIC_SUB_QUERIES );
            }
        }
        rParam.pSubQueryHistory->insert( sTableOrQueryName );

        Reference< XPropertySet > xQuery( rParam.xQueries->getByName( sTableOrQueryName ), UNO_QUERY_THROW );

        // substitute the query name with the constituting command
        ::rtl::OUString sCommand;
        OSL_VERIFY( xQuery->getPropertyValue( OMetaConnection::getPropMap().getNameByIndex( PROPERTY_ID_COMMAND ) ) >>= sCommand );

        sal_Bool bEscapeProcessing = sal_False;
        OSL_VERIFY( xQuery->getPropertyValue( OMetaConnection::getPropMap().getNameByIndex( PROPERTY_ID_ESCAPEPROCESSING ) ) >>= bEscapeProcessing );

        // the query we found here might itself be based on another query, so parse it recursively
        OSL_ENSURE( rParam.pParser, "OSQLParseNode::impl_parseTableNameNodeToString_throw: cannot analyze sub queries without a parser!" );
        if ( bEscapeProcessing && rParam.pParser )
        {
            ::rtl::OUString sError;
            ::std::auto_ptr< OSQLParseNode > pSubQueryNode( rParam.pParser->parseTree( sError, sCommand, sal_False ) );
            if ( pSubQueryNode.get() )
            {
                // parse the sub-select to SDBC level, too
                ::rtl::OUStringBuffer sSubSelect;
                pSubQueryNode->impl_parseNodeToString_throw( sSubSelect, rParam );
                if ( sSubSelect.getLength() )
                    sCommand = sSubSelect.makeStringAndClear();
            }
        }

        rString.appendAscii( " ( " );
        rString.append(sCommand);
        rString.appendAscii( " )" );

        // append the query name as table alias, since it might be referenced in other
        // parts of the statement - but only if there's no other alias name present
        if ( !lcl_isAliasNamePresent( *this ) )
        {
            rString.appendAscii( " AS " );
            if ( rParam.bQuote )
                rString.append(SetQuotation( sTableOrQueryName,
                    rParam.aMetaData.getIdentifierQuoteString(), rParam.aMetaData.getIdentifierQuoteString() ));
        }

        // don't forget to remove the query name from the history, else multiple inclusions
        // won't work
        // #i69227# / 2006-10-10 / frank.schoenheit@sun.com
        rParam.pSubQueryHistory->erase( sTableOrQueryName );

        return true;
    }
    catch( const SQLException& )
    {
        throw;
    }
    catch( const Exception& )
    {
        DBG_UNHANDLED_EXCEPTION();
    }
    return false;
}

//-----------------------------------------------------------------------------
void OSQLParseNode::impl_parseTableRangeNodeToString_throw(::rtl::OUStringBuffer& rString, const SQLParseNodeParameter& rParam) const
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::impl_parseTableRangeNodeToString_throw" );
    OSL_PRECOND(  ( count() == 2 ) || ( count() == 3 ) || ( count() == 5 ) ,"Illegal count");

    // rString += ::rtl::OUString::createFromAscii(" ");
    ::std::for_each(m_aChildren.begin(),m_aChildren.end(),
        boost::bind( &OSQLParseNode::impl_parseNodeToString_throw, _1, boost::ref( rString ), boost::cref( rParam ) ));
}

//-----------------------------------------------------------------------------
void OSQLParseNode::impl_parseLikeNodeToString_throw( ::rtl::OUStringBuffer& rString, const SQLParseNodeParameter& rParam ) const
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::impl_parseLikeNodeToString_throw" );
    OSL_ENSURE(count() == 2,"count != 2: Prepare for GPF");

    const OSQLParseNode* pEscNode = NULL;
    const OSQLParseNode* pParaNode = NULL;

    SQLParseNodeParameter aNewParam(rParam);
    //aNewParam.bQuote = sal_True; // why setting this to true? @see http://www.openoffice.org/issues/show_bug.cgi?id=75557

    // if there is a field given we don't display the fieldname, if there are any
    sal_Bool bAddName = sal_True;
    if (rParam.xField.is())
    {
        // retrieve the fields name
        ::rtl::OUString aFieldName;
        try
        {
            // retrieve the fields name
            rtl::OUString aString;
            rParam.xField->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_NAME)) >>= aString;
            aFieldName = aString.getStr();
        }
        catch ( Exception& )
        {
            OSL_ENSURE( false, "OSQLParseNode::impl_parseLikeNodeToString_throw Exception occured!" );
        }
        if ( !m_aChildren[0]->isLeaf() )
        {
            const OSQLParseNode* pCol = m_aChildren[0]->getChild(m_aChildren[0]->count()-1);
            if ((SQL_ISRULE(pCol,column_val) && pCol->getChild(0)->getTokenValue().equalsIgnoreAsciiCase(aFieldName)) ||
                pCol->getTokenValue().equalsIgnoreAsciiCase(aFieldName) )
                bAddName = sal_False;
        }
    }

    if (bAddName)
        m_aChildren[0]->impl_parseNodeToString_throw( rString, aNewParam );

    const OSQLParseNode* pPart2 = m_aChildren[1];
    pPart2->getChild(0)->impl_parseNodeToString_throw( rString, aNewParam );
    pPart2->getChild(1)->impl_parseNodeToString_throw( rString, aNewParam );
    pParaNode = pPart2->getChild(2);
    pEscNode  = pPart2->getChild(3);

    if (pParaNode->isToken())
    {
        ::rtl::OUString aStr = ConvertLikeToken(pParaNode, pEscNode, rParam.bInternational);
        rString.appendAscii(" ");
        rString.append(SetQuotation(aStr,::rtl::OUString::createFromAscii("\'"),::rtl::OUString::createFromAscii("\'\'")));
    }
    else
        pParaNode->impl_parseNodeToString_throw( rString, aNewParam );

    pEscNode->impl_parseNodeToString_throw( rString, aNewParam );
}


// -----------------------------------------------------------------------------
sal_Bool OSQLParseNode::getTableComponents(const OSQLParseNode* _pTableNode,
                                            ::com::sun::star::uno::Any &_rCatalog,
                                            ::rtl::OUString &_rSchema,
                                            ::rtl::OUString &_rTable,
                                            const Reference< XDatabaseMetaData >& _xMetaData)
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::getTableComponents" );
    OSL_ENSURE(_pTableNode,"Wrong use of getTableComponents! _pTableNode is not allowed to be null!");
    if(_pTableNode)
    {
        const sal_Bool bSupportsCatalog = _xMetaData.is() && _xMetaData->supportsCatalogsInDataManipulation();
        const sal_Bool bSupportsSchema = _xMetaData.is() && _xMetaData->supportsSchemasInDataManipulation();
        const OSQLParseNode* pTableNode = _pTableNode;
        // clear the parameter given
        _rCatalog = Any();
        _rSchema = _rTable = ::rtl::OUString();
        // see rule catalog_name: in sqlbison.y
        if (SQL_ISRULE(pTableNode,catalog_name))
        {
            OSL_ENSURE(pTableNode->getChild(0) && pTableNode->getChild(0)->isToken(),"Invalid parsenode!");
            _rCatalog <<= pTableNode->getChild(0)->getTokenValue();
            pTableNode = pTableNode->getChild(2);
        }
        // check if we have schema_name rule
        if(SQL_ISRULE(pTableNode,schema_name))
        {
            if ( bSupportsCatalog && !bSupportsSchema )
                _rCatalog <<= pTableNode->getChild(0)->getTokenValue();
            else
                _rSchema = pTableNode->getChild(0)->getTokenValue();
            pTableNode = pTableNode->getChild(2);
        }
        // check if we have table_name rule
        if(SQL_ISRULE(pTableNode,table_name))
        {
            _rTable = pTableNode->getChild(0)->getTokenValue();
        }
        else
        {
            OSL_ENSURE(0,"Error in parse tree!");
        }
    }
    return _rTable.getLength() != 0;
}
// -----------------------------------------------------------------------------
void OSQLParser::killThousandSeparator(OSQLParseNode* pLiteral)
{
    if ( pLiteral )
    {
        if ( s_xLocaleData->getLocaleItem( m_pData->aLocale ).decimalSeparator.toChar() == ',' )
        {
            pLiteral->m_aNodeValue = pLiteral->m_aNodeValue.replace('.', sal_Unicode());
            // and replace decimal
            pLiteral->m_aNodeValue = pLiteral->m_aNodeValue.replace(',', '.');
        }
        else
            pLiteral->m_aNodeValue = pLiteral->m_aNodeValue.replace(',', sal_Unicode());
        }
}
// -----------------------------------------------------------------------------
OSQLParseNode* OSQLParser::convertNode(sal_Int32 nType,OSQLParseNode*& pLiteral)
{
    if ( !pLiteral )
        return NULL;

    OSQLParseNode* pReturn = pLiteral;

    if ( ( pLiteral->isRule() && !SQL_ISRULE(pLiteral,value_exp) ) || SQL_ISTOKEN(pLiteral,FALSE) || SQL_ISTOKEN(pLiteral,TRUE) )
    {
        switch(nType)
        {
            case DataType::CHAR:
            case DataType::VARCHAR:
            case DataType::LONGVARCHAR:
            case DataType::CLOB:
                if ( !SQL_ISRULE(pReturn,char_value_exp) && !buildStringNodes(pReturn) )
                    pReturn = NULL;
            default:
                break;
        }
    }
    else
    {
        switch(pLiteral->getNodeType())
        {
        case SQL_NODE_STRING:
            switch(nType)
            {
                case DataType::CHAR:
                case DataType::VARCHAR:
                case DataType::LONGVARCHAR:
                case DataType::CLOB:
                    break;
                case DataType::DATE:
                case DataType::TIME:
                case DataType::TIMESTAMP:
                    if (m_xFormatter.is())
                    pReturn = buildDate( nType, pReturn);
                    break;
                default:
                    m_sErrorMessage = m_pContext->getErrorMessage(IParseContext::ERROR_INVALID_COMPARE);
                    break;
            }
            break;
        case SQL_NODE_ACCESS_DATE:
            switch(nType)
            {
                case DataType::DATE:
                case DataType::TIME:
                case DataType::TIMESTAMP:
                if ( m_xFormatter.is() )
                    pReturn = buildDate( nType, pReturn);
                    else
                        m_sErrorMessage = m_pContext->getErrorMessage(IParseContext::ERROR_INVALID_DATE_COMPARE);
                    break;
                default:
                    m_sErrorMessage = m_pContext->getErrorMessage(IParseContext::ERROR_INVALID_COMPARE);
                    break;
            }
            break;
        case SQL_NODE_INTNUM:
            switch(nType)
            {
                case DataType::BIT:
                case DataType::BOOLEAN:
                case DataType::DECIMAL:
                case DataType::NUMERIC:
                case DataType::TINYINT:
                case DataType::SMALLINT:
                case DataType::INTEGER:
                case DataType::BIGINT:
                case DataType::FLOAT:
                case DataType::REAL:
                case DataType::DOUBLE:
                    // kill thousand seperators if any
                    killThousandSeparator(pReturn);
                    break;
                case DataType::CHAR:
                case DataType::VARCHAR:
                case DataType::LONGVARCHAR:
                case DataType::CLOB:
                    pReturn = buildNode_STR_NUM(pReturn);
                    break;
                default:
                    m_sErrorMessage = m_pContext->getErrorMessage(IParseContext::ERROR_INVALID_INT_COMPARE);
                    break;
            }
            break;
        case SQL_NODE_APPROXNUM:
            switch(nType)
            {
                case DataType::DECIMAL:
                case DataType::NUMERIC:
                case DataType::FLOAT:
                case DataType::REAL:
                case DataType::DOUBLE:
                        // kill thousand seperators if any
                    killThousandSeparator(pReturn);
                    break;
                case DataType::CHAR:
                case DataType::VARCHAR:
                case DataType::LONGVARCHAR:
                case DataType::CLOB:
                    pReturn = buildNode_STR_NUM(pReturn);
                    break;
                case DataType::INTEGER:
                default:
                    m_sErrorMessage = m_pContext->getErrorMessage(IParseContext::ERROR_INVALID_REAL_COMPARE);
                    break;
            }
            break;
        default:
            ;
        }
    }
    return pReturn;
}
// -----------------------------------------------------------------------------
sal_Int16 OSQLParser::buildPredicateRule(OSQLParseNode*& pAppend,OSQLParseNode* pLiteral,OSQLParseNode*& pCompare,OSQLParseNode* pLiteral2)
{
    OSL_ENSURE(inPredicateCheck(),"Only in predicate check allowed!");
    sal_Int16 nErg = 0;
    if ( m_xField.is() )
    {
        sal_Int32 nType = 0;
        try
        {
            m_xField->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TYPE)) >>= nType;
        }
        catch( Exception& )
        {
            return nErg;
        }

        OSQLParseNode* pNode1 = convertNode(nType,pLiteral);
        if ( pNode1 )
        {
            OSQLParseNode* pNode2 = convertNode(nType,pLiteral2);
            if ( !m_sErrorMessage.getLength() )
                nErg = buildNode(pAppend,pCompare,pNode1,pNode2);
        }
    }
    if (!pCompare->getParent()) // I have no parent so I was not used and I must die :-)
        delete pCompare;
    return nErg;
}
// -----------------------------------------------------------------------------
sal_Int16 OSQLParser::buildLikeRule(OSQLParseNode*& pAppend, OSQLParseNode*& pLiteral, const OSQLParseNode* pEscape)
{
    sal_Int16 nErg = 0;
    sal_Int32 nType = 0;

    if (!m_xField.is())
        return nErg;
    try
    {
        Any aValue;
        {
            aValue = m_xField->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TYPE));
            aValue >>= nType;
        }
    }
    catch( Exception& )
    {
        return nErg;
    }

    switch (nType)
    {
        case DataType::CHAR:
        case DataType::VARCHAR:
        case DataType::LONGVARCHAR:
        case DataType::CLOB:
            if(pLiteral->isRule())
            {
                pAppend->append(pLiteral);
                nErg = 1;
            }
            else
            {
                switch(pLiteral->getNodeType())
                {
                    case SQL_NODE_STRING:
                        pLiteral->m_aNodeValue = ConvertLikeToken(pLiteral, pEscape, sal_False);
                        pAppend->append(pLiteral);
                        nErg = 1;
                        break;
                    case SQL_NODE_APPROXNUM:
                        if (m_xFormatter.is() && m_nFormatKey)
                        {
                            sal_Int16 nScale = 0;
                            try
                            {
                                Any aValue = getNumberFormatProperty( m_xFormatter, m_nFormatKey, ::rtl::OUString::createFromAscii("Decimals") );
                                aValue >>= nScale;
                            }
                            catch( Exception& )
                            {
                            }

                            pAppend->append(new OSQLInternalNode(stringToDouble(pLiteral->getTokenValue(),nScale),SQL_NODE_STRING));
                        }
                        else
                            pAppend->append(new OSQLInternalNode(pLiteral->getTokenValue(),SQL_NODE_STRING));

                        delete pLiteral;
                        nErg = 1;
                        break;
                    default:
                        m_sErrorMessage = m_pContext->getErrorMessage(IParseContext::ERROR_VALUE_NO_LIKE);
                        m_sErrorMessage = m_sErrorMessage.replaceAt(m_sErrorMessage.indexOf(::rtl::OUString::createFromAscii("#1")),2,pLiteral->getTokenValue());
                        break;
                }
            }
            break;
        default:
            m_sErrorMessage = m_pContext->getErrorMessage(IParseContext::ERROR_FIELD_NO_LIKE);
            break;
    }
    return nErg;
}
//-----------------------------------------------------------------------------
OSQLParseNode* OSQLParser::buildNode_Date(const double& fValue, sal_Int32 nType)
{
    ::rtl::OUString aEmptyString;
    OSQLParseNode* pNewNode = new OSQLInternalNode(aEmptyString, SQL_NODE_RULE,OSQLParser::RuleID(OSQLParseNode::set_fct_spec));
    pNewNode->append(new OSQLInternalNode(::rtl::OUString::createFromAscii("{"), SQL_NODE_PUNCTUATION));
    OSQLParseNode* pDateNode = new OSQLInternalNode(aEmptyString, SQL_NODE_RULE,OSQLParser::RuleID(OSQLParseNode::odbc_fct_spec));
    pNewNode->append(pDateNode);
    pNewNode->append(new OSQLInternalNode(::rtl::OUString::createFromAscii("}"), SQL_NODE_PUNCTUATION));

    switch (nType)
    {
        case DataType::DATE:
        {
            Date aDate = DBTypeConversion::toDate(fValue,DBTypeConversion::getNULLDate(m_xFormatter->getNumberFormatsSupplier()));
            ::rtl::OUString aString = DBTypeConversion::toDateString(aDate);
            pDateNode->append(new OSQLInternalNode(aEmptyString, SQL_NODE_KEYWORD, SQL_TOKEN_D));
            pDateNode->append(new OSQLInternalNode(aString, SQL_NODE_STRING));
            break;
        }
        case DataType::TIME:
        {
            Time aTime = DBTypeConversion::toTime(fValue);
            ::rtl::OUString aString = DBTypeConversion::toTimeString(aTime);
            pDateNode->append(new OSQLInternalNode(aEmptyString, SQL_NODE_KEYWORD, SQL_TOKEN_T));
            pDateNode->append(new OSQLInternalNode(aString, SQL_NODE_STRING));
            break;
        }
        case DataType::TIMESTAMP:
        {
            DateTime aDateTime = DBTypeConversion::toDateTime(fValue,DBTypeConversion::getNULLDate(m_xFormatter->getNumberFormatsSupplier()));
            if (aDateTime.Seconds || aDateTime.Minutes || aDateTime.Hours)
            {
                ::rtl::OUString aString = DBTypeConversion::toDateTimeString(aDateTime);
                pDateNode->append(new OSQLInternalNode(aEmptyString, SQL_NODE_KEYWORD, SQL_TOKEN_TS));
                pDateNode->append(new OSQLInternalNode(aString, SQL_NODE_STRING));
            }
            else
            {
                Date aDate(aDateTime.Day,aDateTime.Month,aDateTime.Year);
                pDateNode->append(new OSQLInternalNode(aEmptyString, SQL_NODE_KEYWORD, SQL_TOKEN_D));
                pDateNode->append(new OSQLInternalNode(DBTypeConversion::toDateString(aDate), SQL_NODE_STRING));
            }
            break;
        }
    }

    return pNewNode;
}
// -----------------------------------------------------------------------------
OSQLParseNode* OSQLParser::buildNode_STR_NUM(OSQLParseNode*& _pLiteral)
{
    OSQLParseNode* pReturn = NULL;
    if ( _pLiteral )
    {
        if (m_nFormatKey)
        {
            sal_Int16 nScale = 0;
            ::rtl::OUString aDec;
            try
            {
                Any aValue = getNumberFormatProperty( m_xFormatter, m_nFormatKey, ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Decimals")) );
                aValue >>= nScale;
            }
            catch( Exception& )
            {
            }

            pReturn = new OSQLInternalNode(stringToDouble(_pLiteral->getTokenValue(),nScale),SQL_NODE_STRING);
        }
        else
            pReturn = new OSQLInternalNode(_pLiteral->getTokenValue(),SQL_NODE_STRING);

        delete _pLiteral;
        _pLiteral = NULL;
    }
    return pReturn;
}
// -----------------------------------------------------------------------------
::rtl::OUString OSQLParser::stringToDouble(const ::rtl::OUString& _rValue,sal_Int16 _nScale)
{
    ::rtl::OUString aValue;
    if(!m_xCharClass.is())
        m_xCharClass  = Reference<XCharacterClassification>(m_xServiceFactory->createInstance(::rtl::OUString::createFromAscii("com.sun.star.i18n.CharacterClassification")),UNO_QUERY);
    if(m_xCharClass.is() && s_xLocaleData.is())
    {
        try
        {
            ParseResult aResult = m_xCharClass->parsePredefinedToken(KParseType::ANY_NUMBER,_rValue,0,m_pData->aLocale,0,::rtl::OUString(),KParseType::ANY_NUMBER,::rtl::OUString());
            if((aResult.TokenType & KParseType::IDENTNAME) && aResult.EndPos == _rValue.getLength())
            {
                aValue = ::rtl::OUString::valueOf(aResult.Value);
                sal_Int32 nPos = aValue.lastIndexOf(::rtl::OUString::createFromAscii("."));
                if((nPos+_nScale) < aValue.getLength())
                    aValue = aValue.replaceAt(nPos+_nScale,aValue.getLength()-nPos-_nScale,::rtl::OUString());
                aValue = aValue.replaceAt(aValue.lastIndexOf(::rtl::OUString::createFromAscii(".")),1,s_xLocaleData->getLocaleItem(m_pData->aLocale).decimalSeparator);
                return aValue;
            }
        }
        catch(Exception&)
        {
        }
    }
    return aValue;
}
// -----------------------------------------------------------------------------

::osl::Mutex& OSQLParser::getMutex()
{
    static ::osl::Mutex aMutex;
    return aMutex;
}

//-----------------------------------------------------------------------------
OSQLParseNode* OSQLParser::predicateTree(::rtl::OUString& rErrorMessage, const ::rtl::OUString& rStatement,
                                          const Reference< ::com::sun::star::util::XNumberFormatter > & xFormatter,
                                         const Reference< XPropertySet > & xField)
{


    // mutex for parsing
    static ::osl::Mutex aMutex;

    // Guard the parsing
    ::osl::MutexGuard aGuard(getMutex());
    // must be reset
    setParser(this);


    // reset the parser
    m_xField        = xField;
    m_xFormatter    = xFormatter;

    if (m_xField.is())
    {
        sal_Int32 nType=0;
        try
        {
            // get the field name
            rtl::OUString aString;

            // retrieve the fields name
            // #75243# use the RealName of the column if there is any otherwise the name which could be the alias
            // of the field
            Reference< XPropertySetInfo> xInfo = m_xField->getPropertySetInfo();
            if ( xInfo->hasPropertyByName(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_REALNAME)))
                m_xField->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_REALNAME)) >>= aString;
            else
                m_xField->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_NAME)) >>= aString;

            m_sFieldName = aString;

            // get the field format key
            if ( xInfo->hasPropertyByName(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_FORMATKEY)))
                m_xField->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_FORMATKEY)) >>= m_nFormatKey;
            else
                m_nFormatKey = 0;

            // get the field type
            m_xField->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TYPE)) >>= nType;
        }
        catch ( Exception& )
        {
            OSL_ASSERT(0);
        }

        if (m_nFormatKey && m_xFormatter.is())
        {
            Any aValue = getNumberFormatProperty( m_xFormatter, m_nFormatKey, OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_LOCALE) );
            OSL_ENSURE(aValue.getValueType() == ::getCppuType((const ::com::sun::star::lang::Locale*)0), "OSQLParser::PredicateTree : invalid language property !");

            if (aValue.getValueType() == ::getCppuType((const ::com::sun::star::lang::Locale*)0))
                aValue >>= m_pData->aLocale;
        }
        else
            m_pData->aLocale = m_pContext->getPreferredLocale();

        if ( m_xFormatter.is() )
        {
            try
            {
                Reference< ::com::sun::star::util::XNumberFormatsSupplier >  xFormatSup = m_xFormatter->getNumberFormatsSupplier();
                if ( xFormatSup.is() )
                {
                    Reference< ::com::sun::star::util::XNumberFormats >  xFormats = xFormatSup->getNumberFormats();
                    if ( xFormats.is() )
                    {
                        ::com::sun::star::lang::Locale aLocale;
                        aLocale.Language = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("en"));
                        aLocale.Country = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("US"));
                        ::rtl::OUString sFormat(RTL_CONSTASCII_USTRINGPARAM("YYYY-MM-DD"));
                        m_nDateFormatKey = xFormats->queryKey(sFormat,aLocale,sal_False);
                        if ( m_nDateFormatKey == sal_Int32(-1) )
                            m_nDateFormatKey = xFormats->addNew(sFormat, aLocale);
                    }
                }
            }
            catch ( Exception& )
            {
                OSL_ENSURE(0,"DateFormatKey");
            }
        }

        switch (nType)
        {
            case DataType::DATE:
            case DataType::TIME:
            case DataType::TIMESTAMP:
                s_pScanner->SetRule(s_pScanner->GetDATERule());
                break;
            case DataType::CHAR:
            case DataType::VARCHAR:
            case DataType::LONGVARCHAR:
            case DataType::CLOB:
                s_pScanner->SetRule(s_pScanner->GetSTRINGRule());
                break;
            default:
                if ( s_xLocaleData->getLocaleItem( m_pData->aLocale ).decimalSeparator.toChar() == ',' )
                    s_pScanner->SetRule(s_pScanner->GetGERRule());
                else
                    s_pScanner->SetRule(s_pScanner->GetENGRule());
        }

    }
    else
        s_pScanner->SetRule(s_pScanner->GetSQLRule());

    s_pScanner->prepareScan(rStatement, m_pContext, sal_True);

    SQLyylval.pParseNode = NULL;
    //  SQLyypvt = NULL;
    m_pParseTree = NULL;
    m_sErrorMessage= ::rtl::OUString();

    // ... und den Parser anwerfen ...
    if (SQLyyparse() != 0)
    {
        m_sFieldName= ::rtl::OUString();
    m_xField.clear();
    m_xFormatter.clear();
        m_nFormatKey = 0;
        m_nDateFormatKey = 0;

        if (!m_sErrorMessage.getLength())
            m_sErrorMessage = s_pScanner->getErrorMessage();
        if (!m_sErrorMessage.getLength())
            m_sErrorMessage = m_pContext->getErrorMessage(IParseContext::ERROR_GENERAL);

        rErrorMessage = m_sErrorMessage;

        // clear the garbage collector
        (*s_pGarbageCollector)->clearAndDelete();
        return NULL;
    }
    else
    {
        (*s_pGarbageCollector)->clear();

        m_sFieldName= ::rtl::OUString();
    m_xField.clear();
    m_xFormatter.clear();
        m_nFormatKey = 0;
        m_nDateFormatKey = 0;

        // Das Ergebnis liefern (den Root Parse Node):

        // Stattdessen setzt die Parse-Routine jetzt den Member pParseTree
        // - einfach diesen zurueckliefern:
        OSL_ENSURE(m_pParseTree != NULL,"OSQLParser: Parser hat keinen ParseTree geliefert");
        return m_pParseTree;
    }
}

//=============================================================================
//-----------------------------------------------------------------------------
OSQLParser::OSQLParser(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _xServiceFactory,const IParseContext* _pContext)
    :m_pContext(_pContext)
    ,m_pParseTree(NULL)
    ,m_pData( new OSQLParser_Data( _xServiceFactory ) )
    ,m_nFormatKey(0)
    ,m_nDateFormatKey(0)
    ,m_xServiceFactory(_xServiceFactory)
{


    setParser(this);

#ifdef SQLYYDEBUG
#ifdef SQLYYDEBUG_ON
    SQLyydebug = 1;
#endif
#endif

    ::osl::MutexGuard aGuard(getMutex());
    // do we have to initialize the data
    if (s_nRefCount == 0)
    {
        s_pScanner = new OSQLScanner();
        s_pScanner->setScanner();
        s_pGarbageCollector = new OSQLParseNodesGarbageCollector();

        if(!s_xLocaleData.is())
            s_xLocaleData = Reference<XLocaleData>(m_xServiceFactory->createInstance(::rtl::OUString::createFromAscii("com.sun.star.i18n.LocaleData")),UNO_QUERY);

        // auf 0 zuruecksetzen
        memset(OSQLParser::s_nRuleIDs,0,sizeof(OSQLParser::s_nRuleIDs[0]) * (OSQLParseNode::rule_count+1));

        struct
        {
            OSQLParseNode::Rule eRule;      // the parse node's ID for the rule
            ::rtl::OString      sRuleName;  // the name of the rule ("select_statement")
        }   aRuleDescriptions[] =
        {
            { OSQLParseNode::select_statement, "select_statement" },
            { OSQLParseNode::table_exp, "table_exp" },
            { OSQLParseNode::table_ref_commalist, "table_ref_commalist" },
            { OSQLParseNode::table_ref, "table_ref" },
            { OSQLParseNode::catalog_name, "catalog_name" },
            { OSQLParseNode::schema_name, "schema_name" },
            { OSQLParseNode::table_name, "table_name" },
            { OSQLParseNode::opt_column_commalist, "opt_column_commalist" },
            { OSQLParseNode::column_commalist, "column_commalist" },
            { OSQLParseNode::column_ref_commalist, "column_ref_commalist" },
            { OSQLParseNode::column_ref, "column_ref" },
            { OSQLParseNode::opt_order_by_clause, "opt_order_by_clause" },
            { OSQLParseNode::ordering_spec_commalist, "ordering_spec_commalist" },
            { OSQLParseNode::ordering_spec, "ordering_spec" },
            { OSQLParseNode::opt_asc_desc, "opt_asc_desc" },
            { OSQLParseNode::where_clause, "where_clause" },
            { OSQLParseNode::opt_where_clause, "opt_where_clause" },
            { OSQLParseNode::search_condition, "search_condition" },
            { OSQLParseNode::comparison_predicate, "comparison_predicate" },
            { OSQLParseNode::between_predicate, "between_predicate" },
            { OSQLParseNode::like_predicate, "like_predicate" },
            { OSQLParseNode::opt_escape, "opt_escape" },
            { OSQLParseNode::test_for_null, "test_for_null" },
            { OSQLParseNode::scalar_exp_commalist, "scalar_exp_commalist" },
            { OSQLParseNode::scalar_exp, "scalar_exp" },
            { OSQLParseNode::parameter_ref, "parameter_ref" },
            { OSQLParseNode::parameter, "parameter" },
            { OSQLParseNode::general_set_fct, "general_set_fct" },
            { OSQLParseNode::range_variable, "range_variable" },
            { OSQLParseNode::column, "column" },
            { OSQLParseNode::delete_statement_positioned, "delete_statement_positioned" },
            { OSQLParseNode::delete_statement_searched, "delete_statement_searched" },
            { OSQLParseNode::update_statement_positioned, "update_statement_positioned" },
            { OSQLParseNode::update_statement_searched, "update_statement_searched" },
            { OSQLParseNode::assignment_commalist, "assignment_commalist" },
            { OSQLParseNode::assignment, "assignment" },
            { OSQLParseNode::values_or_query_spec, "values_or_query_spec" },
            { OSQLParseNode::insert_statement, "insert_statement" },
            { OSQLParseNode::insert_atom_commalist, "insert_atom_commalist" },
            { OSQLParseNode::insert_atom, "insert_atom" },
            { OSQLParseNode::predicate_check, "predicate_check" },
            { OSQLParseNode::from_clause, "from_clause" },
            { OSQLParseNode::qualified_join, "qualified_join" },
            { OSQLParseNode::cross_union, "cross_union" },
            { OSQLParseNode::select_sublist, "select_sublist" },
            { OSQLParseNode::derived_column, "derived_column" },
            { OSQLParseNode::column_val, "column_val" },
            { OSQLParseNode::set_fct_spec, "set_fct_spec" },
            { OSQLParseNode::boolean_term, "boolean_term" },
            { OSQLParseNode::boolean_primary, "boolean_primary" },
            { OSQLParseNode::num_value_exp, "num_value_exp" },
            { OSQLParseNode::join_type, "join_type" },
            { OSQLParseNode::position_exp, "position_exp" },
            { OSQLParseNode::extract_exp, "extract_exp" },
            { OSQLParseNode::length_exp, "length_exp" },
            { OSQLParseNode::char_value_fct, "char_value_fct" },
            { OSQLParseNode::odbc_call_spec, "odbc_call_spec" },
            { OSQLParseNode::in_predicate, "in_predicate" },
            { OSQLParseNode::existence_test, "existence_test" },
            { OSQLParseNode::unique_test, "unique_test" },
            { OSQLParseNode::all_or_any_predicate, "all_or_any_predicate" },
            { OSQLParseNode::named_columns_join, "named_columns_join" },
            { OSQLParseNode::join_condition, "join_condition" },
            { OSQLParseNode::joined_table, "joined_table" },
            { OSQLParseNode::boolean_factor, "boolean_factor" },
            { OSQLParseNode::sql_not, "sql_not" },
            { OSQLParseNode::boolean_test, "boolean_test" },
            { OSQLParseNode::manipulative_statement, "manipulative_statement" },
            { OSQLParseNode::subquery, "subquery" },
            { OSQLParseNode::value_exp_commalist, "value_exp_commalist" },
            { OSQLParseNode::odbc_fct_spec, "odbc_fct_spec" },
            { OSQLParseNode::union_statement, "union_statement" },
            { OSQLParseNode::outer_join_type, "outer_join_type" },
            { OSQLParseNode::char_value_exp, "char_value_exp" },
            { OSQLParseNode::term, "term" },
            { OSQLParseNode::value_exp_primary, "value_exp_primary" },
            { OSQLParseNode::value_exp, "value_exp" },
            { OSQLParseNode::selection, "selection" },
            { OSQLParseNode::fold, "fold" },
            { OSQLParseNode::char_substring_fct, "char_substring_fct" },
            { OSQLParseNode::factor, "factor" },
            { OSQLParseNode::base_table_def, "base_table_def" },
            { OSQLParseNode::base_table_element_commalist, "base_table_element_commalist" },
            { OSQLParseNode::data_type, "data_type" },
            { OSQLParseNode::column_def, "column_def" },
            { OSQLParseNode::table_node, "table_node" },
            { OSQLParseNode::as, "as" },
            { OSQLParseNode::op_column_commalist, "op_column_commalist" },
            { OSQLParseNode::table_primary_as_range_column, "table_primary_as_range_column" },
            { OSQLParseNode::datetime_primary, "datetime_primary" },
            { OSQLParseNode::concatenation, "concatenation" },
            { OSQLParseNode::char_factor, "char_factor" },
            { OSQLParseNode::bit_value_fct, "bit_value_fct" },
            { OSQLParseNode::comparison_predicate_part_2, "comparison_predicate_part_2" },
            { OSQLParseNode::parenthesized_boolean_value_expression, "parenthesized_boolean_value_expression" },
            { OSQLParseNode::character_string_type, "character_string_type" },
            { OSQLParseNode::other_like_predicate_part_2, "other_like_predicate_part_2" },
            { OSQLParseNode::between_predicate_part_2, "between_predicate_part_2" },
            { OSQLParseNode::cast_spec, "cast_spec" }
        };
        size_t nRuleMapCount = sizeof( aRuleDescriptions ) / sizeof( aRuleDescriptions[0] );
        OSL_ENSURE( nRuleMapCount == size_t( OSQLParseNode::rule_count ), "OSQLParser::OSQLParser: added a new rule? Adjust this map!" );

        for ( size_t mapEntry = 0; mapEntry < nRuleMapCount; ++mapEntry )
        {
            // look up the rule description in the our identifier map
            sal_uInt32 nParserRuleID = StrToRuleID( aRuleDescriptions[ mapEntry ].sRuleName );
            // map the parser's rule ID to the OSQLParseNode::Rule
            s_aReverseRuleIDLookup[ nParserRuleID ] = aRuleDescriptions[ mapEntry ].eRule;
            // and map the OSQLParseNode::Rule to the parser's rule ID
            s_nRuleIDs[ aRuleDescriptions[ mapEntry ].eRule ] = nParserRuleID;
        }
    }
    ++s_nRefCount;

    if (m_pContext == NULL)
        // take the default context
        m_pContext = &s_aDefaultContext;

    m_pData->aLocale = m_pContext->getPreferredLocale();
}

//-----------------------------------------------------------------------------
OSQLParser::~OSQLParser()
{
    {
        ::osl::MutexGuard aGuard(getMutex());
        OSL_ENSURE(s_nRefCount > 0, "OSQLParser::~OSQLParser() : suspicious call : have a refcount of 0 !");
        if (!--s_nRefCount)
        {
            s_pScanner->setScanner(sal_True);
            delete s_pScanner;
            s_pScanner = NULL;

            delete s_pGarbageCollector;
            s_pGarbageCollector = NULL;
            // is only set the first time so we should delete it only when there no more instances
            s_xLocaleData = NULL;

            RuleIDMap aEmpty;
            s_aReverseRuleIDLookup.swap( aEmpty );
        }
        m_pParseTree = NULL;
    }
}
// -----------------------------------------------------------------------------
void OSQLParseNode::substituteParameterNames(OSQLParseNode* _pNode)
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::substituteParameterNames" );
    sal_Int32 nCount = _pNode->count();
    for(sal_Int32 i=0;i < nCount;++i)
    {
        OSQLParseNode* pChildNode = _pNode->getChild(i);
        if(SQL_ISRULE(pChildNode,parameter) && pChildNode->count() > 1)
        {
            OSQLParseNode* pNewNode = new OSQLParseNode(::rtl::OUString::createFromAscii("?") ,SQL_NODE_PUNCTUATION,0);
            delete pChildNode->replace(pChildNode->getChild(0),pNewNode);
            sal_Int32 nChildCount = pChildNode->count();
            for(sal_Int32 j=1;j < nChildCount;++j)
                delete pChildNode->removeAt(1);
        }
        else
            substituteParameterNames(pChildNode);

    }
}
// -----------------------------------------------------------------------------
bool OSQLParser::extractDate(OSQLParseNode* pLiteral,double& _rfValue)
{
    Reference< XNumberFormatsSupplier > xFormatSup = m_xFormatter->getNumberFormatsSupplier();
    Reference< XNumberFormatTypes > xFormatTypes;
    if ( xFormatSup.is() )
        xFormatTypes = xFormatTypes.query( xFormatSup->getNumberFormats() );

    // if there is no format key, yet, make sure we have a feasible one for our locale
    try
    {
        if ( !m_nFormatKey && xFormatTypes.is() )
            m_nFormatKey = ::dbtools::getDefaultNumberFormat( m_xField, xFormatTypes, m_pData->aLocale );
    }
    catch( Exception& ) { }
    ::rtl::OUString sValue = pLiteral->getTokenValue();
    sal_Int32 nTryFormat = m_nFormatKey;
    bool bSuccess = lcl_saveConvertToNumber( m_xFormatter, nTryFormat, sValue, _rfValue );

    // If our format key didn't do, try the default date format for our locale.
    if ( !bSuccess && xFormatTypes.is() )
    {
        try
        {
            nTryFormat = xFormatTypes->getStandardFormat( NumberFormat::DATE, m_pData->aLocale );
        }
        catch( Exception& ) { }
        bSuccess = lcl_saveConvertToNumber( m_xFormatter, nTryFormat, sValue, _rfValue );
    }

    // if this also didn't do, try ISO format
    if ( !bSuccess && xFormatTypes.is() )
    {
        try
        {
            nTryFormat = xFormatTypes->getFormatIndex( NumberFormatIndex::DATE_DIN_YYYYMMDD, m_pData->aLocale );
        }
        catch( Exception& ) { }
        bSuccess = lcl_saveConvertToNumber( m_xFormatter, nTryFormat, sValue, _rfValue );
    }

    // if this also didn't do, try fallback date format (en-US)
    if ( !bSuccess )
    {
        nTryFormat = m_nDateFormatKey;
        bSuccess = lcl_saveConvertToNumber( m_xFormatter, nTryFormat, sValue, _rfValue );
    }
    return bSuccess;
}
// -----------------------------------------------------------------------------
OSQLParseNode* OSQLParser::buildDate(sal_Int32 _nType,OSQLParseNode*& pLiteral)
{
    // try converting the string into a date, according to our format key
    double fValue = 0.0;
    OSQLParseNode* pFCTNode = NULL;

    if ( extractDate(pLiteral,fValue) )
        pFCTNode = buildNode_Date( fValue, _nType);

    delete pLiteral;
    pLiteral = NULL;

    if ( !pFCTNode )
        m_sErrorMessage = m_pContext->getErrorMessage(IParseContext::ERROR_INVALID_DATE_COMPARE);

    return pFCTNode;
}
// -----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
OSQLParseNode::OSQLParseNode(const sal_Char * pNewValue,
                             SQLNodeType eNewNodeType,
                             sal_uInt32 nNewNodeID)
        :m_pParent(NULL)
        ,m_aNodeValue(pNewValue,strlen(pNewValue),RTL_TEXTENCODING_UTF8)
        ,m_eNodeType(eNewNodeType)
        ,m_nNodeID(nNewNodeID)
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::OSQLParseNode" );

    OSL_ENSURE(m_eNodeType >= SQL_NODE_RULE && m_eNodeType <= SQL_NODE_CONCAT,"OSQLParseNode: mit unzulaessigem NodeType konstruiert");
}
//-----------------------------------------------------------------------------
OSQLParseNode::OSQLParseNode(const ::rtl::OString &_rNewValue,
                             SQLNodeType eNewNodeType,
                             sal_uInt32 nNewNodeID)
        :m_pParent(NULL)
        ,m_aNodeValue(_rNewValue,_rNewValue.getLength(),RTL_TEXTENCODING_UTF8)
        ,m_eNodeType(eNewNodeType)
        ,m_nNodeID(nNewNodeID)
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::OSQLParseNode" );

    OSL_ENSURE(m_eNodeType >= SQL_NODE_RULE && m_eNodeType <= SQL_NODE_CONCAT,"OSQLParseNode: mit unzulaessigem NodeType konstruiert");
}
//-----------------------------------------------------------------------------
OSQLParseNode::OSQLParseNode(const sal_Unicode * pNewValue,
                                 SQLNodeType eNewNodeType,
                                 sal_uInt32 nNewNodeID)
        :m_pParent(NULL)
        ,m_aNodeValue(pNewValue)
        ,m_eNodeType(eNewNodeType)
        ,m_nNodeID(nNewNodeID)
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::OSQLParseNode" );

    OSL_ENSURE(m_eNodeType >= SQL_NODE_RULE && m_eNodeType <= SQL_NODE_CONCAT,"OSQLParseNode: mit unzulaessigem NodeType konstruiert");
}
//-----------------------------------------------------------------------------
OSQLParseNode::OSQLParseNode(const ::rtl::OUString &_rNewValue,
                                 SQLNodeType eNewNodeType,
                                 sal_uInt32 nNewNodeID)
        :m_pParent(NULL)
        ,m_aNodeValue(_rNewValue)
        ,m_eNodeType(eNewNodeType)
        ,m_nNodeID(nNewNodeID)
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::OSQLParseNode" );

    OSL_ENSURE(m_eNodeType >= SQL_NODE_RULE && m_eNodeType <= SQL_NODE_CONCAT,"OSQLParseNode: mit unzulaessigem NodeType konstruiert");
}
//-----------------------------------------------------------------------------
OSQLParseNode::OSQLParseNode(const OSQLParseNode& rParseNode)
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::OSQLParseNode" );

    // klemm den getParent auf NULL
    m_pParent = NULL;

    // kopiere die member
    m_aNodeValue = rParseNode.m_aNodeValue;
    m_eNodeType  = rParseNode.m_eNodeType;
    m_nNodeID    = rParseNode.m_nNodeID;


    // denk dran, dass von Container abgeleitet wurde, laut SV-Help erzeugt
    // copy-Constructor des Containers einen neuen Container mit den gleichen
    // Zeigern als Inhalt -> d.h. nach dem Kopieren des Container wird fuer
    // alle Zeiger ungleich NULL eine Kopie hergestellt und anstelle des alten
    // Zeigers wieder eingehangen.

    // wenn kein Blatt, dann SubTrees bearbeiten
    for (OSQLParseNodes::const_iterator i = rParseNode.m_aChildren.begin();
         i != rParseNode.m_aChildren.end(); i++)
        append(new OSQLParseNode(**i));
}
// -----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
OSQLParseNode& OSQLParseNode::operator=(const OSQLParseNode& rParseNode)
{
    if (this != &rParseNode)
    {
        // kopiere die member - pParent bleibt der alte
        m_aNodeValue = rParseNode.m_aNodeValue;
        m_eNodeType  = rParseNode.m_eNodeType;
        m_nNodeID    = rParseNode.m_nNodeID;

        for (OSQLParseNodes::const_iterator i = m_aChildren.begin();
            i != m_aChildren.end(); i++)
            delete *i;

        m_aChildren.clear();

        for (OSQLParseNodes::const_iterator j = rParseNode.m_aChildren.begin();
             j != rParseNode.m_aChildren.end(); j++)
            append(new OSQLParseNode(**j));
    }
    return *this;
}

//-----------------------------------------------------------------------------
sal_Bool OSQLParseNode::operator==(OSQLParseNode& rParseNode) const
{
    // die member muessen gleich sein
    sal_Bool bResult = (m_nNodeID  == rParseNode.m_nNodeID) &&
                   (m_eNodeType == rParseNode.m_eNodeType) &&
                   (m_aNodeValue == rParseNode.m_aNodeValue) &&
                    count() == rParseNode.count();

    // Parameters are not equal!
    bResult = bResult && !SQL_ISRULE(this, parameter);

    // compare childs
    for (sal_uInt32 i=0; bResult && i < count(); i++)
        bResult = *getChild(i) == *rParseNode.getChild(i);

    return bResult;
}

//-----------------------------------------------------------------------------
OSQLParseNode::~OSQLParseNode()
{
    for (OSQLParseNodes::const_iterator i = m_aChildren.begin();
         i != m_aChildren.end(); i++)
        delete *i;
    m_aChildren.clear();
}

//-----------------------------------------------------------------------------
void OSQLParseNode::append(OSQLParseNode* pNewNode)
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::append" );

    OSL_ENSURE(pNewNode != NULL, "OSQLParseNode: ungueltiger NewSubTree");
    OSL_ENSURE(pNewNode->getParent() == NULL, "OSQLParseNode: Knoten ist kein Waise");
    OSL_ENSURE(::std::find(m_aChildren.begin(), m_aChildren.end(), pNewNode) == m_aChildren.end(),
            "OSQLParseNode::append() Node already element of parent");

    // stelle Verbindung zum getParent her:
    pNewNode->setParent( this );
    // und haenge den SubTree hinten an
    m_aChildren.push_back(pNewNode);
}
// -----------------------------------------------------------------------------
sal_Bool OSQLParseNode::addDateValue(::rtl::OUStringBuffer& rString, const SQLParseNodeParameter& rParam) const
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::addDateValue" );
    // special display for date/time values
    if (SQL_ISRULE(this,set_fct_spec) && SQL_ISPUNCTUATION(m_aChildren[0],"{"))
    {
        const OSQLParseNode* pODBCNode = m_aChildren[1];
        const OSQLParseNode* pODBCNodeChild = pODBCNode->m_aChildren[0];

        if (pODBCNodeChild->getNodeType() == SQL_NODE_KEYWORD && (
            SQL_ISTOKEN(pODBCNodeChild, D) ||
            SQL_ISTOKEN(pODBCNodeChild, T) ||
            SQL_ISTOKEN(pODBCNodeChild, TS) ))
        {
            ::rtl::OUString suQuote(::rtl::OUString::createFromAscii("'"));
            if (rParam.bPredicate)
            {
                 if (rParam.aMetaData.shouldEscapeDateTime())
                 {
                     suQuote = ::rtl::OUString::createFromAscii("#");
                 }
            }
            else
            {
                 if (rParam.aMetaData.shouldEscapeDateTime())
                 {
                     // suQuote = ::rtl::OUString::createFromAscii("'");
                     return sal_False;
                 }
            }

            if (rString.getLength())
                rString.appendAscii(" ");
            rString.append(suQuote);
            const ::rtl::OUString sTokenValue = pODBCNode->m_aChildren[1]->getTokenValue();
            if (SQL_ISTOKEN(pODBCNodeChild, D))
            {
                rString.append(rParam.bPredicate ? convertDateString(rParam, sTokenValue) : sTokenValue);
            }
            else if (SQL_ISTOKEN(pODBCNodeChild, T))
            {
                rString.append(rParam.bPredicate ? convertTimeString(rParam, sTokenValue) : sTokenValue);
            }
            else
            {
                rString.append(rParam.bPredicate ? convertDateTimeString(rParam, sTokenValue) : sTokenValue);
            }
            rString.append(suQuote);
            return sal_True;
        }
    }
    return sal_False;
}
// -----------------------------------------------------------------------------
void OSQLParseNode::replaceNodeValue(const ::rtl::OUString& rTableAlias,const ::rtl::OUString& rColumnName)
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::replaceNodeValue" );
    for (sal_uInt32 i=0;i<count();++i)
    {
        if (SQL_ISRULE(this,column_ref) && count() == 1 && getChild(0)->getTokenValue() == rColumnName)
        {
            OSQLParseNode * pCol = removeAt((sal_uInt32)0);
            append(new OSQLParseNode(rTableAlias,SQL_NODE_NAME));
            append(new OSQLParseNode(::rtl::OUString::createFromAscii("."),SQL_NODE_PUNCTUATION));
            append(pCol);
        }
        else
            getChild(i)->replaceNodeValue(rTableAlias,rColumnName);
    }
}
//-----------------------------------------------------------------------------
OSQLParseNode* OSQLParseNode::getByRule(OSQLParseNode::Rule eRule) const
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::getByRule" );
    OSQLParseNode* pRetNode = 0;
    if (isRule() && OSQLParser::RuleID(eRule) == getRuleID())
        pRetNode = (OSQLParseNode*)this;
    else
    {
        for (OSQLParseNodes::const_iterator i = m_aChildren.begin();
            !pRetNode && i != m_aChildren.end(); i++)
            pRetNode = (*i)->getByRule(eRule);
    }
    return pRetNode;
}
//-----------------------------------------------------------------------------
OSQLParseNode* MakeANDNode(OSQLParseNode *pLeftLeaf,OSQLParseNode *pRightLeaf)
{
    OSQLParseNode* pNewNode = new OSQLParseNode(::rtl::OUString(),SQL_NODE_RULE,OSQLParser::RuleID(OSQLParseNode::boolean_term));
    pNewNode->append(pLeftLeaf);
    pNewNode->append(new OSQLParseNode(::rtl::OUString::createFromAscii("AND"),SQL_NODE_KEYWORD,SQL_TOKEN_AND));
    pNewNode->append(pRightLeaf);
    return pNewNode;
}
//-----------------------------------------------------------------------------
OSQLParseNode* MakeORNode(OSQLParseNode *pLeftLeaf,OSQLParseNode *pRightLeaf)
{
    OSQLParseNode* pNewNode = new OSQLParseNode(::rtl::OUString(),SQL_NODE_RULE,OSQLParser::RuleID(OSQLParseNode::search_condition));
    pNewNode->append(pLeftLeaf);
    pNewNode->append(new OSQLParseNode(::rtl::OUString::createFromAscii("OR"),SQL_NODE_KEYWORD,SQL_TOKEN_OR));
    pNewNode->append(pRightLeaf);
    return pNewNode;
}
//-----------------------------------------------------------------------------
void OSQLParseNode::disjunctiveNormalForm(OSQLParseNode*& pSearchCondition)
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::disjunctiveNormalForm" );
    if(!pSearchCondition) // no where condition at entry point
        return;

    OSQLParseNode::absorptions(pSearchCondition);
    // '(' search_condition ')'
    if (SQL_ISRULE(pSearchCondition,boolean_primary))
    {
        OSQLParseNode* pLeft    = pSearchCondition->getChild(1);
        disjunctiveNormalForm(pLeft);
    }
    // search_condition SQL_TOKEN_OR boolean_term
    else if (SQL_ISRULE(pSearchCondition,search_condition))
    {
        OSQLParseNode* pLeft    = pSearchCondition->getChild(0);
        disjunctiveNormalForm(pLeft);

        OSQLParseNode* pRight = pSearchCondition->getChild(2);
        disjunctiveNormalForm(pRight);
    }
    // boolean_term SQL_TOKEN_AND boolean_factor
    else if (SQL_ISRULE(pSearchCondition,boolean_term))
    {
        OSQLParseNode* pLeft    = pSearchCondition->getChild(0);
        disjunctiveNormalForm(pLeft);

        OSQLParseNode* pRight = pSearchCondition->getChild(2);
        disjunctiveNormalForm(pRight);

        OSQLParseNode* pNewNode = NULL;
        // '(' search_condition ')' on left side
        if(pLeft->count() == 3 && SQL_ISRULE(pLeft,boolean_primary) && SQL_ISRULE(pLeft->getChild(1),search_condition))
        {
            // and-or tree  on left side
            OSQLParseNode* pOr = pLeft->getChild(1);
            OSQLParseNode* pNewLeft = NULL;
            OSQLParseNode* pNewRight = NULL;

            // cut right from parent
            pSearchCondition->removeAt(2);

            pNewRight   = MakeANDNode(pOr->removeAt(2)      ,pRight);
            pNewLeft    = MakeANDNode(pOr->removeAt((sal_uInt32)0)  ,new OSQLParseNode(*pRight));
            pNewNode    = MakeORNode(pNewLeft,pNewRight);
            // and append new Node
            replaceAndReset(pSearchCondition,pNewNode);

            disjunctiveNormalForm(pSearchCondition);
        }
        else if(pRight->count() == 3 && SQL_ISRULE(pRight,boolean_primary) && SQL_ISRULE(pRight->getChild(1),search_condition))
        {   // '(' search_condition ')' on right side
            // and-or tree  on right side
            // a and (b or c)
            OSQLParseNode* pOr = pRight->getChild(1);
            OSQLParseNode* pNewLeft = NULL;
            OSQLParseNode* pNewRight = NULL;

            // cut left from parent
            pSearchCondition->removeAt((sal_uInt32)0);

            pNewRight   = MakeANDNode(pLeft,pOr->removeAt(2));
            pNewLeft    = MakeANDNode(new OSQLParseNode(*pLeft),pOr->removeAt((sal_uInt32)0));
            pNewNode    = MakeORNode(pNewLeft,pNewRight);

            // and append new Node
            replaceAndReset(pSearchCondition,pNewNode);
            disjunctiveNormalForm(pSearchCondition);
        }
        else if(SQL_ISRULE(pLeft,boolean_primary) && (!SQL_ISRULE(pLeft->getChild(1),search_condition) || !SQL_ISRULE(pLeft->getChild(1),boolean_term)))
            pSearchCondition->replace(pLeft, pLeft->removeAt(1));
        else if(SQL_ISRULE(pRight,boolean_primary) && (!SQL_ISRULE(pRight->getChild(1),search_condition) || !SQL_ISRULE(pRight->getChild(1),boolean_term)))
            pSearchCondition->replace(pRight, pRight->removeAt(1));
    }
}
//-----------------------------------------------------------------------------
void OSQLParseNode::negateSearchCondition(OSQLParseNode*& pSearchCondition,sal_Bool bNegate)
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::negateSearchCondition" );
    if(!pSearchCondition) // no where condition at entry point
        return;
    // '(' search_condition ')'
    if (pSearchCondition->count() == 3 && SQL_ISRULE(pSearchCondition,boolean_primary))
    {
        OSQLParseNode* pRight = pSearchCondition->getChild(1);
        negateSearchCondition(pRight,bNegate);
    }
    // search_condition SQL_TOKEN_OR boolean_term
    else if (SQL_ISRULE(pSearchCondition,search_condition))
    {
        OSQLParseNode* pLeft    = pSearchCondition->getChild(0);
        OSQLParseNode* pRight = pSearchCondition->getChild(2);
        if(bNegate)
        {
            OSQLParseNode* pNewNode = new OSQLParseNode(::rtl::OUString(),SQL_NODE_RULE,OSQLParser::RuleID(OSQLParseNode::boolean_term));
            pNewNode->append(pSearchCondition->removeAt((sal_uInt32)0));
            pNewNode->append(new OSQLParseNode(::rtl::OUString::createFromAscii("AND"),SQL_NODE_KEYWORD,SQL_TOKEN_AND));
            pNewNode->append(pSearchCondition->removeAt((sal_uInt32)1));
            replaceAndReset(pSearchCondition,pNewNode);

            pLeft   = pNewNode->getChild(0);
            pRight  = pNewNode->getChild(2);
        }

        negateSearchCondition(pLeft,bNegate);
        negateSearchCondition(pRight,bNegate);
    }
    // boolean_term SQL_TOKEN_AND boolean_factor
    else if (SQL_ISRULE(pSearchCondition,boolean_term))
    {
        OSQLParseNode* pLeft    = pSearchCondition->getChild(0);
        OSQLParseNode* pRight = pSearchCondition->getChild(2);
        if(bNegate)
        {
            OSQLParseNode* pNewNode = new OSQLParseNode(::rtl::OUString(),SQL_NODE_RULE,OSQLParser::RuleID(OSQLParseNode::search_condition));
            pNewNode->append(pSearchCondition->removeAt((sal_uInt32)0));
            pNewNode->append(new OSQLParseNode(::rtl::OUString::createFromAscii("OR"),SQL_NODE_KEYWORD,SQL_TOKEN_OR));
            pNewNode->append(pSearchCondition->removeAt((sal_uInt32)1));
            replaceAndReset(pSearchCondition,pNewNode);

            pLeft   = pNewNode->getChild(0);
            pRight  = pNewNode->getChild(2);
        }

        negateSearchCondition(pLeft,bNegate);
        negateSearchCondition(pRight,bNegate);
    }
    // SQL_TOKEN_NOT ( boolean_test )
    else if (SQL_ISRULE(pSearchCondition,boolean_factor))
    {
        OSQLParseNode *pNot = pSearchCondition->removeAt((sal_uInt32)0);
        delete pNot;
        OSQLParseNode *pBooleanTest = pSearchCondition->removeAt((sal_uInt32)0);
        // TODO is this needed // pBooleanTest->setParent(NULL);
        replaceAndReset(pSearchCondition,pBooleanTest);

        if (!bNegate)
            negateSearchCondition(pSearchCondition,sal_True);   //  negate all deeper values
    }
    // row_value_constructor comparison row_value_constructor
    // row_value_constructor comparison any_all_some subquery
    else if(bNegate && (SQL_ISRULE(pSearchCondition,comparison_predicate) || SQL_ISRULE(pSearchCondition,all_or_any_predicate)))
    {
        OSQLParseNode* pComparison = pSearchCondition->getChild(1);
        OSQLParseNode* pNewComparison = NULL;
        switch(pComparison->getNodeType())
        {
            case SQL_NODE_EQUAL:
                pNewComparison = new OSQLParseNode(::rtl::OUString::createFromAscii("<>"),SQL_NODE_NOTEQUAL,SQL_NOTEQUAL);
                break;
            case SQL_NODE_LESS:
                pNewComparison = new OSQLParseNode(::rtl::OUString::createFromAscii(">="),SQL_NODE_GREATEQ,SQL_GREATEQ);
                break;
            case SQL_NODE_GREAT:
                pNewComparison = new OSQLParseNode(::rtl::OUString::createFromAscii("<="),SQL_NODE_LESSEQ,SQL_LESSEQ);
                break;
            case SQL_NODE_LESSEQ:
                pNewComparison = new OSQLParseNode(::rtl::OUString::createFromAscii(">"),SQL_NODE_GREAT,SQL_GREAT);
                break;
            case SQL_NODE_GREATEQ:
                pNewComparison = new OSQLParseNode(::rtl::OUString::createFromAscii("<"),SQL_NODE_LESS,SQL_LESS);
                break;
            case SQL_NODE_NOTEQUAL:
                pNewComparison = new OSQLParseNode(::rtl::OUString::createFromAscii("="),SQL_NODE_EQUAL,SQL_EQUAL);
                break;
            default:
                OSL_ENSURE( false, "OSQLParseNode::negateSearchCondition: unexpected node type!" );
                break;
        }
        pSearchCondition->replace(pComparison, pNewComparison);
        delete pComparison;
    }

    else if(bNegate && (SQL_ISRULE(pSearchCondition,test_for_null) || SQL_ISRULE(pSearchCondition,in_predicate) ||
                        SQL_ISRULE(pSearchCondition,between_predicate) || SQL_ISRULE(pSearchCondition,boolean_test) ))
    {
        OSQLParseNode* pPart2 = pSearchCondition;
        if ( !SQL_ISRULE(pSearchCondition,boolean_test) )
            pPart2 = pSearchCondition->getChild(1);
        sal_uInt32 nNotPos = 0;
        if  ( SQL_ISRULE( pSearchCondition, test_for_null ) )
            nNotPos = 1;
        else if ( SQL_ISRULE( pSearchCondition, boolean_test ) )
            nNotPos = 2;

        OSQLParseNode* pNot = pPart2->getChild(nNotPos);
        OSQLParseNode* pNotNot = NULL;
        if(pNot->isRule())
            pNotNot = new OSQLParseNode(::rtl::OUString::createFromAscii("NOT"),SQL_NODE_KEYWORD,SQL_TOKEN_NOT);
        else
            pNotNot = new OSQLParseNode(::rtl::OUString(),SQL_NODE_RULE,OSQLParser::RuleID(OSQLParseNode::sql_not));
        pPart2->replace(pNot, pNotNot);
        delete pNot;
    }
    else if(bNegate && (SQL_ISRULE(pSearchCondition,like_predicate)))
    {
        OSQLParseNode* pNot = pSearchCondition->getChild( 1 )->getChild( 0 );
        OSQLParseNode* pNotNot = NULL;
        if(pNot->isRule())
            pNotNot = new OSQLParseNode(::rtl::OUString::createFromAscii("NOT"),SQL_NODE_KEYWORD,SQL_TOKEN_NOT);
        else
            pNotNot = new OSQLParseNode(::rtl::OUString(),SQL_NODE_RULE,OSQLParser::RuleID(OSQLParseNode::sql_not));
        pSearchCondition->getChild( 1 )->replace(pNot, pNotNot);
        delete pNot;
    }
}
//-----------------------------------------------------------------------------
void OSQLParseNode::eraseBraces(OSQLParseNode*& pSearchCondition)
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::eraseBraces" );
    if (pSearchCondition && (SQL_ISRULE(pSearchCondition,boolean_primary) || (pSearchCondition->count() == 3 && SQL_ISPUNCTUATION(pSearchCondition->getChild(0),"(") &&
         SQL_ISPUNCTUATION(pSearchCondition->getChild(2),")"))))
    {
        OSQLParseNode* pRight = pSearchCondition->getChild(1);
        absorptions(pRight);
        // if child is not a or or and tree then delete () around child
        if(!(SQL_ISRULE(pSearchCondition->getChild(1),boolean_term) || SQL_ISRULE(pSearchCondition->getChild(1),search_condition)) ||
            SQL_ISRULE(pSearchCondition->getChild(1),boolean_term) || // and can always stand without ()
            (SQL_ISRULE(pSearchCondition->getChild(1),search_condition) && SQL_ISRULE(pSearchCondition->getParent(),search_condition)))
        {
            OSQLParseNode* pNode = pSearchCondition->removeAt(1);
            replaceAndReset(pSearchCondition,pNode);
        }
    }
}
//-----------------------------------------------------------------------------
void OSQLParseNode::absorptions(OSQLParseNode*& pSearchCondition)
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::absorptions" );
    if(!pSearchCondition) // no where condition at entry point
        return;

    eraseBraces(pSearchCondition);

    if(SQL_ISRULE(pSearchCondition,boolean_term) || SQL_ISRULE(pSearchCondition,search_condition))
    {
        OSQLParseNode* pLeft = pSearchCondition->getChild(0);
        absorptions(pLeft);
        OSQLParseNode* pRight = pSearchCondition->getChild(2);
        absorptions(pRight);
    }

    sal_uInt32 nPos = 0;
    // a and a || a or a
    OSQLParseNode* pNewNode = NULL;
    if(( SQL_ISRULE(pSearchCondition,boolean_term) || SQL_ISRULE(pSearchCondition,search_condition))
        && *pSearchCondition->getChild(0) == *pSearchCondition->getChild(2))
    {
        pNewNode = pSearchCondition->removeAt((sal_uInt32)0);
        replaceAndReset(pSearchCondition,pNewNode);
    }
    // (a or b) and a || ( b or c ) and a
    // a and ( a or b) || a and ( b or c )
    else if (   SQL_ISRULE(pSearchCondition,boolean_term)
            &&  (
                    (       SQL_ISRULE(pSearchCondition->getChild(nPos = 0),boolean_primary)
                        ||  SQL_ISRULE(pSearchCondition->getChild(nPos),search_condition)
                    )
                ||  (       SQL_ISRULE(pSearchCondition->getChild(nPos = 2),boolean_primary)
                        ||  SQL_ISRULE(pSearchCondition->getChild(nPos),search_condition)
                    )
                )
            )
    {
        OSQLParseNode* p2ndSearch = pSearchCondition->getChild(nPos);
        if ( SQL_ISRULE(p2ndSearch,boolean_primary) )
            p2ndSearch = p2ndSearch->getChild(1);

        if ( *p2ndSearch->getChild(0) == *pSearchCondition->getChild(2-nPos) ) // a and ( a or b) -> a or b
        {
            pNewNode = pSearchCondition->removeAt((sal_uInt32)0);
            replaceAndReset(pSearchCondition,pNewNode);

        }
        else if ( *p2ndSearch->getChild(2) == *pSearchCondition->getChild(2-nPos) ) // a and ( b or a) -> a or b
        {
            pNewNode = pSearchCondition->removeAt((sal_uInt32)2);
            replaceAndReset(pSearchCondition,pNewNode);
        }
        else if ( p2ndSearch->getByRule(OSQLParseNode::search_condition) )
        {
            // a and ( b or c ) -> ( a and b ) or ( a and c )
            // ( b or c ) and a -> ( a and b ) or ( a and c )
            OSQLParseNode* pC = p2ndSearch->removeAt((sal_uInt32)2);
            OSQLParseNode* pB = p2ndSearch->removeAt((sal_uInt32)0);
            OSQLParseNode* pA = pSearchCondition->removeAt((sal_uInt32)2-nPos);

            OSQLParseNode* p1stAnd = MakeANDNode(pA,pB);
            OSQLParseNode* p2ndAnd = MakeANDNode(new OSQLParseNode(*pA),pC);
            pNewNode = MakeORNode(p1stAnd,p2ndAnd);
            OSQLParseNode* pNode = new OSQLParseNode(::rtl::OUString(),SQL_NODE_RULE,OSQLParser::RuleID(OSQLParseNode::boolean_primary));
            pNode->append(new OSQLParseNode(::rtl::OUString::createFromAscii("("),SQL_NODE_PUNCTUATION));
            pNode->append(pNewNode);
            pNode->append(new OSQLParseNode(::rtl::OUString::createFromAscii(")"),SQL_NODE_PUNCTUATION));
            OSQLParseNode::eraseBraces(p1stAnd);
            OSQLParseNode::eraseBraces(p2ndAnd);
            replaceAndReset(pSearchCondition,pNode);
        }
    }
    // a or a and b || a or b and a
    else if(SQL_ISRULE(pSearchCondition,search_condition) && SQL_ISRULE(pSearchCondition->getChild(2),boolean_term))
    {
        if(*pSearchCondition->getChild(2)->getChild(0) == *pSearchCondition->getChild(0))
        {
            pNewNode = pSearchCondition->removeAt((sal_uInt32)0);
            replaceAndReset(pSearchCondition,pNewNode);
        }
        else if(*pSearchCondition->getChild(2)->getChild(2) == *pSearchCondition->getChild(0))
        {
            pNewNode = pSearchCondition->removeAt((sal_uInt32)0);
            replaceAndReset(pSearchCondition,pNewNode);
        }
    }
    // a and b or a || b and a or a
    else if(SQL_ISRULE(pSearchCondition,search_condition) && SQL_ISRULE(pSearchCondition->getChild(0),boolean_term))
    {
        if(*pSearchCondition->getChild(0)->getChild(0) == *pSearchCondition->getChild(2))
        {
            pNewNode = pSearchCondition->removeAt((sal_uInt32)2);
            replaceAndReset(pSearchCondition,pNewNode);
        }
        else if(*pSearchCondition->getChild(0)->getChild(2) == *pSearchCondition->getChild(2))
        {
            pNewNode = pSearchCondition->removeAt((sal_uInt32)2);
            replaceAndReset(pSearchCondition,pNewNode);
        }
    }
    eraseBraces(pSearchCondition);
}
//-----------------------------------------------------------------------------
void OSQLParseNode::compress(OSQLParseNode *&pSearchCondition)
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::compress" );
    if(!pSearchCondition) // no where condition at entry point
        return;

    OSQLParseNode::eraseBraces(pSearchCondition);

    if(SQL_ISRULE(pSearchCondition,boolean_term) || SQL_ISRULE(pSearchCondition,search_condition))
    {
        OSQLParseNode* pLeft = pSearchCondition->getChild(0);
        compress(pLeft);

        OSQLParseNode* pRight = pSearchCondition->getChild(2);
        compress(pRight);
    }
    else if( SQL_ISRULE(pSearchCondition,boolean_primary) || (pSearchCondition->count() == 3 && SQL_ISPUNCTUATION(pSearchCondition->getChild(0),"(") &&
             SQL_ISPUNCTUATION(pSearchCondition->getChild(2),")")))
    {
        OSQLParseNode* pRight = pSearchCondition->getChild(1);
        compress(pRight);
        // if child is not a or or and tree then delete () around child
        if(!(SQL_ISRULE(pSearchCondition->getChild(1),boolean_term) || SQL_ISRULE(pSearchCondition->getChild(1),search_condition)) ||
            (SQL_ISRULE(pSearchCondition->getChild(1),boolean_term) && SQL_ISRULE(pSearchCondition->getParent(),boolean_term)) ||
            (SQL_ISRULE(pSearchCondition->getChild(1),search_condition) && SQL_ISRULE(pSearchCondition->getParent(),search_condition)))
        {
            OSQLParseNode* pNode = pSearchCondition->removeAt(1);
            replaceAndReset(pSearchCondition,pNode);
        }
    }

    // or with two and trees where one element of the and trees are equal
    if(SQL_ISRULE(pSearchCondition,search_condition) && SQL_ISRULE(pSearchCondition->getChild(0),boolean_term) && SQL_ISRULE(pSearchCondition->getChild(2),boolean_term))
    {
        if(*pSearchCondition->getChild(0)->getChild(0) == *pSearchCondition->getChild(2)->getChild(0))
        {
            OSQLParseNode* pLeft    = pSearchCondition->getChild(0)->removeAt(2);
            OSQLParseNode* pRight = pSearchCondition->getChild(2)->removeAt(2);
            OSQLParseNode* pNode    = MakeORNode(pLeft,pRight);

            OSQLParseNode* pNewRule = new OSQLParseNode(::rtl::OUString(),SQL_NODE_RULE,OSQLParser::RuleID(OSQLParseNode::boolean_primary));
            pNewRule->append(new OSQLParseNode(::rtl::OUString::createFromAscii("("),SQL_NODE_PUNCTUATION));
            pNewRule->append(pNode);
            pNewRule->append(new OSQLParseNode(::rtl::OUString::createFromAscii(")"),SQL_NODE_PUNCTUATION));

            OSQLParseNode::eraseBraces(pLeft);
            OSQLParseNode::eraseBraces(pRight);

            pNode = MakeANDNode(pSearchCondition->getChild(0)->removeAt((sal_uInt32)0),pNewRule);
            replaceAndReset(pSearchCondition,pNode);
        }
        else if(*pSearchCondition->getChild(0)->getChild(2) == *pSearchCondition->getChild(2)->getChild(0))
        {
            OSQLParseNode* pLeft = pSearchCondition->getChild(0)->removeAt((sal_uInt32)0);
            OSQLParseNode* pRight = pSearchCondition->getChild(2)->removeAt(2);
            OSQLParseNode* pNode = MakeORNode(pLeft,pRight);

            OSQLParseNode* pNewRule = new OSQLParseNode(::rtl::OUString(),SQL_NODE_RULE,OSQLParser::RuleID(OSQLParseNode::boolean_primary));
            pNewRule->append(new OSQLParseNode(::rtl::OUString::createFromAscii("("),SQL_NODE_PUNCTUATION));
            pNewRule->append(pNode);
            pNewRule->append(new OSQLParseNode(::rtl::OUString::createFromAscii(")"),SQL_NODE_PUNCTUATION));

            OSQLParseNode::eraseBraces(pLeft);
            OSQLParseNode::eraseBraces(pRight);

            pNode = MakeANDNode(pSearchCondition->getChild(0)->removeAt(1),pNewRule);
            replaceAndReset(pSearchCondition,pNode);
        }
        else if(*pSearchCondition->getChild(0)->getChild(0) == *pSearchCondition->getChild(2)->getChild(2))
        {
            OSQLParseNode* pLeft    = pSearchCondition->getChild(0)->removeAt(2);
            OSQLParseNode* pRight = pSearchCondition->getChild(2)->removeAt((sal_uInt32)0);
            OSQLParseNode* pNode    = MakeORNode(pLeft,pRight);

            OSQLParseNode* pNewRule = new OSQLParseNode(::rtl::OUString(),SQL_NODE_RULE,OSQLParser::RuleID(OSQLParseNode::boolean_primary));
            pNewRule->append(new OSQLParseNode(::rtl::OUString::createFromAscii("("),SQL_NODE_PUNCTUATION));
            pNewRule->append(pNode);
            pNewRule->append(new OSQLParseNode(::rtl::OUString::createFromAscii(")"),SQL_NODE_PUNCTUATION));

            OSQLParseNode::eraseBraces(pLeft);
            OSQLParseNode::eraseBraces(pRight);

            pNode = MakeANDNode(pSearchCondition->getChild(0)->removeAt((sal_uInt32)0),pNewRule);
            replaceAndReset(pSearchCondition,pNode);
        }
        else if(*pSearchCondition->getChild(0)->getChild(2) == *pSearchCondition->getChild(2)->getChild(2))
        {
            OSQLParseNode* pLeft    = pSearchCondition->getChild(0)->removeAt((sal_uInt32)0);
            OSQLParseNode* pRight = pSearchCondition->getChild(2)->removeAt((sal_uInt32)0);
            OSQLParseNode* pNode    = MakeORNode(pLeft,pRight);

            OSQLParseNode* pNewRule = new OSQLParseNode(::rtl::OUString(),SQL_NODE_RULE,OSQLParser::RuleID(OSQLParseNode::boolean_primary));
            pNewRule->append(new OSQLParseNode(::rtl::OUString::createFromAscii("("),SQL_NODE_PUNCTUATION));
            pNewRule->append(pNode);
            pNewRule->append(new OSQLParseNode(::rtl::OUString::createFromAscii(")"),SQL_NODE_PUNCTUATION));

            OSQLParseNode::eraseBraces(pLeft);
            OSQLParseNode::eraseBraces(pRight);

            pNode = MakeANDNode(pSearchCondition->getChild(0)->removeAt(1),pNewRule);
            replaceAndReset(pSearchCondition,pNode);
        }
    }
}
#if OSL_DEBUG_LEVEL > 0
// -----------------------------------------------------------------------------
void OSQLParseNode::showParseTree( ::rtl::OUString& rString ) const
{
    ::rtl::OUStringBuffer aBuf;
    showParseTree( aBuf, 0 );
    rString = aBuf.makeStringAndClear();
}

// -----------------------------------------------------------------------------
void OSQLParseNode::showParseTree( ::rtl::OUStringBuffer& _inout_rBuffer, sal_uInt32 nLevel ) const
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::showParseTree" );

    for ( sal_uInt32 j=0; j<nLevel; ++j)
        _inout_rBuffer.appendAscii( "  " );

    if ( !isToken() )
    {
        // Regelnamen als rule: ...
        _inout_rBuffer.appendAscii( "RULE_ID: " );
        _inout_rBuffer.append( (sal_Int32)getRuleID() );
        _inout_rBuffer.append( sal_Unicode( '(' ) );
        _inout_rBuffer.append( OSQLParser::RuleIDToStr( getRuleID() ) );
        _inout_rBuffer.append( sal_Unicode( ')' ) );
        _inout_rBuffer.append( sal_Unicode( '\n' ) );

        // hol dir den ersten Subtree
        for (   OSQLParseNodes::const_iterator i = m_aChildren.begin();
                i != m_aChildren.end();
                ++i
             )
            (*i)->showParseTree( _inout_rBuffer, nLevel+1 );
    }
    else
    {
        // ein Token gefunden
        switch (m_eNodeType)
        {

        case SQL_NODE_KEYWORD:
            _inout_rBuffer.appendAscii( "SQL_KEYWORD: " );
            _inout_rBuffer.append( ::rtl::OStringToOUString( OSQLParser::TokenIDToStr( getTokenID() ), RTL_TEXTENCODING_UTF8 ) );
            _inout_rBuffer.append( sal_Unicode( '\n' ) );
            break;

        case SQL_NODE_COMPARISON:
            _inout_rBuffer.appendAscii( "SQL_COMPARISON: " );
            _inout_rBuffer.append( m_aNodeValue );
            _inout_rBuffer.append( sal_Unicode( '\n' ) );
            break;

        case SQL_NODE_NAME:
            _inout_rBuffer.appendAscii( "SQL_NAME: " );
            _inout_rBuffer.append( sal_Unicode( '"' ) );
            _inout_rBuffer.append( m_aNodeValue );
            _inout_rBuffer.append( sal_Unicode( '"' ) );
            _inout_rBuffer.append( sal_Unicode( '\n' ) );
             break;

        case SQL_NODE_STRING:
            _inout_rBuffer.appendAscii( "SQL_STRING: " );
            _inout_rBuffer.append( sal_Unicode( '\'' ) );
            _inout_rBuffer.append( m_aNodeValue );
            _inout_rBuffer.append( sal_Unicode( '\'' ) );
            _inout_rBuffer.append( sal_Unicode( '\n' ) );
            break;

        case SQL_NODE_INTNUM:
            _inout_rBuffer.appendAscii( "SQL_INTNUM: " );
            _inout_rBuffer.append( m_aNodeValue );
            _inout_rBuffer.append( sal_Unicode( '\n' ) );
            break;

        case SQL_NODE_APPROXNUM:
            _inout_rBuffer.appendAscii( "SQL_APPROXNUM: " );
            _inout_rBuffer.append( m_aNodeValue );
            _inout_rBuffer.append( sal_Unicode( '\n' ) );
             break;

        case SQL_NODE_PUNCTUATION:
            _inout_rBuffer.appendAscii( "SQL_PUNCTUATION: " );
            _inout_rBuffer.append( m_aNodeValue );
            _inout_rBuffer.append( sal_Unicode( '\n' ) );
            break;

        case SQL_NODE_AMMSC:
            _inout_rBuffer.appendAscii( "SQL_AMMSC: " );
            _inout_rBuffer.append( m_aNodeValue );
            _inout_rBuffer.append( sal_Unicode( '\n' ) );
            break;

        case SQL_NODE_EQUAL:
        case SQL_NODE_LESS:
        case SQL_NODE_GREAT:
        case SQL_NODE_LESSEQ:
        case SQL_NODE_GREATEQ:
        case SQL_NODE_NOTEQUAL:
            _inout_rBuffer.append( m_aNodeValue );
            _inout_rBuffer.append( sal_Unicode( '\n' ) );
            break;

        case SQL_NODE_ACCESS_DATE:
            _inout_rBuffer.appendAscii( "SQL_ACCESS_DATE: " );
            _inout_rBuffer.append( m_aNodeValue );
            _inout_rBuffer.append( sal_Unicode( '\n' ) );
            break;

        case SQL_NODE_DATE:
            _inout_rBuffer.appendAscii( "SQL_DATE: " );
            _inout_rBuffer.append( m_aNodeValue );
            _inout_rBuffer.append( sal_Unicode( '\n' ) );
            break;

        case SQL_NODE_CONCAT:
            _inout_rBuffer.appendAscii( "||" );
            _inout_rBuffer.append( sal_Unicode( '\n' ) );
            break;

        default:
            OSL_TRACE( "-- %i", int( m_eNodeType ) );
            OSL_ENSURE( false, "OSQLParser::ShowParseTree: unzulaessiger NodeType" );
        }
    }
}
#endif // OSL_DEBUG_LEVEL > 0
// -----------------------------------------------------------------------------
// Insert-Methoden
//-----------------------------------------------------------------------------
void OSQLParseNode::insert(sal_uInt32 nPos, OSQLParseNode* pNewSubTree)
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::insert" );
    OSL_ENSURE(pNewSubTree != NULL, "OSQLParseNode: ungueltiger NewSubTree");
    OSL_ENSURE(pNewSubTree->getParent() == NULL, "OSQLParseNode: Knoten ist kein Waise");

    // stelle Verbindung zum getParent her:
    pNewSubTree->setParent( this );
    m_aChildren.insert(m_aChildren.begin() + nPos, pNewSubTree);
}

// removeAt-Methoden
//-----------------------------------------------------------------------------
OSQLParseNode* OSQLParseNode::removeAt(sal_uInt32 nPos)
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::removeAt" );
    OSL_ENSURE(nPos < m_aChildren.size(),"Illegal position for removeAt");
    OSQLParseNodes::iterator aPos(m_aChildren.begin() + nPos);
    OSQLParseNode* pNode = *aPos;

    // setze den getParent des removeten auf NULL
    pNode->setParent( NULL );

    m_aChildren.erase(aPos);
    return pNode;
}
//-----------------------------------------------------------------------------
OSQLParseNode* OSQLParseNode::remove(OSQLParseNode* pSubTree)
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::remove" );
    OSL_ENSURE(pSubTree != NULL, "OSQLParseNode: ungueltiger SubTree");
    OSQLParseNodes::iterator aPos = ::std::find(m_aChildren.begin(), m_aChildren.end(), pSubTree);
    if (aPos != m_aChildren.end())
    {
        // setze den getParent des removeten auf NULL
        pSubTree->setParent( NULL );
        m_aChildren.erase(aPos);
        return pSubTree;
    }
    else
        return NULL;
}

// Replace-Methoden
//-----------------------------------------------------------------------------
OSQLParseNode* OSQLParseNode::replaceAt(sal_uInt32 nPos, OSQLParseNode* pNewSubNode)
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::replaceAt" );
    OSL_ENSURE(pNewSubNode != NULL, "OSQLParseNode: invalid nodes");
    OSL_ENSURE(pNewSubNode->getParent() == NULL, "OSQLParseNode: node already has getParent");
    OSL_ENSURE(nPos < m_aChildren.size(), "OSQLParseNode: invalid position");
    OSL_ENSURE(::std::find(m_aChildren.begin(), m_aChildren.end(), pNewSubNode) == m_aChildren.end(),
            "OSQLParseNode::Replace() Node already element of parent");

    OSQLParseNode* pOldSubNode = m_aChildren[nPos];

    // stelle Verbindung zum getParent her:
    pNewSubNode->setParent( this );
    pOldSubNode->setParent( NULL );

    m_aChildren[nPos] = pNewSubNode;
    return pOldSubNode;
}

//-----------------------------------------------------------------------------
OSQLParseNode* OSQLParseNode::replace (OSQLParseNode* pOldSubNode, OSQLParseNode* pNewSubNode )
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::replace " );
    OSL_ENSURE(pOldSubNode != NULL && pNewSubNode != NULL, "OSQLParseNode: invalid nodes");
    OSL_ENSURE(pNewSubNode->getParent() == NULL, "OSQLParseNode: node already has getParent");
    OSL_ENSURE(::std::find(m_aChildren.begin(), m_aChildren.end(), pOldSubNode) != m_aChildren.end(),
            "OSQLParseNode::Replace() Node not element of parent");
    OSL_ENSURE(::std::find(m_aChildren.begin(), m_aChildren.end(), pNewSubNode) == m_aChildren.end(),
            "OSQLParseNode::Replace() Node already element of parent");

    pOldSubNode->setParent( NULL );
    pNewSubNode->setParent( this );
    ::std::replace(m_aChildren.begin(), m_aChildren.end(), pOldSubNode, pNewSubNode);
    return pOldSubNode;
}
// -----------------------------------------------------------------------------
void OSQLParseNode::parseLeaf(::rtl::OUStringBuffer& rString, const SQLParseNodeParameter& rParam) const
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::parseLeaf" );
    // ein Blatt ist gefunden
    // Inhalt dem Ausgabestring anfuegen
    switch (m_eNodeType)
    {
        case SQL_NODE_KEYWORD:
        {
            if (rString.getLength())
                rString.appendAscii(" ");

            const ::rtl::OString sT = OSQLParser::TokenIDToStr(m_nNodeID, rParam.bInternational ? &rParam.m_rContext :  NULL);
            rString.append(::rtl::OUString(sT,sT.getLength(),RTL_TEXTENCODING_UTF8));
        }   break;
        case SQL_NODE_STRING:
            if (rString.getLength())
                rString.appendAscii(" ");
            rString.append(SetQuotation(m_aNodeValue,::rtl::OUString::createFromAscii("\'"),::rtl::OUString::createFromAscii("\'\'")));
            break;
        case SQL_NODE_NAME:
            if (rString.getLength())
            {
                switch(rString.charAt(rString.getLength()-1) )
                {
                    case ' ' :
                    case '.' : break;
                    default  :
                        if  (   !rParam.aMetaData.getCatalogSeparator().getLength()
                            ||  rString.charAt( rString.getLength()-1 ) != rParam.aMetaData.getCatalogSeparator().toChar()
                            )
                            rString.appendAscii(" "); break;
                }
            }
            if (rParam.bQuote)
            {
                if (rParam.bPredicate)
                {
                    rString.appendAscii("[");
                    rString.append(m_aNodeValue);
                    rString.appendAscii("]");
                }
                else
                    rString.append(SetQuotation(m_aNodeValue,
                        rParam.aMetaData.getIdentifierQuoteString(), rParam.aMetaData.getIdentifierQuoteString() ));
            }
            else
                rString.append(m_aNodeValue);
            break;
        case SQL_NODE_ACCESS_DATE:
            if (rString.getLength())
                rString.appendAscii(" ");
            rString.appendAscii("#");
            rString.append(m_aNodeValue);
            rString.appendAscii("#");
            break;

        case SQL_NODE_INTNUM:
        case SQL_NODE_APPROXNUM:
            {
                ::rtl::OUString aTmp = m_aNodeValue;
                if (rParam.bInternational && rParam.bPredicate && rParam.cDecSep != '.')
                    aTmp = aTmp.replace('.', rParam.cDecSep);

                if (rString.getLength())
                    rString.appendAscii(" ");
                rString.append(aTmp);

            }   break;
        case SQL_NODE_PUNCTUATION:
            if ( getParent() && SQL_ISRULE(getParent(),cast_spec) && m_aNodeValue.toChar() == '(' ) // no spaces in front of '('
            {
                rString.append(m_aNodeValue);
                break;
            }
            // fall through
        default:
            if (rString.getLength() && m_aNodeValue.toChar() != '.' && m_aNodeValue.toChar() != ':' )
            {
                switch( rString.charAt(rString.getLength()-1) )
                {
                    case ' ' :
                    case '.' : break;
                    default  :
                        if  (   !rParam.aMetaData.getCatalogSeparator().getLength()
                            ||  rString.charAt( rString.getLength()-1 ) != rParam.aMetaData.getCatalogSeparator().toChar()
                            )
                            rString.appendAscii(" "); break;
                }
            }
            rString.append(m_aNodeValue);
    }
}

// -----------------------------------------------------------------------------
sal_Int32 OSQLParser::getFunctionReturnType(const ::rtl::OUString& _sFunctionName, const IParseContext* pContext)
{
    sal_Int32 nType = DataType::VARCHAR;
    ::rtl::OString sFunctionName(_sFunctionName,_sFunctionName.getLength(),RTL_TEXTENCODING_UTF8);

    if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_ASCII,pContext)))                     nType = DataType::INTEGER;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_BIT_LENGTH,pContext)))           nType = DataType::INTEGER;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_CHAR,pContext)))                 nType = DataType::VARCHAR;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_CHAR_LENGTH,pContext)))          nType = DataType::INTEGER;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_CONCAT,pContext)))               nType = DataType::VARCHAR;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_DIFFERENCE,pContext)))           nType = DataType::VARCHAR;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_INSERT,pContext)))               nType = DataType::VARCHAR;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_LCASE,pContext)))                nType = DataType::VARCHAR;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_LEFT,pContext)))                 nType = DataType::VARCHAR;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_LENGTH,pContext)))               nType = DataType::INTEGER;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_LOCATE,pContext)))               nType = DataType::VARCHAR;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_LOCATE_2,pContext)))             nType = DataType::VARCHAR;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_LTRIM,pContext)))                nType = DataType::VARCHAR;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_OCTET_LENGTH,pContext)))         nType = DataType::INTEGER;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_POSITION,pContext)))             nType = DataType::INTEGER;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_REPEAT,pContext)))               nType = DataType::VARCHAR;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_REPLACE,pContext)))              nType = DataType::VARCHAR;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_RIGHT,pContext)))                nType = DataType::VARCHAR;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_RTRIM,pContext)))                nType = DataType::VARCHAR;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_SOUNDEX,pContext)))              nType = DataType::VARCHAR;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_SPACE,pContext)))                nType = DataType::VARCHAR;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_SUBSTRING,pContext)))            nType = DataType::VARCHAR;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_UCASE,pContext)))                nType = DataType::VARCHAR;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_CURRENT_DATE,pContext)))         nType = DataType::DATE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_CURRENT_TIME,pContext)))         nType = DataType::TIME;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_CURRENT_TIMESTAMP,pContext)))    nType = DataType::TIMESTAMP;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_CURDATE,pContext)))              nType = DataType::DATE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_DATEDIFF,pContext)))             nType = DataType::INTEGER;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_DATEVALUE,pContext)))            nType = DataType::DATE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_CURTIME,pContext)))              nType = DataType::TIME;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_DAYNAME,pContext)))              nType = DataType::VARCHAR;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_DAYOFMONTH,pContext)))           nType = DataType::INTEGER;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_DAYOFWEEK,pContext)))            nType = DataType::INTEGER;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_DAYOFYEAR,pContext)))            nType = DataType::INTEGER;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_EXTRACT,pContext)))              nType = DataType::VARCHAR;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_HOUR,pContext)))                 nType = DataType::INTEGER;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_MINUTE,pContext)))               nType = DataType::INTEGER;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_MONTH,pContext)))                nType = DataType::INTEGER;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_MONTHNAME,pContext)))            nType = DataType::VARCHAR;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_NOW,pContext)))                  nType = DataType::TIMESTAMP;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_QUARTER,pContext)))              nType = DataType::INTEGER;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_SECOND,pContext)))               nType = DataType::INTEGER;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_TIMESTAMPADD,pContext)))         nType = DataType::TIMESTAMP;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_TIMESTAMPDIFF,pContext)))        nType = DataType::TIMESTAMP;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_TIMEVALUE,pContext)))            nType = DataType::TIMESTAMP;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_WEEK,pContext)))                 nType = DataType::INTEGER;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_YEAR,pContext)))                 nType = DataType::INTEGER;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_ABS,pContext)))                  nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_ACOS,pContext)))                 nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_ASIN,pContext)))                 nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_ATAN,pContext)))                 nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_ATAN2,pContext)))                nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_CEILING,pContext)))              nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_COS,pContext)))                  nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_COT,pContext)))                  nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_DEGREES,pContext)))              nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_EXP,pContext)))                  nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_FLOOR,pContext)))                nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_LOGF,pContext)))                 nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_LOG,pContext)))                  nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_LOG10,pContext)))                nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_LN,pContext)))                   nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_MOD,pContext)))                  nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_PI,pContext)))                   nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_POWER,pContext)))                nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_RADIANS,pContext)))              nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_RAND,pContext)))                 nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_ROUND,pContext)))                nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_ROUNDMAGIC,pContext)))           nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_SIGN,pContext)))                 nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_SIN,pContext)))                  nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_SQRT,pContext)))                 nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_TAN,pContext)))                  nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_TRUNCATE,pContext)))             nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_COUNT,pContext)))                nType = DataType::INTEGER;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_MAX,pContext)))                  nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_MIN,pContext)))                  nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_AVG,pContext)))                  nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_SUM,pContext)))                  nType = DataType::DOUBLE;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_LOWER,pContext)))                nType = DataType::VARCHAR;
    else if(sFunctionName.equalsIgnoreAsciiCase(TokenIDToStr(SQL_TOKEN_UPPER,pContext)))                nType = DataType::VARCHAR;

    return nType;
}
// -----------------------------------------------------------------------------
sal_Int32 OSQLParser::getFunctionParameterType(sal_uInt32 _nTokenId, sal_uInt32 _nPos)
{
    sal_Int32 nType = DataType::VARCHAR;

    if(_nTokenId == SQL_TOKEN_CHAR)                 nType = DataType::INTEGER;
    else if(_nTokenId == SQL_TOKEN_INSERT)
    {
        if ( _nPos == 2 || _nPos == 3 )
            nType = DataType::INTEGER;
    }
    else if(_nTokenId == SQL_TOKEN_LEFT)
    {
        if ( _nPos == 2 )
            nType = DataType::INTEGER;
    }
    else if(_nTokenId == SQL_TOKEN_LOCATE)
    {
        if ( _nPos == 3 )
            nType = DataType::INTEGER;
    }
    else if(_nTokenId == SQL_TOKEN_LOCATE_2)
    {
        if ( _nPos == 3 )
            nType = DataType::INTEGER;
    }
    else if( _nTokenId == SQL_TOKEN_REPEAT || _nTokenId == SQL_TOKEN_RIGHT )
    {
        if ( _nPos == 2 )
            nType = DataType::INTEGER;
    }
    else if(_nTokenId == SQL_TOKEN_SPACE )
    {
        nType = DataType::INTEGER;
    }
    else if(_nTokenId == SQL_TOKEN_SUBSTRING)
    {
        if ( _nPos != 1 )
            nType = DataType::INTEGER;
    }
    else if(_nTokenId == SQL_TOKEN_DATEDIFF)
    {
        if ( _nPos != 1 )
            nType = DataType::TIMESTAMP;
    }
    else if(_nTokenId == SQL_TOKEN_DATEVALUE)
        nType = DataType::DATE;
    else if(_nTokenId == SQL_TOKEN_DAYNAME)
        nType = DataType::DATE;
    else if(_nTokenId == SQL_TOKEN_DAYOFMONTH)
        nType = DataType::DATE;
    else if(_nTokenId == SQL_TOKEN_DAYOFWEEK)
        nType = DataType::DATE;
    else if(_nTokenId == SQL_TOKEN_DAYOFYEAR)
        nType = DataType::DATE;
    else if(_nTokenId == SQL_TOKEN_EXTRACT)              nType = DataType::VARCHAR;
    else if(_nTokenId == SQL_TOKEN_HOUR)                 nType = DataType::TIME;
    else if(_nTokenId == SQL_TOKEN_MINUTE)               nType = DataType::TIME;
    else if(_nTokenId == SQL_TOKEN_MONTH)                nType = DataType::DATE;
    else if(_nTokenId == SQL_TOKEN_MONTHNAME)            nType = DataType::DATE;
    else if(_nTokenId == SQL_TOKEN_NOW)                  nType = DataType::TIMESTAMP;
    else if(_nTokenId == SQL_TOKEN_QUARTER)              nType = DataType::DATE;
    else if(_nTokenId == SQL_TOKEN_SECOND)               nType = DataType::TIME;
    else if(_nTokenId == SQL_TOKEN_TIMESTAMPADD)         nType = DataType::TIMESTAMP;
    else if(_nTokenId == SQL_TOKEN_TIMESTAMPDIFF)        nType = DataType::TIMESTAMP;
    else if(_nTokenId == SQL_TOKEN_TIMEVALUE)            nType = DataType::TIMESTAMP;
    else if(_nTokenId == SQL_TOKEN_WEEK)                 nType = DataType::DATE;
    else if(_nTokenId == SQL_TOKEN_YEAR)                 nType = DataType::DATE;

    else if(_nTokenId == SQL_TOKEN_ABS)                  nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_ACOS)                 nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_ASIN)                 nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_ATAN)                 nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_ATAN2)                nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_CEILING)              nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_COS)                  nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_COT)                  nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_DEGREES)              nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_EXP)                  nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_FLOOR)                nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_LOGF)                 nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_LOG)                  nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_LOG10)                nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_LN)                   nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_MOD)                  nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_PI)                   nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_POWER)                nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_RADIANS)              nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_RAND)                 nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_ROUND)                nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_ROUNDMAGIC)           nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_SIGN)                 nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_SIN)                  nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_SQRT)                 nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_TAN)                  nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_TRUNCATE)             nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_COUNT)                nType = DataType::INTEGER;
    else if(_nTokenId == SQL_TOKEN_MAX)                  nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_MIN)                  nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_AVG)                  nType = DataType::DOUBLE;
    else if(_nTokenId == SQL_TOKEN_SUM)                  nType = DataType::DOUBLE;

    else if(_nTokenId == SQL_TOKEN_LOWER)                nType = DataType::VARCHAR;
    else if(_nTokenId == SQL_TOKEN_UPPER)                nType = DataType::VARCHAR;

    return nType;
}

// -----------------------------------------------------------------------------
const SQLError& OSQLParser::getErrorHelper() const
{
    return m_pData->aErrors;
}

// -----------------------------------------------------------------------------
OSQLParseNode::Rule OSQLParseNode::getKnownRuleID() const
{
    if ( !isRule() )
        return UNKNOWN_RULE;
    return OSQLParser::RuleIDToRule( getRuleID() );
}
// -----------------------------------------------------------------------------
::rtl::OUString OSQLParseNode::getTableRange(const OSQLParseNode* _pTableRef)
{
    RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::getTableRange" );
    OSL_ENSURE(_pTableRef && _pTableRef->count() > 1 && _pTableRef->getKnownRuleID() == OSQLParseNode::table_ref,"Invalid node give, only table ref is allowed!");
    const sal_uInt32 nCount = _pTableRef->count();
    ::rtl::OUString sTableRange;
    if ( nCount == 2 || (nCount == 3 && !_pTableRef->getChild(0)->isToken()) || nCount == 5 )
    {
        const OSQLParseNode* pNode = _pTableRef->getChild(nCount - (nCount == 2 ? 1 : 2));
        OSL_ENSURE(pNode && (pNode->getKnownRuleID() == OSQLParseNode::table_primary_as_range_column
                          || pNode->getKnownRuleID() == OSQLParseNode::range_variable)
                         ,"SQL grammar changed!");
        if ( !pNode->isLeaf() )
            sTableRange = pNode->getChild(1)->getTokenValue();
    } // if ( nCount == 2 || nCount == 3 || nCount == 5)

    return sTableRange;
}
// -----------------------------------------------------------------------------
OSQLParseNodesContainer::OSQLParseNodesContainer()
{
}
// -----------------------------------------------------------------------------
OSQLParseNodesContainer::~OSQLParseNodesContainer()
{
}
// -----------------------------------------------------------------------------
void OSQLParseNodesContainer::push_back(OSQLParseNode* _pNode)
{
    ::osl::MutexGuard aGuard(m_aMutex);
    m_aNodes.push_back(_pNode);
}
// -----------------------------------------------------------------------------
void OSQLParseNodesContainer::erase(OSQLParseNode* _pNode)
{
    ::osl::MutexGuard aGuard(m_aMutex);
    if ( !m_aNodes.empty() )
    {
        ::std::vector< OSQLParseNode* >::iterator aFind = ::std::find(m_aNodes.begin(), m_aNodes.end(),_pNode);
        if ( aFind != m_aNodes.end() )
            m_aNodes.erase(aFind);
    }
}
// -----------------------------------------------------------------------------
bool OSQLParseNodesContainer::empty() const
{
    return m_aNodes.empty();
}
// -----------------------------------------------------------------------------
void OSQLParseNodesContainer::clear()
{
    ::osl::MutexGuard aGuard(m_aMutex);
    m_aNodes.clear();
}
// -----------------------------------------------------------------------------
void OSQLParseNodesContainer::clearAndDelete()
{
    ::osl::MutexGuard aGuard(m_aMutex);
    // clear the garbage collector
    while ( !m_aNodes.empty() )
    {
        OSQLParseNode* pNode = m_aNodes[0];
        while ( pNode->getParent() )
        {
            pNode = pNode->getParent();
        }
        delete pNode;
    }
}
}   // namespace connectivity
gid "File not found."
msgstr ""
-#. ;Ybb
#: sb.src
msgctxt ""
"sb.src\n"
@@ -247,7 +224,6 @@ msgctxt ""
msgid "Incorrect file mode."
msgstr ""
-#. Zp9;
#: sb.src
msgctxt ""
"sb.src\n"
@@ -257,7 +233,6 @@ msgctxt ""
msgid "File already open."
msgstr ""
-#. UsS4
#: sb.src
msgctxt ""
"sb.src\n"
@@ -267,7 +242,6 @@ msgctxt ""
msgid "Device I/O error."
msgstr ""
-#. TIHT
#: sb.src
msgctxt ""
"sb.src\n"
@@ -277,7 +251,6 @@ msgctxt ""
msgid "File already exists."
msgstr ""
-#. os1N
#: sb.src
msgctxt ""
"sb.src\n"
@@ -287,7 +260,6 @@ msgctxt ""
msgid "Incorrect record length."
msgstr ""
-#. sZrg
#: sb.src
msgctxt ""
"sb.src\n"
@@ -297,7 +269,6 @@ msgctxt ""
msgid "Disk or hard drive full."
msgstr ""
-#. _s0e
#: sb.src
msgctxt ""
"sb.src\n"
@@ -307,7 +278,6 @@ msgctxt ""
msgid "Reading exceeds EOF."
msgstr ""
-#. /3x%
#: sb.src
msgctxt ""
"sb.src\n"
@@ -317,7 +287,6 @@ msgctxt ""
msgid "Incorrect record number."
msgstr ""
-#. h4Q[
#: sb.src
msgctxt ""
"sb.src\n"
@@ -327,7 +296,6 @@ msgctxt ""
msgid "Too many files."
msgstr ""
-#. 5da~
#: sb.src
msgctxt ""
"sb.src\n"
@@ -337,7 +305,6 @@ msgctxt ""
msgid "Device not available."
msgstr ""
-#. 84*.
#: sb.src
msgctxt ""
"sb.src\n"
@@ -347,7 +314,6 @@ msgctxt ""
msgid "Access denied."
msgstr ""
-#. gcYO
#: sb.src
msgctxt ""
"sb.src\n"
@@ -357,7 +323,6 @@ msgctxt ""
msgid "Disk not ready."
msgstr ""
-#. S!Ag
#: sb.src
msgctxt ""
"sb.src\n"
@@ -367,7 +332,6 @@ msgctxt ""
msgid "Not implemented."
msgstr ""
-#. sK~8
#: sb.src
msgctxt ""
"sb.src\n"
@@ -377,7 +341,6 @@ msgctxt ""
msgid "Renaming on different drives impossible."
msgstr ""
-#. hY25
#: sb.src
msgctxt ""
"sb.src\n"
@@ -387,7 +350,6 @@ msgctxt ""
msgid "Path/File access error."
msgstr ""
-#. Xsrw
#: sb.src
msgctxt ""
"sb.src\n"
@@ -397,7 +359,6 @@ msgctxt ""
msgid "Path not found."
msgstr ""
-#. H2ek
#: sb.src
msgctxt ""
"sb.src\n"
@@ -407,7 +368,6 @@ msgctxt ""
msgid "Object variable not set."
msgstr ""
-#. t1Oh
#: sb.src
msgctxt ""
"sb.src\n"
@@ -417,7 +377,6 @@ msgctxt ""
msgid "Invalid string pattern."
msgstr ""
-#. 1=Ek
#: sb.src
msgctxt ""
"sb.src\n"
@@ -427,7 +386,6 @@ msgctxt ""
msgid "Use of zero not permitted."
msgstr ""
-#. COPc
#: sb.src
msgctxt ""
"sb.src\n"
@@ -437,7 +395,6 @@ msgctxt ""
msgid "DDE Error."
msgstr ""
-#. tGZl
#: sb.src
msgctxt ""
"sb.src\n"
@@ -447,7 +404,6 @@ msgctxt ""
msgid "Awaiting response to DDE connection."
msgstr ""
-#. 4!fm
#: sb.src
msgctxt ""
"sb.src\n"
@@ -457,7 +413,6 @@ msgctxt ""
msgid "No DDE channels available."
msgstr ""
-#. P*QO
#: sb.src
msgctxt ""
"sb.src\n"
@@ -467,7 +422,6 @@ msgctxt ""
msgid "No application responded to DDE connect initiation."
msgstr ""
-#. EOuh
#: sb.src
msgctxt ""
"sb.src\n"
@@ -477,7 +431,6 @@ msgctxt ""
msgid "Too many applications responded to DDE connect initiation."
msgstr ""
-#. fDA1
#: sb.src
msgctxt ""
"sb.src\n"
@@ -487,7 +440,6 @@ msgctxt ""
msgid "DDE channel locked."
msgstr ""
-#. b+-d
#: sb.src
msgctxt ""
"sb.src\n"
@@ -497,7 +449,6 @@ msgctxt ""
msgid "External application cannot execute DDE operation."
msgstr ""
-#. B:IX
#: sb.src
msgctxt ""
"sb.src\n"
@@ -507,7 +458,6 @@ msgctxt ""
msgid "Timeout while waiting for DDE response."
msgstr ""
-#. $TRU
#: sb.src
msgctxt ""
"sb.src\n"
@@ -517,7 +467,6 @@ msgctxt ""
msgid "User pressed ESCAPE during DDE operation."
msgstr ""
-#. hPzU
#: sb.src
msgctxt ""
"sb.src\n"
@@ -527,7 +476,6 @@ msgctxt ""
msgid "External application busy."
msgstr ""
-#. [Ik;
#: sb.src
msgctxt ""
"sb.src\n"
@@ -537,7 +485,6 @@ msgctxt ""
msgid "DDE operation without data."
msgstr ""
-#. NydK
#: sb.src
msgctxt ""
"sb.src\n"
@@ -547,7 +494,6 @@ msgctxt ""
msgid "Data are in wrong format."
msgstr ""
-#. G?W:
#: sb.src
msgctxt ""
"sb.src\n"
@@ -557,7 +503,6 @@ msgctxt ""
msgid "External application has been terminated."
msgstr ""
-#. Ql6A
#: sb.src
msgctxt ""
"sb.src\n"
@@ -567,7 +512,6 @@ msgctxt ""
msgid "DDE connection interrupted or modified."
msgstr ""
-#. `R@[
#: sb.src
msgctxt ""
"sb.src\n"
@@ -577,7 +521,6 @@ msgctxt ""
msgid "DDE method invoked with no channel open."
msgstr ""
-#. Eaq)
#: sb.src
msgctxt ""
"sb.src\n"
@@ -587,7 +530,6 @@ msgctxt ""
msgid "Invalid DDE link format."
msgstr ""
-#. FuG|
#: sb.src
msgctxt ""
"sb.src\n"
@@ -597,7 +539,6 @@ msgctxt ""
msgid "DDE message has been lost."
msgstr ""
-#. EaPZ
#: sb.src
msgctxt ""
"sb.src\n"
@@ -607,7 +548,6 @@ msgctxt ""
msgid "Paste link already performed."
msgstr ""
-#. aJ-`
#: sb.src
msgctxt ""
"sb.src\n"
@@ -617,7 +557,6 @@ msgctxt ""
msgid "Link mode cannot be set due to invalid link topic."
msgstr ""
-#. w[Uz
#: sb.src
msgctxt ""
"sb.src\n"
@@ -627,7 +566,6 @@ msgctxt ""
msgid "DDE requires the DDEML.DLL file."
msgstr ""
-#. 3n#`
#: sb.src
msgctxt ""
"sb.src\n"
@@ -637,7 +575,6 @@ msgctxt ""
msgid "Module cannot be loaded; invalid format."
msgstr ""
-#. X3pu
#: sb.src
msgctxt ""
"sb.src\n"
@@ -647,7 +584,6 @@ msgctxt ""
msgid "Invalid object index."
msgstr ""
-#. .IBB
#: sb.src
msgctxt ""
"sb.src\n"
@@ -657,7 +593,6 @@ msgctxt ""
msgid "Object is not available."
msgstr ""
-#. |~H?
#: sb.src
msgctxt ""
"sb.src\n"
@@ -667,7 +602,6 @@ msgctxt ""
msgid "Incorrect property value."
msgstr ""
-#. dgFD
#: sb.src
msgctxt ""
"sb.src\n"
@@ -677,7 +611,6 @@ msgctxt ""
msgid "This property is read-only."
msgstr ""
-#. E*c;
#: sb.src
msgctxt ""
"sb.src\n"
@@ -687,7 +620,6 @@ msgctxt ""
msgid "This property is write only."
msgstr ""
-#. F_sE
#: sb.src
msgctxt ""
"sb.src\n"
@@ -697,7 +629,6 @@ msgctxt ""
msgid "Invalid object reference."
msgstr ""
-#. b\Y;
#: sb.src
msgctxt ""
"sb.src\n"
@@ -707,7 +638,6 @@ msgctxt ""
msgid "Property or method not found: $(ARG1)."
msgstr ""
-#. )D(6
#: sb.src
msgctxt ""
"sb.src\n"
@@ -717,7 +647,6 @@ msgctxt ""
msgid "Object required."
msgstr ""
-#. LX{Z
#: sb.src
msgctxt ""
"sb.src\n"
@@ -727,7 +656,6 @@ msgctxt ""
msgid "Invalid use of an object."
msgstr ""
-#. r5h!
#: sb.src
msgctxt ""
"sb.src\n"
@@ -737,7 +665,6 @@ msgctxt ""
msgid "OLE Automation is not supported by this object."
msgstr ""
-#. 1_B^
#: sb.src
msgctxt ""
"sb.src\n"
@@ -747,7 +674,6 @@ msgctxt ""
msgid "This property or method is not supported by the object."
msgstr ""
-#. y;7g
#: sb.src
msgctxt ""
"sb.src\n"
@@ -757,7 +683,6 @@ msgctxt ""
msgid "OLE Automation Error."
msgstr ""
-#. gjcL
#: sb.src
msgctxt ""
"sb.src\n"
@@ -767,7 +692,6 @@ msgctxt ""
msgid "This action is not supported by given object."
msgstr ""
-#. ^ssg
#: sb.src
msgctxt ""
"sb.src\n"
@@ -777,7 +701,6 @@ msgctxt ""
msgid "Named arguments are not supported by given object."
msgstr ""
-#. CXa8
#: sb.src
msgctxt ""
"sb.src\n"
@@ -787,7 +710,6 @@ msgctxt ""
msgid "The current locale setting is not supported by the given object."
msgstr ""
-#. ~~$5
#: sb.src
msgctxt ""
"sb.src\n"
@@ -797,7 +719,6 @@ msgctxt ""
msgid "Named argument not found."
msgstr ""
-#. 0Sm4
#: sb.src
msgctxt ""
"sb.src\n"
@@ -807,7 +728,6 @@ msgctxt ""
msgid "Argument is not optional."
msgstr ""
-#. \wCF
#: sb.src
msgctxt ""
"sb.src\n"
@@ -817,7 +737,6 @@ msgctxt ""
msgid "Invalid number of arguments."
msgstr ""
-#. p:r?
#: sb.src
msgctxt ""
"sb.src\n"
@@ -827,7 +746,6 @@ msgctxt ""
msgid "Object is not a list."
msgstr ""
-#. N_,C
#: sb.src
msgctxt ""
"sb.src\n"
@@ -837,7 +755,6 @@ msgctxt ""
msgid "Invalid ordinal number."
msgstr ""
-#. odO9
#: sb.src
msgctxt ""
"sb.src\n"
@@ -847,7 +764,6 @@ msgctxt ""
msgid "Specified DLL function not found."
msgstr ""
-#. %ilX
#: sb.src
msgctxt ""
"sb.src\n"
@@ -857,7 +773,6 @@ msgctxt ""
msgid "Invalid clipboard format."
msgstr ""
-#. `,mF
#: sb.src
msgctxt ""
"sb.src\n"
@@ -867,7 +782,6 @@ msgctxt ""
msgid "Object does not have this property."
msgstr ""
-#. ^[|F
#: sb.src
msgctxt ""
"sb.src\n"
@@ -877,7 +791,6 @@ msgctxt ""
msgid "Object does not have this method."
msgstr ""
-#. M4QZ
#: sb.src
msgctxt ""
"sb.src\n"
@@ -887,7 +800,6 @@ msgctxt ""
msgid "Required argument lacking."
msgstr ""
-#. 8ZCD
#: sb.src
msgctxt ""
"sb.src\n"
@@ -897,7 +809,6 @@ msgctxt ""
msgid "Invalid number of arguments."
msgstr ""
-#. ^V?f
#: sb.src
msgctxt ""
"sb.src\n"
@@ -907,7 +818,6 @@ msgctxt ""
msgid "Error executing a method."
msgstr ""
-#. mpQe
#: sb.src
msgctxt ""
"sb.src\n"
@@ -917,7 +827,6 @@ msgctxt ""
msgid "Unable to set property."
msgstr ""
-#. S61)
#: sb.src
msgctxt ""
"sb.src\n"
@@ -927,7 +836,6 @@ msgctxt ""
msgid "Unable to determine property."
msgstr ""
-#. 3ALz
#: sb.src
msgctxt ""
"sb.src\n"
@@ -937,7 +845,6 @@ msgctxt ""
msgid "Unexpected symbol: $(ARG1)."
msgstr ""
-#. ;,vQ
#: sb.src
msgctxt ""
"sb.src\n"
@@ -947,7 +854,6 @@ msgctxt ""
msgid "Expected: $(ARG1)."
msgstr ""
-#. \5Ps
#: sb.src
msgctxt ""
"sb.src\n"
@@ -957,7 +863,6 @@ msgctxt ""
msgid "Symbol expected."
msgstr ""
-#. 2YW\
#: sb.src
msgctxt ""
"sb.src\n"
@@ -967,7 +872,6 @@ msgctxt ""
msgid "Variable expected."
msgstr ""
-#. 0YGl
#: sb.src
msgctxt ""
"sb.src\n"
@@ -977,7 +881,6 @@ msgctxt ""
msgid "Label expected."
msgstr ""
-#. #RU$
#: sb.src
msgctxt ""
"sb.src\n"
@@ -987,7 +890,6 @@ msgctxt ""
msgid "Value cannot be applied."
msgstr ""
-#. L_i+
#: sb.src
msgctxt ""
"sb.src\n"
@@ -997,7 +899,6 @@ msgctxt ""
msgid "Variable $(ARG1) already defined."
msgstr ""
-#. kW8M
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1007,7 +908,6 @@ msgctxt ""
msgid "Sub procedure or function procedure $(ARG1) already defined."
msgstr ""
-#. dyMK
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1017,7 +917,6 @@ msgctxt ""
msgid "Label $(ARG1) already defined."
msgstr ""
-#. Qq+^
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1027,7 +926,6 @@ msgctxt ""
msgid "Variable $(ARG1) not found."
msgstr ""
-#. WDkj
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1037,7 +935,6 @@ msgctxt ""
msgid "Array or procedure $(ARG1) not found."
msgstr ""
-#. hlPl
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1047,7 +944,6 @@ msgctxt ""
msgid "Procedure $(ARG1) not found."
msgstr ""
-#. pDfg
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1057,7 +953,6 @@ msgctxt ""
msgid "Label $(ARG1) undefined."
msgstr ""
-#. P?iO
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1067,7 +962,6 @@ msgctxt ""
msgid "Unknown data type $(ARG1)."
msgstr ""
-#. e_}A
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1077,7 +971,6 @@ msgctxt ""
msgid "Exit $(ARG1) expected."
msgstr ""
-#. DQDp
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1087,7 +980,6 @@ msgctxt ""
msgid "Statement block still open: $(ARG1) missing."
msgstr ""
-#. !:%@
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1097,7 +989,6 @@ msgctxt ""
msgid "Parentheses do not match."
msgstr ""
-#. i9/Z
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1107,7 +998,6 @@ msgctxt ""
msgid "Symbol $(ARG1) already defined differently."
msgstr ""
-#. \LXI
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1117,7 +1007,6 @@ msgctxt ""
msgid "Parameters do not correspond to procedure."
msgstr ""
-#. ]_#9
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1127,7 +1016,6 @@ msgctxt ""
msgid "Invalid character in number."
msgstr ""
-#. yd^N
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1137,7 +1025,6 @@ msgctxt ""
msgid "Array must be dimensioned."
msgstr ""
-#. U]7r
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1147,7 +1034,6 @@ msgctxt ""
msgid "Else/Endif without If."
msgstr ""
-#. l,@@
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1157,7 +1043,6 @@ msgctxt ""
msgid "$(ARG1) not allowed within a procedure."
msgstr ""
-#. rQae
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1167,7 +1052,6 @@ msgctxt ""
msgid "$(ARG1) not allowed outside a procedure."
msgstr ""
-#. o71[
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1177,7 +1061,6 @@ msgctxt ""
msgid "Dimension specifications do not match."
msgstr ""
-#. tGW%
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1187,7 +1070,6 @@ msgctxt ""
msgid "Unknown option: $(ARG1)."
msgstr ""
-#. a+s?
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1197,7 +1079,6 @@ msgctxt ""
msgid "Constant $(ARG1) redefined."
msgstr ""
-#. {Kr_
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1207,7 +1088,6 @@ msgctxt ""
msgid "Program too large."
msgstr ""
-#. XTNn
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1217,7 +1097,6 @@ msgctxt ""
msgid "Strings or arrays not permitted."
msgstr ""
-#. 7Lkp
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1227,7 +1106,6 @@ msgctxt ""
msgid "An exception occurred $(ARG1)."
msgstr ""
-#. ECV`
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1237,7 +1115,6 @@ msgctxt ""
msgid "This array is fixed or temporarily locked."
msgstr ""
-#. uD8]
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1247,7 +1124,6 @@ msgctxt ""
msgid "Out of string space."
msgstr ""
-#. 3@]t
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1257,7 +1133,6 @@ msgctxt ""
msgid "Expression Too Complex."
msgstr ""
-#. mE%R
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1267,7 +1142,6 @@ msgctxt ""
msgid "Can't perform requested operation."
msgstr ""
-#. MY$g
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1277,7 +1151,6 @@ msgctxt ""
msgid "Too many DLL application clients."
msgstr ""
-#. E-7l
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1287,7 +1160,6 @@ msgctxt ""
msgid "For loop not initialized."
msgstr ""
-#. ,T}E
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1297,7 +1169,6 @@ msgctxt ""
msgid "$(ARG1)"
msgstr ""
-#. j@+e
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1306,7 +1177,6 @@ msgctxt ""
msgid "The macro running has been interrupted"
msgstr ""
-#. xR6k
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1315,7 +1185,6 @@ msgctxt ""
msgid "Reference will not be saved: "
msgstr ""
-#. 0pV\
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1324,7 +1193,6 @@ msgctxt ""
msgid "Error loading library '$(ARG1)'."
msgstr ""
-#. AT.h
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1333,7 +1201,6 @@ msgctxt ""
msgid "Error saving library: '$(ARG1)'."
msgstr ""
-#. {tfT
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1342,7 +1209,6 @@ msgctxt ""
msgid "The BASIC from the file '$(ARG1)' could not be initialized."
msgstr ""
-#. }9dQ
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1351,7 +1217,6 @@ msgctxt ""
msgid "Error saving BASIC: '$(ARG1)'."
msgstr ""
-#. n{Uv
#: sb.src
msgctxt ""
"sb.src\n"
@@ -1360,7 +1225,6 @@ msgctxt ""
msgid "Error removing library."
msgstr ""
-#. ZSrL
#: sb.src
msgctxt ""
"sb.src\n"
diff --git a/source/ur/basic/source/sbx.po b/source/ur/basic/source/sbx.po
index 027076f10da..5d9a2d92560 100644
--- a/source/ur/basic/source/sbx.po
+++ b/source/ur/basic/source/sbx.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
"PO-Revision-Date: 2012-09-21 21:06+0200\n"
"Last-Translator: khunshan <ahmad.khunshan@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Z9}?
#: format.src
msgctxt ""
"format.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "On"
msgstr "آن "
-#. X209
#: format.src
msgctxt ""
"format.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Off"
msgstr "آف"
-#. Q-y5
#: format.src
msgctxt ""
"format.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "True"
msgstr "درست"
-#. \YCB
#: format.src
msgctxt ""
"format.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "False"
msgstr "جھوٹ"
-#. ld7q
#: format.src
msgctxt ""
"format.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "Yes"
msgstr "جی "
-#. nKe!
#: format.src
msgctxt ""
"format.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "No"
msgstr "نهی"
-#. )lVb
#: format.src
msgctxt ""
"format.src\n"
diff --git a/source/ur/chart2/source/controller/dialogs.po b/source/ur/chart2/source/controller/dialogs.po
index 98c3cf63dec..85b289f1a14 100644
--- a/source/ur/chart2/source/controller/dialogs.po
+++ b/source/ur/chart2/source/controller/dialogs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-02-24 15:57+0200\n"
"Last-Translator: Yasir <urdulizer@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. *]e{
#: tp_LegendPosition.src
msgctxt ""
"tp_LegendPosition.src\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "Position"
msgstr ""
-#. 2bA!
#: tp_LegendPosition.src
msgctxt ""
"tp_LegendPosition.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Text orientation"
msgstr ""
-#. (Y46
#: tp_LegendPosition.src
msgctxt ""
"tp_LegendPosition.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Te~xt direction"
msgstr ""
-#. Ta3j
#: tp_3D_SceneAppearance.src
msgctxt ""
"tp_3D_SceneAppearance.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Sche~me"
msgstr ""
-#. wD[=
#: tp_3D_SceneAppearance.src
msgctxt ""
"tp_3D_SceneAppearance.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "~Shading"
msgstr ""
-#. /QqL
#: tp_3D_SceneAppearance.src
msgctxt ""
"tp_3D_SceneAppearance.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "~Object borders"
msgstr ""
-#. QmzN
#: tp_3D_SceneAppearance.src
msgctxt ""
"tp_3D_SceneAppearance.src\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "~Rounded edges"
msgstr ""
-#. aS{~
#: dlg_DataSource.src
msgctxt ""
"dlg_DataSource.src\n"
@@ -94,7 +86,6 @@ msgctxt ""
msgid "Data Ranges"
msgstr ""
-#. oDtD
#: res_LegendPosition_tmpl.hrc
msgctxt ""
"res_LegendPosition_tmpl.hrc\n"
@@ -104,7 +95,6 @@ msgctxt ""
msgid "~Display legend"
msgstr ""
-#. !n%9
#: res_LegendPosition_tmpl.hrc
msgctxt ""
"res_LegendPosition_tmpl.hrc\n"
@@ -114,7 +104,6 @@ msgctxt ""
msgid "~Left"
msgstr ""
-#. 1P9H
#: res_LegendPosition_tmpl.hrc
msgctxt ""
"res_LegendPosition_tmpl.hrc\n"
@@ -124,7 +113,6 @@ msgctxt ""
msgid "~Right"
msgstr ""
-#. N~Zf
#: res_LegendPosition_tmpl.hrc
msgctxt ""
"res_LegendPosition_tmpl.hrc\n"
@@ -134,7 +122,6 @@ msgctxt ""
msgid "~Top"
msgstr ""
-#. N+Ks
#: res_LegendPosition_tmpl.hrc
msgctxt ""
"res_LegendPosition_tmpl.hrc\n"
@@ -144,7 +131,6 @@ msgctxt ""
msgid "~Bottom"
msgstr ""
-#. `]m)
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -153,7 +139,6 @@ msgctxt ""
msgid "Negative and Positive"
msgstr ""
-#. GeY)
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -162,7 +147,6 @@ msgctxt ""
msgid "Negative"
msgstr ""
-#. .l[7
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -171,7 +155,6 @@ msgctxt ""
msgid "Positive"
msgstr ""
-#. -21e
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -180,7 +163,6 @@ msgctxt ""
msgid "From Data Table"
msgstr ""
-#. tqK@
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -189,7 +171,6 @@ msgctxt ""
msgid "Linear (%SERIESNAME)"
msgstr ""
-#. 5^hJ
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -198,7 +179,6 @@ msgctxt ""
msgid "Logarithmic (%SERIESNAME)"
msgstr ""
-#. =?g\
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -207,7 +187,6 @@ msgctxt ""
msgid "Exponential (%SERIESNAME)"
msgstr ""
-#. F=I/
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -216,7 +195,6 @@ msgctxt ""
msgid "Power (%SERIESNAME)"
msgstr ""
-#. cI\E
#: Strings_Statistic.src
msgctxt ""
"Strings_Statistic.src\n"
@@ -225,7 +203,6 @@ msgctxt ""
msgid "Mean (%SERIESNAME)"
msgstr ""
-#. ?J)8
#: res_TextSeparator.src
msgctxt ""
"res_TextSeparator.src\n"
@@ -235,7 +212,6 @@ msgctxt ""
msgid "Space"
msgstr ""
-#. W4nI
#: res_TextSeparator.src
msgctxt ""
"res_TextSeparator.src\n"
@@ -245,7 +221,6 @@ msgctxt ""
msgid "Comma"
msgstr ""
-#. ABZF
#: res_TextSeparator.src
msgctxt ""
"res_TextSeparator.src\n"
@@ -255,7 +230,6 @@ msgctxt ""
msgid "Semicolon"
msgstr ""
-#. Fp7(
#: res_TextSeparator.src
msgctxt ""
"res_TextSeparator.src\n"
@@ -265,7 +239,6 @@ msgctxt ""
msgid "New line"
msgstr ""
-#. 93Rx
#: Strings_AdditionalControls.src
msgctxt ""
"Strings_AdditionalControls.src\n"
@@ -274,7 +247,6 @@ msgctxt ""
msgid "Simple"
msgstr ""
-#. X)Cq
#: Strings_AdditionalControls.src
msgctxt ""
"Strings_AdditionalControls.src\n"
@@ -283,7 +255,6 @@ msgctxt ""
msgid "Realistic"
msgstr ""
-#. *(X]
#: Strings_AdditionalControls.src
msgctxt ""
"Strings_AdditionalControls.src\n"
@@ -292,7 +263,6 @@ msgctxt ""
msgid "Custom"
msgstr ""
-#. h.]G
#: Strings_AdditionalControls.src
msgctxt ""
"Strings_AdditionalControls.src\n"
@@ -301,7 +271,6 @@ msgctxt ""
msgid "Shape"
msgstr ""
-#. (BCV
#: Strings_AdditionalControls.src
msgctxt ""
"Strings_AdditionalControls.src\n"
@@ -310,7 +279,6 @@ msgctxt ""
msgid "~Number of lines"
msgstr ""
-#. ;4CQ
#: Strings_AdditionalControls.src
msgctxt ""
"Strings_AdditionalControls.src\n"
@@ -319,7 +287,6 @@ msgctxt ""
msgid "Separator"
msgstr ""
-#. 9e|j
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -328,7 +295,6 @@ msgctxt ""
msgid "Column"
msgstr ""
-#. Q:Pn
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -337,7 +303,6 @@ msgctxt ""
msgid "Bar"
msgstr ""
-#. :%2T
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -346,7 +311,6 @@ msgctxt ""
msgid "Area"
msgstr ""
-#. -v_=
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -355,7 +319,6 @@ msgctxt ""
msgid "Pie"
msgstr ""
-#. ~WAm
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -364,7 +327,6 @@ msgctxt ""
msgid "Exploded Pie Chart"
msgstr ""
-#. 6.V@
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -373,7 +335,6 @@ msgctxt ""
msgid "Exploded Donut Chart"
msgstr ""
-#. [bQ{
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -382,7 +343,6 @@ msgctxt ""
msgid "Donut"
msgstr ""
-#. OMPv
#: Strings_ChartTypes.src
#, fuzzy
msgctxt ""
@@ -392,7 +352,6 @@ msgctxt ""
msgid "Line"
msgstr "سطور"
-#. x#-|
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -401,7 +360,6 @@ msgctxt ""
msgid "XY (Scatter)"
msgstr ""
-#. 4*:L
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -410,7 +368,6 @@ msgctxt ""
msgid "Points and Lines"
msgstr ""
-#. HY{t
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -419,7 +376,6 @@ msgctxt ""
msgid "Points Only"
msgstr ""
-#. 6sa/
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -428,7 +384,6 @@ msgctxt ""
msgid "Lines Only"
msgstr ""
-#. #R3E
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -437,7 +392,6 @@ msgctxt ""
msgid "3D Lines"
msgstr ""
-#. `4;t
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -446,7 +400,6 @@ msgctxt ""
msgid "Column and Line"
msgstr ""
-#. XvZ.
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -455,7 +408,6 @@ msgctxt ""
msgid "Columns and Lines"
msgstr ""
-#. $G_8
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -464,7 +416,6 @@ msgctxt ""
msgid "Stacked Columns and Lines"
msgstr ""
-#. d3jd
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -473,7 +424,6 @@ msgctxt ""
msgid "Net"
msgstr ""
-#. 0;S`
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -482,7 +432,6 @@ msgctxt ""
msgid "Stock"
msgstr ""
-#. R:j4
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -491,7 +440,6 @@ msgctxt ""
msgid "Stock Chart 1"
msgstr ""
-#. iAu$
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -500,7 +448,6 @@ msgctxt ""
msgid "Stock Chart 2"
msgstr ""
-#. jV!_
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -509,7 +456,6 @@ msgctxt ""
msgid "Stock Chart 3"
msgstr ""
-#. =09H
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -518,7 +464,6 @@ msgctxt ""
msgid "Stock Chart 4"
msgstr ""
-#. p^8~
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -527,7 +472,6 @@ msgctxt ""
msgid "Normal"
msgstr ""
-#. SuFe
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -536,7 +480,6 @@ msgctxt ""
msgid "Stacked"
msgstr ""
-#. (Gg1
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -545,7 +488,6 @@ msgctxt ""
msgid "Percent Stacked"
msgstr ""
-#. ?LZx
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -554,7 +496,6 @@ msgctxt ""
msgid "Deep"
msgstr ""
-#. 8`?Y
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -563,7 +504,6 @@ msgctxt ""
msgid "Filled"
msgstr ""
-#. CIIf
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -572,7 +512,6 @@ msgctxt ""
msgid "Bubble"
msgstr ""
-#. .*xv
#: Strings_ChartTypes.src
msgctxt ""
"Strings_ChartTypes.src\n"
@@ -581,7 +520,6 @@ msgctxt ""
msgid "Bubble Chart"
msgstr ""
-#. =E`M
#: dlg_View3D.src
msgctxt ""
"dlg_View3D.src\n"
@@ -590,7 +528,6 @@ msgctxt ""
msgid "3D View"
msgstr ""
-#. |)N:
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -600,7 +537,6 @@ msgctxt ""
msgid "Insert Row"
msgstr ""
-#. .2pr
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -610,7 +546,6 @@ msgctxt ""
msgid "Insert Series"
msgstr ""
-#. 4^5V
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -620,7 +555,6 @@ msgctxt ""
msgid "Insert Text Column"
msgstr ""
-#. #HR6
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -630,7 +564,6 @@ msgctxt ""
msgid "Delete Row"
msgstr ""
-#. km3:
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -640,7 +573,6 @@ msgctxt ""
msgid "Delete Series"
msgstr ""
-#. $3sv
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -650,7 +582,6 @@ msgctxt ""
msgid "Move Series Right"
msgstr ""
-#. P/dj
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -660,7 +591,6 @@ msgctxt ""
msgid "Move Row Down"
msgstr ""
-#. $$77
#: dlg_DataEditor.src
msgctxt ""
"dlg_DataEditor.src\n"
@@ -669,7 +599,6 @@ msgctxt ""
msgid "Data Table"
msgstr ""
-#. =E\\
#: tp_RangeChooser.src
msgctxt ""
"tp_RangeChooser.src\n"
@@ -679,7 +608,6 @@ msgctxt ""
msgid "Choose a data range"
msgstr ""
-#. t;Y!
#: tp_RangeChooser.src
msgctxt ""
"tp_RangeChooser.src\n"
@@ -689,7 +617,6 @@ msgctxt ""
msgid "~Data range"
msgstr ""
-#. @p99
#: tp_RangeChooser.src
msgctxt ""
"tp_RangeChooser.src\n"
@@ -699,7 +626,6 @@ msgctxt ""
msgid "Data series in ~rows"
msgstr ""
-#. 69eT
#: tp_RangeChooser.src
msgctxt ""
"tp_RangeChooser.src\n"
@@ -709,7 +635,6 @@ msgctxt ""
msgid "Data series in ~columns"
msgstr ""
-#. K@Zi
#: tp_RangeChooser.src
msgctxt ""
"tp_RangeChooser.src\n"
@@ -719,7 +644,6 @@ msgctxt ""
msgid "~First row as label"
msgstr ""
-#. [w4)
#: tp_RangeChooser.src
msgctxt ""
"tp_RangeChooser.src\n"
@@ -729,7 +653,6 @@ msgctxt ""
msgid "F~irst column as label"
msgstr ""
-#. 8]is
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -739,7 +662,6 @@ msgctxt ""
msgid "Regression Type"
msgstr ""
-#. (wAr
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -749,7 +671,6 @@ msgctxt ""
msgid "~None"
msgstr ""
-#. GG9S
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -759,7 +680,6 @@ msgctxt ""
msgid "~Linear"
msgstr ""
-#. 4:q_
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -769,7 +689,6 @@ msgctxt ""
msgid "L~ogarithmic"
msgstr ""
-#. 9K`S
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -779,7 +698,6 @@ msgctxt ""
msgid "E~xponential"
msgstr ""
-#. b9pq
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -789,7 +707,6 @@ msgctxt ""
msgid "~Power"
msgstr ""
-#. knid
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -799,7 +716,6 @@ msgctxt ""
msgid "Equation"
msgstr ""
-#. l)?b
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -809,7 +725,6 @@ msgctxt ""
msgid "Show ~equation"
msgstr ""
-#. fljX
#: res_Trendline_tmpl.hrc
msgctxt ""
"res_Trendline_tmpl.hrc\n"
@@ -819,7 +734,6 @@ msgctxt ""
msgid "Show ~coefficient of determination (R²)"
msgstr ""
-#. W|.3
#: tp_PolarOptions.src
msgctxt ""
"tp_PolarOptions.src\n"
@@ -829,7 +743,6 @@ msgctxt ""
msgid "~Clockwise direction"
msgstr ""
-#. ,hUr
#: tp_PolarOptions.src
msgctxt ""
"tp_PolarOptions.src\n"
@@ -839,7 +752,6 @@ msgctxt ""
msgid "Starting angle"
msgstr ""
-#. 8icR
#: tp_PolarOptions.src
msgctxt ""
"tp_PolarOptions.src\n"
@@ -849,7 +761,6 @@ msgctxt ""
msgid "~Degrees"
msgstr ""
-#. E8Nh
#: tp_PolarOptions.src
msgctxt ""
"tp_PolarOptions.src\n"
@@ -859,7 +770,6 @@ msgctxt ""
msgid "Plot options"
msgstr ""
-#. 5SC{
#: tp_PolarOptions.src
msgctxt ""
"tp_PolarOptions.src\n"
@@ -869,7 +779,6 @@ msgctxt ""
msgid "Include ~values from hidden cells"
msgstr ""
-#. ;bc;
#: tp_3D_SceneIllumination.src
msgctxt ""
"tp_3D_SceneIllumination.src\n"
@@ -879,7 +788,6 @@ msgctxt ""
msgid "~Light source"
msgstr ""
-#. b@)R
#: tp_3D_SceneIllumination.src
msgctxt ""
"tp_3D_SceneIllumination.src\n"
@@ -889,7 +797,6 @@ msgctxt ""
msgid "~Ambient light"
msgstr ""
-#. jXhM
#: tp_3D_SceneIllumination.src
msgctxt ""
"tp_3D_SceneIllumination.src\n"
@@ -898,7 +805,6 @@ msgctxt ""
msgid "Light Preview"
msgstr ""
-#. i80-
#: tp_TitleRotation.src
msgctxt ""
"tp_TitleRotation.src\n"
@@ -908,7 +814,6 @@ msgctxt ""
msgid "Ve~rtically stacked"
msgstr ""
-#. i\vL
#: tp_TitleRotation.src
msgctxt ""
"tp_TitleRotation.src\n"
@@ -918,7 +823,6 @@ msgctxt ""
msgid "~Degrees"
msgstr ""
-#. 0.Y#
#: tp_TitleRotation.src
msgctxt ""
"tp_TitleRotation.src\n"
@@ -928,7 +832,6 @@ msgctxt ""
msgid "Text orientation"
msgstr ""
-#. hDoi
#: tp_TitleRotation.src
msgctxt ""
"tp_TitleRotation.src\n"
@@ -938,7 +841,6 @@ msgctxt ""
msgid "Te~xt direction"
msgstr ""
-#. YA|:
#: dlg_ShapeFont.src
msgctxt ""
"dlg_ShapeFont.src\n"
@@ -948,7 +850,6 @@ msgctxt ""
msgid "Font"
msgstr ""
-#. SBG(
#: dlg_ShapeFont.src
msgctxt ""
"dlg_ShapeFont.src\n"
@@ -958,7 +859,6 @@ msgctxt ""
msgid "Font Effects"
msgstr ""
-#. I@Wu
#: dlg_ShapeFont.src
msgctxt ""
"dlg_ShapeFont.src\n"
@@ -968,7 +868,6 @@ msgctxt ""
msgid "Font Position"
msgstr ""
-#. VWxy
#: dlg_ShapeFont.src
#, fuzzy
msgctxt ""
@@ -978,7 +877,6 @@ msgctxt ""
msgid "Character"
msgstr "حروف"
-#. VD+x
#: Strings_Scale.src
msgctxt ""
"Strings_Scale.src\n"
@@ -987,7 +885,6 @@ msgctxt ""
msgid "Numbers are required. Check your input."
msgstr ""
-#. #o=H
#: Strings_Scale.src
msgctxt ""
"Strings_Scale.src\n"
@@ -996,7 +893,6 @@ msgctxt ""
msgid "The major interval requires a positive number. Check your input."
msgstr ""
-#. c9]c
#: Strings_Scale.src
msgctxt ""
"Strings_Scale.src\n"
@@ -1005,7 +901,6 @@ msgctxt ""
msgid "The logarithmic scale requires positive numbers. Check your input."
msgstr ""
-#. dA{W
#: Strings_Scale.src
msgctxt ""
"Strings_Scale.src\n"
@@ -1014,7 +909,6 @@ msgctxt ""
msgid "The minimum must be lower than the maximum. Check your input."
msgstr ""
-#. uCXQ
#: Strings_Scale.src
msgctxt ""
"Strings_Scale.src\n"
@@ -1023,7 +917,6 @@ msgctxt ""
msgid "The major interval needs to be greater than the minor interval. Check your input."
msgstr ""
-#. [=Fj
#: Strings_Scale.src
msgctxt ""
"Strings_Scale.src\n"
@@ -1032,7 +925,6 @@ msgctxt ""
msgid "The major and minor interval need to be greater or equal to the resolution. Check your input."
msgstr ""
-#. jLX5
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1042,7 +934,6 @@ msgctxt ""
msgid "Axes"
msgstr ""
-#. OO2y
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1052,7 +943,6 @@ msgctxt ""
msgid "Major grids"
msgstr ""
-#. B[TW
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1062,7 +952,6 @@ msgctxt ""
msgid "~X axis"
msgstr ""
-#. L068
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1072,7 +961,6 @@ msgctxt ""
msgid "~Y axis"
msgstr ""
-#. 9]MJ
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1082,7 +970,6 @@ msgctxt ""
msgid "~Z axis"
msgstr ""
-#. S|.I
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1092,7 +979,6 @@ msgctxt ""
msgid "Secondary axes"
msgstr ""
-#. L(K}
#: dlg_InsertAxis_Grid.src
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
@@ -1102,7 +988,6 @@ msgctxt ""
msgid "Minor grids"
msgstr ""
-#. #+EL
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1112,7 +997,6 @@ msgctxt ""
msgid "Choose a chart type"
msgstr ""
-#. !A4Y
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1122,7 +1006,6 @@ msgctxt ""
msgid "X axis with Categories"
msgstr ""
-#. [QFc
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1132,7 +1015,6 @@ msgctxt ""
msgid "~3D Look"
msgstr ""
-#. }\g@
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1142,7 +1024,6 @@ msgctxt ""
msgid "~Stack series"
msgstr ""
-#. wAj`
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1152,7 +1033,6 @@ msgctxt ""
msgid "On top"
msgstr ""
-#. {_ID
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1162,7 +1042,6 @@ msgctxt ""
msgid "Percent"
msgstr ""
-#. fJnZ
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1172,7 +1051,6 @@ msgctxt ""
msgid "Deep"
msgstr ""
-#. 4Y]o
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1182,7 +1060,6 @@ msgctxt ""
msgid "S~mooth lines"
msgstr ""
-#. 4M\0
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1192,7 +1069,6 @@ msgctxt ""
msgid "Properties..."
msgstr ""
-#. CX=Y
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1202,7 +1078,6 @@ msgctxt ""
msgid "~Sort by X values"
msgstr ""
-#. lEJ3
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1212,7 +1087,6 @@ msgctxt ""
msgid "Cubic spline"
msgstr ""
-#. =8uq
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1222,7 +1096,6 @@ msgctxt ""
msgid "B-Spline"
msgstr ""
-#. P[^4
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1232,7 +1105,6 @@ msgctxt ""
msgid "~Resolution"
msgstr ""
-#. 7znu
#: tp_ChartType.src
msgctxt ""
"tp_ChartType.src\n"
@@ -1242,7 +1114,6 @@ msgctxt ""
msgid "~Degree of polynomials"
msgstr ""
-#. Yq=6
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1252,7 +1123,6 @@ msgctxt ""
msgid "Customize data ranges for individual data series"
msgstr ""
-#. s+aV
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1262,7 +1132,6 @@ msgctxt ""
msgid "Data ~series"
msgstr ""
-#. JWm_
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1272,7 +1141,6 @@ msgctxt ""
msgid "~Data ranges"
msgstr ""
-#. .:VG
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1282,7 +1150,6 @@ msgctxt ""
msgid "Ran~ge for %VALUETYPE"
msgstr ""
-#. Zl#c
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1292,7 +1159,6 @@ msgctxt ""
msgid "~Categories"
msgstr ""
-#. 1m2y
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1302,7 +1168,6 @@ msgctxt ""
msgid "Data ~labels"
msgstr ""
-#. f[R%
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1312,7 +1177,6 @@ msgctxt ""
msgid "~Add"
msgstr ""
-#. kBDc
#: tp_DataSource.src
msgctxt ""
"tp_DataSource.src\n"
@@ -1322,7 +1186,6 @@ msgctxt ""
msgid "~Remove"
msgstr ""
-#. G^6K
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1332,7 +1195,6 @@ msgctxt ""
msgid "Sho~w labels"
msgstr ""
-#. Zoa+
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1342,7 +1204,6 @@ msgctxt ""
msgid "Text orientation"
msgstr ""
-#. a`5r
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1352,7 +1213,6 @@ msgctxt ""
msgid "Ve~rtically stacked"
msgstr ""
-#. 68oB
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1362,7 +1222,6 @@ msgctxt ""
msgid "~Degrees"
msgstr ""
-#. e9@?
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1372,7 +1231,6 @@ msgctxt ""
msgid "Text flow"
msgstr ""
-#. 0egC
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1382,7 +1240,6 @@ msgctxt ""
msgid "O~verlap"
msgstr ""
-#. l:ya
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1392,7 +1249,6 @@ msgctxt ""
msgid "~Break"
msgstr ""
-#. .@6\
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1402,7 +1258,6 @@ msgctxt ""
msgid "Order"
msgstr ""
-#. g:FP
#: tp_AxisLabel.src
#, fuzzy
msgctxt ""
@@ -1413,7 +1268,6 @@ msgctxt ""
msgid "~Tile"
msgstr "عنوان"
-#. ,jVO
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1423,7 +1277,6 @@ msgctxt ""
msgid "St~agger odd"
msgstr ""
-#. 8H5\
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1433,7 +1286,6 @@ msgctxt ""
msgid "Stagger ~even"
msgstr ""
-#. 6S](
#: tp_AxisLabel.src
#, fuzzy
msgctxt ""
@@ -1444,7 +1296,6 @@ msgctxt ""
msgid "A~utomatic"
msgstr "خودکار"
-#. 1o^t
#: tp_AxisLabel.src
msgctxt ""
"tp_AxisLabel.src\n"
@@ -1454,7 +1305,6 @@ msgctxt ""
msgid "Te~xt direction"
msgstr ""
-#. 0/!M
#: res_Titlesx_tmpl.hrc
#, fuzzy
msgctxt ""
@@ -1465,7 +1315,6 @@ msgctxt ""
msgid "~Title"
msgstr "عنوان"
-#. PZFl
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1475,7 +1324,6 @@ msgctxt ""
msgid "~Subtitle"
msgstr ""
-#. VBni
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1485,7 +1333,6 @@ msgctxt ""
msgid "Axes"
msgstr ""
-#. %y.|
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1495,7 +1342,6 @@ msgctxt ""
msgid "~X axis"
msgstr ""
-#. 1O{i
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1505,7 +1351,6 @@ msgctxt ""
msgid "~Y axis"
msgstr ""
-#. QkE=
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1515,7 +1360,6 @@ msgctxt ""
msgid "~Z axis"
msgstr ""
-#. ffL@
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1525,7 +1369,6 @@ msgctxt ""
msgid "Secondary Axes"
msgstr ""
-#. @8#P
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1535,7 +1378,6 @@ msgctxt ""
msgid "X ~axis"
msgstr ""
-#. TS(}
#: res_Titlesx_tmpl.hrc
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
@@ -1545,7 +1387,6 @@ msgctxt ""
msgid "Y ax~is"
msgstr ""
-#. -C0w
#: dlg_ShapeParagraph.src
msgctxt ""
"dlg_ShapeParagraph.src\n"
@@ -1555,7 +1396,6 @@ msgctxt ""
msgid "Indents & Spacing"
msgstr ""
-#. :WTi
#: dlg_ShapeParagraph.src
msgctxt ""
"dlg_ShapeParagraph.src\n"
@@ -1565,7 +1405,6 @@ msgctxt ""
msgid "Alignment"
msgstr ""
-#. 8tw(
#: dlg_ShapeParagraph.src
msgctxt ""
"dlg_ShapeParagraph.src\n"
@@ -1575,7 +1414,6 @@ msgctxt ""
msgid "Asian Typography"
msgstr ""
-#. {Klu
#: dlg_ShapeParagraph.src
msgctxt ""
"dlg_ShapeParagraph.src\n"
@@ -1585,7 +1423,6 @@ msgctxt ""
msgid "Tab"
msgstr ""
-#. jers
#: dlg_ShapeParagraph.src
#, fuzzy
msgctxt ""
@@ -1595,7 +1432,6 @@ msgctxt ""
msgid "Paragraph"
msgstr "بند"
-#. #C55
#: tp_3D_SceneGeometry.src
msgctxt ""
"tp_3D_SceneGeometry.src\n"
@@ -1604,7 +1440,6 @@ msgctxt ""
msgid " degrees"
msgstr ""
-#. BMbV
#: tp_3D_SceneGeometry.src
msgctxt ""
"tp_3D_SceneGeometry.src\n"
@@ -1614,7 +1449,6 @@ msgctxt ""
msgid "~Right-angled axes"
msgstr ""
-#. jWQx
#: tp_3D_SceneGeometry.src
msgctxt ""
"tp_3D_SceneGeometry.src\n"
@@ -1624,7 +1458,6 @@ msgctxt ""
msgid "~X rotation"
msgstr ""
-#. (%\N
#: tp_3D_SceneGeometry.src
msgctxt ""
"tp_3D_SceneGeometry.src\n"
@@ -1634,7 +1467,6 @@ msgctxt ""
msgid "~Y rotation"
msgstr ""
-#. miUt
#: tp_3D_SceneGeometry.src
msgctxt ""
"tp_3D_SceneGeometry.src\n"
@@ -1644,7 +1476,6 @@ msgctxt ""
msgid "~Z rotation"
msgstr ""
-#. N=!e
#: tp_3D_SceneGeometry.src
msgctxt ""
"tp_3D_SceneGeometry.src\n"
@@ -1654,7 +1485,6 @@ msgctxt ""
msgid "~Perspective"
msgstr ""
-#. =YB6
#: res_SecondaryAxisCheckBoxes_tmpl.hrc
msgctxt ""
"res_SecondaryAxisCheckBoxes_tmpl.hrc\n"
@@ -1664,7 +1494,6 @@ msgctxt ""
msgid "X ~axis"
msgstr ""
-#. hZjk
#: res_SecondaryAxisCheckBoxes_tmpl.hrc
msgctxt ""
"res_SecondaryAxisCheckBoxes_tmpl.hrc\n"
@@ -1674,7 +1503,6 @@ msgctxt ""
msgid "Y ax~is"
msgstr ""
-#. N7M7
#: res_SecondaryAxisCheckBoxes_tmpl.hrc
msgctxt ""
"res_SecondaryAxisCheckBoxes_tmpl.hrc\n"
@@ -1684,7 +1512,6 @@ msgctxt ""
msgid "Z axi~s"
msgstr ""
-#. #b?E
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1693,7 +1520,6 @@ msgctxt ""
msgid "Chart Wizard"
msgstr ""
-#. OV$q
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1702,7 +1528,6 @@ msgctxt ""
msgid "Smooth Lines"
msgstr ""
-#. MLs=
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1711,7 +1536,6 @@ msgctxt ""
msgid "Number Format for Percentage Value"
msgstr ""
-#. [2mK
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1720,7 +1544,6 @@ msgctxt ""
msgid "Chart Type"
msgstr ""
-#. }`h%
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1729,7 +1552,6 @@ msgctxt ""
msgid "Data Range"
msgstr ""
-#. @QzI
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1738,7 +1560,6 @@ msgctxt ""
msgid "Chart Elements"
msgstr ""
-#. ,QlR
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1747,7 +1568,6 @@ msgctxt ""
msgid "Chart Location"
msgstr ""
-#. GOT7
#: Strings.src
#, fuzzy
msgctxt ""
@@ -1757,7 +1577,6 @@ msgctxt ""
msgid "Line"
msgstr "سطور"
-#. w^ul
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1766,7 +1585,6 @@ msgctxt ""
msgid "Borders"
msgstr ""
-#. bx$a
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1775,7 +1593,6 @@ msgctxt ""
msgid "Area"
msgstr ""
-#. HE9j
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1784,7 +1601,6 @@ msgctxt ""
msgid "Transparency"
msgstr ""
-#. :7)n
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1793,7 +1609,6 @@ msgctxt ""
msgid "Font"
msgstr ""
-#. Rje4
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1802,7 +1617,6 @@ msgctxt ""
msgid "Font Effects"
msgstr ""
-#. _Au`
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1811,7 +1625,6 @@ msgctxt ""
msgid "Numbers"
msgstr ""
-#. `Y1Y
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1820,7 +1633,6 @@ msgctxt ""
msgid "Position"
msgstr ""
-#. 8QM_
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1829,7 +1641,6 @@ msgctxt ""
msgid "Up"
msgstr ""
-#. 1$X/
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1838,7 +1649,6 @@ msgctxt ""
msgid "Down"
msgstr ""
-#. rr/8
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1847,7 +1657,6 @@ msgctxt ""
msgid "Layout"
msgstr ""
-#. ]S?b
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1856,7 +1665,6 @@ msgctxt ""
msgid "Options"
msgstr ""
-#. 4L1%
#: Strings.src
#, fuzzy
msgctxt ""
@@ -1866,7 +1674,6 @@ msgctxt ""
msgid "Scale"
msgstr "تغیر شدہ"
-#. 3l@l
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1875,7 +1682,6 @@ msgctxt ""
msgid "Positioning"
msgstr ""
-#. x\.E
#: Strings.src
#, fuzzy
msgctxt ""
@@ -1885,7 +1691,6 @@ msgctxt ""
msgid "Type"
msgstr "نوعیت:"
-#. 4MGk
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1894,7 +1699,6 @@ msgctxt ""
msgid "X Error Bars"
msgstr ""
-#. 0Igp
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1903,7 +1707,6 @@ msgctxt ""
msgid "Y Error Bars"
msgstr ""
-#. Y]0*
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1912,7 +1715,6 @@ msgctxt ""
msgid "Z Error Bars"
msgstr ""
-#. YU\X
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1921,7 +1723,6 @@ msgctxt ""
msgid "Alignment"
msgstr ""
-#. 5=oK
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1930,7 +1731,6 @@ msgctxt ""
msgid "Perspective"
msgstr ""
-#. e{?y
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1939,7 +1739,6 @@ msgctxt ""
msgid "Appearance"
msgstr ""
-#. [)o%
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1948,7 +1747,6 @@ msgctxt ""
msgid "Illumination"
msgstr ""
-#. /(B=
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1957,7 +1755,6 @@ msgctxt ""
msgid "Asian Typography"
msgstr ""
-#. :+op
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1966,7 +1763,6 @@ msgctxt ""
msgid "Mean value line with value %AVERAGE_VALUE and standard deviation %STD_DEVIATION"
msgstr ""
-#. E%IQ
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1975,7 +1771,6 @@ msgctxt ""
msgid "Axis"
msgstr ""
-#. ibaz
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1984,7 +1779,6 @@ msgctxt ""
msgid "X Axis"
msgstr ""
-#. ,/Rn
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -1993,7 +1787,6 @@ msgctxt ""
msgid "Y Axis"
msgstr ""
-#. 1om8
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2002,7 +1795,6 @@ msgctxt ""
msgid "Z Axis"
msgstr ""
-#. -#_=
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2011,7 +1803,6 @@ msgctxt ""
msgid "Secondary X Axis"
msgstr ""
-#. gWrK
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2020,7 +1811,6 @@ msgctxt ""
msgid "Secondary Y Axis"
msgstr ""
-#. ?[f8
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2029,7 +1819,6 @@ msgctxt ""
msgid "Axes"
msgstr ""
-#. YgOW
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2038,7 +1827,6 @@ msgctxt ""
msgid "Grids"
msgstr ""
-#. ke3*
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2047,7 +1835,6 @@ msgctxt ""
msgid "Grid"
msgstr ""
-#. lOW(
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2056,7 +1843,6 @@ msgctxt ""
msgid "X Axis Major Grid"
msgstr ""
-#. #wk1
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2065,7 +1851,6 @@ msgctxt ""
msgid "Y Axis Major Grid"
msgstr ""
-#. UH@@
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2074,7 +1859,6 @@ msgctxt ""
msgid "Z Axis Major Grid"
msgstr ""
-#. 9?cE
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2083,7 +1867,6 @@ msgctxt ""
msgid "X Axis Minor Grid"
msgstr ""
-#. YWO5
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2092,7 +1875,6 @@ msgctxt ""
msgid "Y Axis Minor Grid"
msgstr ""
-#. 4j6J
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2101,7 +1883,6 @@ msgctxt ""
msgid "Z Axis Minor Grid"
msgstr ""
-#. sYEn
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2110,7 +1891,6 @@ msgctxt ""
msgid "Legend"
msgstr ""
-#. 8c`i
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2119,7 +1899,6 @@ msgctxt ""
msgid "Title"
msgstr "عنوان"
-#. kLHp
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2129,7 +1908,6 @@ msgctxt ""
msgid "Titles"
msgstr "عنوان"
-#. m[@6
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2138,7 +1916,6 @@ msgctxt ""
msgid "Main Title"
msgstr ""
-#. .lG5
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2147,7 +1924,6 @@ msgctxt ""
msgid "Subtitle"
msgstr ""
-#. *jdG
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2156,7 +1932,6 @@ msgctxt ""
msgid "X Axis Title"
msgstr ""
-#. SX[Q
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2165,7 +1940,6 @@ msgctxt ""
msgid "Y Axis Title"
msgstr ""
-#. ]7.b
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2174,7 +1948,6 @@ msgctxt ""
msgid "Z Axis Title"
msgstr ""
-#. $HXQ
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2183,7 +1956,6 @@ msgctxt ""
msgid "Secondary X Axis Title"
msgstr ""
-#. @.5E
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2192,7 +1964,6 @@ msgctxt ""
msgid "Secondary Y Axis Title"
msgstr ""
-#. ?5k5
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2201,7 +1972,6 @@ msgctxt ""
msgid "Label"
msgstr ""
-#. .%E/
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2210,7 +1980,6 @@ msgctxt ""
msgid "Data Labels"
msgstr ""
-#. oe^C
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2219,7 +1988,6 @@ msgctxt ""
msgid "Data Point"
msgstr ""
-#. *`4I
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2228,7 +1996,6 @@ msgctxt ""
msgid "Data Points"
msgstr ""
-#. 5;Uc
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2237,7 +2004,6 @@ msgctxt ""
msgid "Legend Key"
msgstr ""
-#. 1mXl
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2246,7 +2012,6 @@ msgctxt ""
msgid "Data Series"
msgstr ""
-#. A^\/
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2255,7 +2020,6 @@ msgctxt ""
msgid "Data Series"
msgstr ""
-#. Q.Bm
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2264,7 +2028,6 @@ msgctxt ""
msgid "Trend Line"
msgstr ""
-#. 3A2I
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2273,7 +2036,6 @@ msgctxt ""
msgid "Trend Lines"
msgstr ""
-#. ~J6k
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2282,7 +2044,6 @@ msgctxt ""
msgid "Trend line %FORMULA with accuracy R² = %RSQUARED"
msgstr ""
-#. vzbm
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2291,7 +2052,6 @@ msgctxt ""
msgid "Mean Value Line"
msgstr ""
-#. (_Oj
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2300,7 +2060,6 @@ msgctxt ""
msgid "Equation"
msgstr ""
-#. 1hj{
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2309,7 +2068,6 @@ msgctxt ""
msgid "X Error Bars"
msgstr ""
-#. RN#6
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2318,7 +2076,6 @@ msgctxt ""
msgid "Y Error Bars"
msgstr ""
-#. Jr2O
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2327,7 +2084,6 @@ msgctxt ""
msgid "Z Error Bars"
msgstr ""
-#. Zp(8
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2336,7 +2092,6 @@ msgctxt ""
msgid "Stock Loss"
msgstr ""
-#. ;nt8
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2345,7 +2100,6 @@ msgctxt ""
msgid "Stock Gain"
msgstr ""
-#. 33)~
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2354,7 +2108,6 @@ msgctxt ""
msgid "Chart Area"
msgstr ""
-#. 3-4`
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2363,7 +2116,6 @@ msgctxt ""
msgid "Chart"
msgstr ""
-#. t8[[
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2372,7 +2124,6 @@ msgctxt ""
msgid "Chart Wall"
msgstr ""
-#. 0Hq|
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2381,7 +2132,6 @@ msgctxt ""
msgid "Chart Floor"
msgstr ""
-#. awbi
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2390,7 +2140,6 @@ msgctxt ""
msgid "Drawing Object"
msgstr ""
-#. T0^x
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2399,7 +2148,6 @@ msgctxt ""
msgid "Select data range"
msgstr ""
-#. YlE)
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2408,7 +2156,6 @@ msgctxt ""
msgid "Select a color using the color dialog"
msgstr ""
-#. 5Wbc
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2417,7 +2164,6 @@ msgctxt ""
msgid "Light Source %LIGHTNUMBER"
msgstr ""
-#. bv_+
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2426,7 +2172,6 @@ msgctxt ""
msgid "Data Series '%SERIESNAME'"
msgstr ""
-#. -x7j
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2435,7 +2180,6 @@ msgctxt ""
msgid "Data Point %POINTNUMBER"
msgstr ""
-#. R7n^
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2444,7 +2188,6 @@ msgctxt ""
msgid "Values: %POINTVALUES"
msgstr ""
-#. DM-.
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2453,7 +2196,6 @@ msgctxt ""
msgid "Data Point %POINTNUMBER, data series %SERIESNUMBER, values: %POINTVALUES"
msgstr ""
-#. _ofE
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2462,7 +2204,6 @@ msgctxt ""
msgid "Data point %POINTNUMBER in data series %SERIESNUMBER selected, values: %POINTVALUES"
msgstr ""
-#. 3f^o
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2471,7 +2212,6 @@ msgctxt ""
msgid "%OBJECTNAME selected"
msgstr ""
-#. }NA@
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2480,7 +2220,6 @@ msgctxt ""
msgid "Pie exploded by %PERCENTVALUE percent"
msgstr ""
-#. {Pez
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2489,7 +2228,6 @@ msgctxt ""
msgid "%OBJECTNAME for Data Series '%SERIESNAME'"
msgstr ""
-#. Tkh#
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2498,7 +2236,6 @@ msgctxt ""
msgid "%OBJECTNAME for all Data Series"
msgstr ""
-#. f,Vj
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2507,7 +2244,6 @@ msgctxt ""
msgid "Edit chart type"
msgstr ""
-#. owTG
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2516,7 +2252,6 @@ msgctxt ""
msgid "Edit data ranges"
msgstr ""
-#. h[n4
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2525,7 +2260,6 @@ msgctxt ""
msgid "Edit 3D view"
msgstr ""
-#. 7wE:
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2534,7 +2268,6 @@ msgctxt ""
msgid "Edit chart data"
msgstr ""
-#. G9*d
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2543,7 +2276,6 @@ msgctxt ""
msgid "Legend on/off"
msgstr ""
-#. ms!r
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2552,7 +2284,6 @@ msgctxt ""
msgid "Horizontal grid on/off"
msgstr ""
-#. zxjI
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2561,7 +2292,6 @@ msgctxt ""
msgid "Scale Text"
msgstr ""
-#. ]oB2
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2570,7 +2300,6 @@ msgctxt ""
msgid "Automatic Layout"
msgstr ""
-#. 1Gan
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2579,7 +2308,6 @@ msgctxt ""
msgid "This function cannot be completed with the selected objects."
msgstr ""
-#. KLJ:
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2588,7 +2316,6 @@ msgctxt ""
msgid "Edit text"
msgstr ""
-#. zNY4
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2597,7 +2324,6 @@ msgctxt ""
msgid "Column %COLUMNNUMBER"
msgstr ""
-#. 23K3
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2606,7 +2332,6 @@ msgctxt ""
msgid "Row %ROWNUMBER"
msgstr ""
-#. S=*e
#: Strings.src
#, fuzzy
msgctxt ""
@@ -2616,7 +2341,6 @@ msgctxt ""
msgid "Name"
msgstr "~نام"
-#. $=l!
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2625,7 +2349,6 @@ msgctxt ""
msgid "X-Values"
msgstr ""
-#. $f\y
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2634,7 +2357,6 @@ msgctxt ""
msgid "Y-Values"
msgstr ""
-#. I[7E
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2643,7 +2365,6 @@ msgctxt ""
msgid "Bubble Sizes"
msgstr ""
-#. q(j;
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2652,7 +2373,6 @@ msgctxt ""
msgid "X-Error-Bars"
msgstr ""
-#. lrQ\
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2661,7 +2381,6 @@ msgctxt ""
msgid "Positive X-Error-Bars"
msgstr ""
-#. QFp(
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2670,7 +2389,6 @@ msgctxt ""
msgid "Negative X-Error-Bars"
msgstr ""
-#. imSO
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2679,7 +2397,6 @@ msgctxt ""
msgid "Y-Error-Bars"
msgstr ""
-#. `UFh
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2688,7 +2405,6 @@ msgctxt ""
msgid "Positive Y-Error-Bars"
msgstr ""
-#. l@)o
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2697,7 +2413,6 @@ msgctxt ""
msgid "Negative Y-Error-Bars"
msgstr ""
-#. ],hv
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2706,7 +2421,6 @@ msgctxt ""
msgid "Open Values"
msgstr ""
-#. B*OJ
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2715,7 +2429,6 @@ msgctxt ""
msgid "Close Values"
msgstr ""
-#. i3VT
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2724,7 +2437,6 @@ msgctxt ""
msgid "Low Values"
msgstr ""
-#. cD^v
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2733,7 +2445,6 @@ msgctxt ""
msgid "High Values"
msgstr ""
-#. ;-Ya
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2742,7 +2453,6 @@ msgctxt ""
msgid "Categories"
msgstr ""
-#. IZBn
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2751,7 +2461,6 @@ msgctxt ""
msgid "Unnamed Series"
msgstr ""
-#. ~O0Z
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2760,7 +2469,6 @@ msgctxt ""
msgid "Unnamed Series %NUMBER"
msgstr ""
-#. |QKQ
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2769,7 +2477,6 @@ msgctxt ""
msgid "Select Range for %VALUETYPE of %SERIESNAME"
msgstr ""
-#. x!Se
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2778,7 +2485,6 @@ msgctxt ""
msgid "Select Range for Categories"
msgstr ""
-#. m3}R
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2787,7 +2493,6 @@ msgctxt ""
msgid "Select Range for data labels"
msgstr ""
-#. RJb?
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2796,7 +2501,6 @@ msgctxt ""
msgid "Select Range for Positive Error Bars"
msgstr ""
-#. `C$+
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2805,7 +2509,6 @@ msgctxt ""
msgid "Select Range for Negative Error Bars"
msgstr ""
-#. ?E$Z
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2816,7 +2519,6 @@ msgid ""
"Ignore this change and close the dialog?"
msgstr ""
-#. nCOv
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2825,7 +2527,6 @@ msgctxt ""
msgid "Left-to-right"
msgstr ""
-#. $kId
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2834,7 +2535,6 @@ msgctxt ""
msgid "Right-to-left"
msgstr ""
-#. S`BX
#: Strings.src
msgctxt ""
"Strings.src\n"
@@ -2843,7 +2543,6 @@ msgctxt ""
msgid "Use superordinate object settings"
msgstr ""
-#. rckm
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2853,7 +2552,6 @@ msgctxt ""
msgid "Axis line"
msgstr ""
-#. SD6X
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2863,7 +2561,6 @@ msgctxt ""
msgid "~Cross other axis at"
msgstr ""
-#. c9cc
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2873,7 +2570,6 @@ msgctxt ""
msgid "Start"
msgstr ""
-#. YVFb
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2883,7 +2579,6 @@ msgctxt ""
msgid "End"
msgstr ""
-#. Hw.^
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2893,7 +2588,6 @@ msgctxt ""
msgid "Value"
msgstr "قیمت"
-#. +-{(
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2903,7 +2597,6 @@ msgctxt ""
msgid "Category"
msgstr ""
-#. ~`FW
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2913,7 +2606,6 @@ msgctxt ""
msgid "Axis ~between categories"
msgstr ""
-#. LY7z
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2923,7 +2615,6 @@ msgctxt ""
msgid "Labels"
msgstr ""
-#. 8[W:
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2933,7 +2624,6 @@ msgctxt ""
msgid "~Place labels"
msgstr ""
-#. D[s0
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2943,7 +2633,6 @@ msgctxt ""
msgid "Near axis"
msgstr ""
-#. S%S2
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2953,7 +2642,6 @@ msgctxt ""
msgid "Near axis (other side)"
msgstr ""
-#. 1Qec
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2963,7 +2651,6 @@ msgctxt ""
msgid "Outside start"
msgstr ""
-#. %t1}
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2973,7 +2660,6 @@ msgctxt ""
msgid "Outside end"
msgstr ""
-#. QN1h
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2983,7 +2669,6 @@ msgctxt ""
msgid "~Distance"
msgstr ""
-#. mPyG
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -2993,7 +2678,6 @@ msgctxt ""
msgid "Interval marks"
msgstr ""
-#. /VJ\
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3003,7 +2687,6 @@ msgctxt ""
msgid "Major:"
msgstr ""
-#. t^2?
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3013,7 +2696,6 @@ msgctxt ""
msgid "~Inner"
msgstr ""
-#. ~FK?
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3023,7 +2705,6 @@ msgctxt ""
msgid "~Outer"
msgstr ""
-#. @~-@
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3033,7 +2714,6 @@ msgctxt ""
msgid "Minor:"
msgstr ""
-#. 3/jC
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3043,7 +2723,6 @@ msgctxt ""
msgid "I~nner"
msgstr ""
-#. q[lj
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3053,7 +2732,6 @@ msgctxt ""
msgid "O~uter"
msgstr ""
-#. -O43
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3063,7 +2741,6 @@ msgctxt ""
msgid "Place ~marks"
msgstr ""
-#. jiQk
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3073,7 +2750,6 @@ msgctxt ""
msgid "At labels"
msgstr ""
-#. V3YC
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3083,7 +2759,6 @@ msgctxt ""
msgid "At axis"
msgstr ""
-#. 8E8C
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3093,7 +2768,6 @@ msgctxt ""
msgid "At axis and labels"
msgstr ""
-#. ;!Z4
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3103,7 +2777,6 @@ msgctxt ""
msgid "Grids"
msgstr ""
-#. XP5Z
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3113,7 +2786,6 @@ msgctxt ""
msgid "Show major ~grid"
msgstr ""
-#. /pjH
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3123,7 +2795,6 @@ msgctxt ""
msgid "Mo~re..."
msgstr ""
-#. 3LQ!
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3133,7 +2804,6 @@ msgctxt ""
msgid "~Show minor grid"
msgstr ""
-#. ZpxH
#: tp_AxisPositions.src
msgctxt ""
"tp_AxisPositions.src\n"
@@ -3143,7 +2813,6 @@ msgctxt ""
msgid "Mor~e..."
msgstr ""
-#. =[g1
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3153,7 +2822,6 @@ msgctxt ""
msgid "Standard Error"
msgstr ""
-#. hiJ@
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3163,7 +2831,6 @@ msgctxt ""
msgid "Standard Deviation"
msgstr ""
-#. ;Hm,
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3173,7 +2840,6 @@ msgctxt ""
msgid "Variance"
msgstr ""
-#. D]IP
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3183,7 +2849,6 @@ msgctxt ""
msgid "Error Margin"
msgstr ""
-#. ,[ic
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3193,7 +2858,6 @@ msgctxt ""
msgid "Error Category"
msgstr ""
-#. |Bzt
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3203,7 +2867,6 @@ msgctxt ""
msgid "~None"
msgstr ""
-#. (T]f
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3213,7 +2876,6 @@ msgctxt ""
msgid "~Constant Value"
msgstr ""
-#. 21lr
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3223,7 +2885,6 @@ msgctxt ""
msgid "~Percentage"
msgstr ""
-#. 40%j
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3233,7 +2894,6 @@ msgctxt ""
msgid "Cell ~Range"
msgstr ""
-#. ;Mat
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3243,7 +2903,6 @@ msgctxt ""
msgid "Parameters"
msgstr ""
-#. [9VJ
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3253,7 +2912,6 @@ msgctxt ""
msgid "P~ositive (+)"
msgstr ""
-#. 1,gt
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3263,7 +2921,6 @@ msgctxt ""
msgid "~Negative (-)"
msgstr ""
-#. LUUh
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3273,7 +2930,6 @@ msgctxt ""
msgid "Same value for both"
msgstr ""
-#. Fj-Q
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3283,7 +2939,6 @@ msgctxt ""
msgid "Error Indicator"
msgstr ""
-#. cl0H
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3293,7 +2948,6 @@ msgctxt ""
msgid "Positive ~and Negative"
msgstr ""
-#. _eU_
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3303,7 +2957,6 @@ msgctxt ""
msgid "Pos~itive"
msgstr ""
-#. FS4-
#: res_ErrorBar_tmpl.hrc
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
@@ -3313,7 +2966,6 @@ msgctxt ""
msgid "Ne~gative"
msgstr ""
-#. 5KHP
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3323,7 +2975,6 @@ msgctxt ""
msgid "Days"
msgstr ""
-#. *u.K
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3333,7 +2984,6 @@ msgctxt ""
msgid "Months"
msgstr ""
-#. )(SQ
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3343,7 +2993,6 @@ msgctxt ""
msgid "Years"
msgstr ""
-#. ~9J`
#: tp_Scale.src
#, fuzzy
msgctxt ""
@@ -3354,7 +3003,6 @@ msgctxt ""
msgid "Scale"
msgstr "تغیر شدہ"
-#. dTXi
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3364,7 +3012,6 @@ msgctxt ""
msgid "~Reverse direction"
msgstr ""
-#. :\7L
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3374,7 +3021,6 @@ msgctxt ""
msgid "~Logarithmic scale"
msgstr ""
-#. )tli
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3384,7 +3030,6 @@ msgctxt ""
msgid "T~ype"
msgstr ""
-#. fGyk
#: tp_Scale.src
#, fuzzy
msgctxt ""
@@ -3395,7 +3040,6 @@ msgctxt ""
msgid "Automatic"
msgstr "خودکار"
-#. _1xX
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3405,7 +3049,6 @@ msgctxt ""
msgid "Text"
msgstr ""
-#. :yj^
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3415,7 +3058,6 @@ msgctxt ""
msgid "Date"
msgstr ""
-#. j%DR
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3425,7 +3067,6 @@ msgctxt ""
msgid "~Minimum"
msgstr ""
-#. #X(g
#: tp_Scale.src
#, fuzzy
msgctxt ""
@@ -3436,7 +3077,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "خودکار"
-#. V^*c
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3446,7 +3086,6 @@ msgctxt ""
msgid "Ma~ximum"
msgstr ""
-#. ez:a
#: tp_Scale.src
#, fuzzy
msgctxt ""
@@ -3457,7 +3096,6 @@ msgctxt ""
msgid "A~utomatic"
msgstr "خودکار"
-#. 52OW
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3467,7 +3105,6 @@ msgctxt ""
msgid "R~esolution"
msgstr ""
-#. vO{%
#: tp_Scale.src
#, fuzzy
msgctxt ""
@@ -3478,7 +3115,6 @@ msgctxt ""
msgid "Automat~ic"
msgstr "خودکار"
-#. CUJ9
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3488,7 +3124,6 @@ msgctxt ""
msgid "Ma~jor interval"
msgstr ""
-#. XCc[
#: tp_Scale.src
#, fuzzy
msgctxt ""
@@ -3499,7 +3134,6 @@ msgctxt ""
msgid "Au~tomatic"
msgstr "خودکار"
-#. ;r1\
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3509,7 +3143,6 @@ msgctxt ""
msgid "Minor inter~val count"
msgstr ""
-#. {bi6
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3519,7 +3152,6 @@ msgctxt ""
msgid "Minor inter~val"
msgstr ""
-#. {*X1
#: tp_Scale.src
#, fuzzy
msgctxt ""
@@ -3530,7 +3162,6 @@ msgctxt ""
msgid "Aut~omatic"
msgstr "خودکار"
-#. [;l[
#: tp_Scale.src
msgctxt ""
"tp_Scale.src\n"
@@ -3540,7 +3171,6 @@ msgctxt ""
msgid "Re~ference value"
msgstr ""
-#. =H40
#: tp_Scale.src
#, fuzzy
msgctxt ""
@@ -3551,7 +3181,6 @@ msgctxt ""
msgid "Automat~ic"
msgstr "خودکار"
-#. 6:Wa
#: res_BarGeometry.src
msgctxt ""
"res_BarGeometry.src\n"
@@ -3561,7 +3190,6 @@ msgctxt ""
msgid "Box"
msgstr ""
-#. -l2b
#: res_BarGeometry.src
msgctxt ""
"res_BarGeometry.src\n"
@@ -3571,7 +3199,6 @@ msgctxt ""
msgid "Cylinder"
msgstr ""
-#. PKtY
#: res_BarGeometry.src
msgctxt ""
"res_BarGeometry.src\n"
@@ -3581,7 +3208,6 @@ msgctxt ""
msgid "Cone"
msgstr ""
-#. 57Zr
#: res_BarGeometry.src
msgctxt ""
"res_BarGeometry.src\n"
@@ -3591,7 +3217,6 @@ msgctxt ""
msgid "Pyramid"
msgstr ""
-#. -7}K
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3601,7 +3226,6 @@ msgctxt ""
msgid "Best fit"
msgstr ""
-#. s8-Y
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3611,7 +3235,6 @@ msgctxt ""
msgid "Center"
msgstr ""
-#. bSEA
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3621,7 +3244,6 @@ msgctxt ""
msgid "Above"
msgstr ""
-#. u\_G
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3631,7 +3253,6 @@ msgctxt ""
msgid "Top left"
msgstr ""
-#. a9#w
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3641,7 +3262,6 @@ msgctxt ""
msgid "Left"
msgstr ""
-#. =-^)
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3651,7 +3271,6 @@ msgctxt ""
msgid "Bottom left"
msgstr ""
-#. i3le
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3661,7 +3280,6 @@ msgctxt ""
msgid "Below"
msgstr ""
-#. ui1O
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3671,7 +3289,6 @@ msgctxt ""
msgid "Bottom right"
msgstr ""
-#. G8,p
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3681,7 +3298,6 @@ msgctxt ""
msgid "Right"
msgstr ""
-#. DnRS
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3691,7 +3307,6 @@ msgctxt ""
msgid "Top right"
msgstr ""
-#. @A~T
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3701,7 +3316,6 @@ msgctxt ""
msgid "Inside"
msgstr ""
-#. Ub2P
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3711,7 +3325,6 @@ msgctxt ""
msgid "Outside"
msgstr ""
-#. ^q^+
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3721,7 +3334,6 @@ msgctxt ""
msgid "Near origin"
msgstr ""
-#. r(m@
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3731,7 +3343,6 @@ msgctxt ""
msgid "Show value as ~number"
msgstr ""
-#. 1j\s
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3741,7 +3352,6 @@ msgctxt ""
msgid "Number ~format..."
msgstr ""
-#. b5UV
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3751,7 +3361,6 @@ msgctxt ""
msgid "Show value as ~percentage"
msgstr ""
-#. kGL.
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3761,7 +3370,6 @@ msgctxt ""
msgid "Percentage f~ormat..."
msgstr ""
-#. Hgqq
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3771,7 +3379,6 @@ msgctxt ""
msgid "Show ~category"
msgstr ""
-#. =L9T
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3781,7 +3388,6 @@ msgctxt ""
msgid "Show ~legend key"
msgstr ""
-#. V0kj
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3791,7 +3397,6 @@ msgctxt ""
msgid "Place~ment"
msgstr ""
-#. HUEL
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3801,7 +3406,6 @@ msgctxt ""
msgid "Rotate Text"
msgstr ""
-#. ;\$8
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3811,7 +3415,6 @@ msgctxt ""
msgid "~Degrees"
msgstr ""
-#. 4#_y
#: res_DataLabel_tmpl.hrc
msgctxt ""
"res_DataLabel_tmpl.hrc\n"
@@ -3821,7 +3424,6 @@ msgctxt ""
msgid "Te~xt direction"
msgstr ""
-#. ng[|
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3831,7 +3433,6 @@ msgctxt ""
msgid "Align data series to"
msgstr ""
-#. ~_SB
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3841,7 +3442,6 @@ msgctxt ""
msgid "Primary Y axis"
msgstr ""
-#. _zJy
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3851,7 +3451,6 @@ msgctxt ""
msgid "Secondary Y axis"
msgstr ""
-#. XQNr
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3861,7 +3460,6 @@ msgctxt ""
msgid "Settings"
msgstr ""
-#. KMAa
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3871,7 +3469,6 @@ msgctxt ""
msgid "~Overlap"
msgstr ""
-#. p1=I
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3881,7 +3478,6 @@ msgctxt ""
msgid "~Spacing"
msgstr ""
-#. Z[1D
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3891,7 +3487,6 @@ msgctxt ""
msgid "Connection lines"
msgstr ""
-#. 0*o)
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3901,7 +3496,6 @@ msgctxt ""
msgid "Show ~bars side by side"
msgstr ""
-#. QK3f
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3911,7 +3505,6 @@ msgctxt ""
msgid "Plot options"
msgstr ""
-#. |\AV
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3921,7 +3514,6 @@ msgctxt ""
msgid "Plot missing values"
msgstr ""
-#. #96`
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3931,7 +3523,6 @@ msgctxt ""
msgid "~Leave gap"
msgstr ""
-#. um\c
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3941,7 +3532,6 @@ msgctxt ""
msgid "~Assume zero"
msgstr ""
-#. ATS2
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3951,7 +3541,6 @@ msgctxt ""
msgid "~Continue line"
msgstr ""
-#. _SmQ
#: tp_SeriesToAxis.src
msgctxt ""
"tp_SeriesToAxis.src\n"
@@ -3961,7 +3550,6 @@ msgctxt ""
msgid "Include ~values from hidden cells"
msgstr ""
-#. ]ma^
#: tp_Wizard_TitlesAndObjects.src
msgctxt ""
"tp_Wizard_TitlesAndObjects.src\n"
@@ -3971,7 +3559,6 @@ msgctxt ""
msgid "Choose titles, legend, and grid settings"
msgstr ""
-#. @8D|
#: tp_Wizard_TitlesAndObjects.src
msgctxt ""
"tp_Wizard_TitlesAndObjects.src\n"
diff --git a/source/ur/connectivity/registry/ado/org/openoffice/Office/DataAccess.po b/source/ur/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
index 1371daa4d09..699a180b2b3 100644
--- a/source/ur/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
+++ b/source/ur/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ALWO
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "ADO"
msgstr ""
-#. =/ma
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "Microsoft Access"
msgstr ""
-#. NuVU
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ur/connectivity/registry/calc/org/openoffice/Office/DataAccess.po b/source/ur/connectivity/registry/calc/org/openoffice/Office/DataAccess.po
index bc8a2eb8bf7..20ba3bb5da3 100644
--- a/source/ur/connectivity/registry/calc/org/openoffice/Office/DataAccess.po
+++ b/source/ur/connectivity/registry/calc/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. :[M$
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ur/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po b/source/ur/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po
index 89a02658ee9..8cfdfbd079d 100644
--- a/source/ur/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po
+++ b/source/ur/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. +A^i
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ur/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po b/source/ur/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po
index eb74688b7e1..1426087689a 100644
--- a/source/ur/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po
+++ b/source/ur/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Tc`~
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Evolution Local"
msgstr ""
-#. hK7\
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "Evolution LDAP"
msgstr ""
-#. kWa#
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ur/connectivity/registry/flat/org/openoffice/Office/DataAccess.po b/source/ur/connectivity/registry/flat/org/openoffice/Office/DataAccess.po
index 51e58392f61..8dc56232f73 100644
--- a/source/ur/connectivity/registry/flat/org/openoffice/Office/DataAccess.po
+++ b/source/ur/connectivity/registry/flat/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. LIZi
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ur/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po b/source/ur/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po
index d62018a1961..baca2220732 100644
--- a/source/ur/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po
+++ b/source/ur/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. B1h3
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ur/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po b/source/ur/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po
index f87f8f8c08e..bd86f3e8700 100644
--- a/source/ur/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po
+++ b/source/ur/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 2wEV
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "JDBC"
msgstr ""
-#. 73*p
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ur/connectivity/registry/kab/org/openoffice/Office/DataAccess.po b/source/ur/connectivity/registry/kab/org/openoffice/Office/DataAccess.po
index 4f5dac9abf4..4652f59c3b3 100644
--- a/source/ur/connectivity/registry/kab/org/openoffice/Office/DataAccess.po
+++ b/source/ur/connectivity/registry/kab/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 6J-U
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ur/connectivity/registry/macab/org/openoffice/Office/DataAccess.po b/source/ur/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
index 77aae4e3ec4..47a739937c1 100644
--- a/source/ur/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
+++ b/source/ur/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. KR!^
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ur/connectivity/registry/mork/org/openoffice/Office/DataAccess.po b/source/ur/connectivity/registry/mork/org/openoffice/Office/DataAccess.po
index 0e924ead289..b0b151b2a2d 100644
--- a/source/ur/connectivity/registry/mork/org/openoffice/Office/DataAccess.po
+++ b/source/ur/connectivity/registry/mork/org/openoffice/Office/DataAccess.po
@@ -1,10 +1,9 @@
#. extracted from connectivity/registry/mork/org/openoffice/Office/DataAccess
-#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\n"
"PO-Revision-Date: 2012-02-16 15:38+0200\n"
"Last-Translator: Yasir <urdulizer@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Glo9
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ur/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po b/source/ur/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po
index 33858f56da6..bc4e6ab218d 100644
--- a/source/ur/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po
+++ b/source/ur/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Br*`
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Microsoft Outlook Address Book"
msgstr ""
-#. [/:1
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "Microsoft Windows Address Book"
msgstr ""
-#. %2[M
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "SeaMonkey Address Book"
msgstr ""
-#. 54[^
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "Thunderbird/Icedove Address Book"
msgstr ""
-#. zqSc
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ur/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po b/source/ur/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
index ab00eff7de4..ad74a034c3a 100644
--- a/source/ur/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
+++ b/source/ur/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. (_UU
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "MySQL (JDBC)"
msgstr ""
-#. ORu8
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "MySQL (ODBC)"
msgstr ""
-#. bwU]
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ur/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po b/source/ur/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po
index 1c12c8b1361..bb2de5afb61 100644
--- a/source/ur/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po
+++ b/source/ur/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. FkM2
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ur/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po b/source/ur/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po
index 4874f4f1fae..968e2a0c303 100644
--- a/source/ur/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po
+++ b/source/ur/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Ckhc
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ur/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po b/source/ur/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po
index 90191a6297f..a7af0adbf64 100644
--- a/source/ur/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po
+++ b/source/ur/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 4\P|
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
diff --git a/source/ur/connectivity/source/resource.po b/source/ur/connectivity/source/resource.po
index cd825df8a1a..6af3f705351 100644
--- a/source/ur/connectivity/source/resource.po
+++ b/source/ur/connectivity/source/resource.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -15,7 +15,6 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
#. This must be the term referring to address books in the user's Mozilla/Seamonkey profile in the system.
-#. a,YE
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -25,7 +24,6 @@ msgid "Mozilla/Seamonkey Addressbook Directory"
msgstr ""
#. This must be the term referring to address books in the user's Thunderbird profile in the system.
-#. GH!r
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "Thunderbird Addressbook Directory"
msgstr ""
-#. $Ihk
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -43,7 +40,6 @@ msgctxt ""
msgid "Outlook Express Addressbook"
msgstr ""
-#. @KYo
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -52,7 +48,6 @@ msgctxt ""
msgid "Outlook (MAPI) Addressbook"
msgstr ""
-#. HEsi
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -61,7 +56,6 @@ msgctxt ""
msgid "Creating tables is not supported for this kind of address books."
msgstr ""
-#. +$$T
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -70,7 +64,6 @@ msgctxt ""
msgid "Cannot create new address books while Mozilla is running."
msgstr ""
-#. u+vQ
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -79,7 +72,6 @@ msgctxt ""
msgid "An address book entry could not be retrieved, an unknown error occurred."
msgstr ""
-#. mY;=
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -88,7 +80,6 @@ msgctxt ""
msgid "An address book directory name could not be retrieved, an unknown error occurred."
msgstr ""
-#. Ux%b
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -97,7 +88,6 @@ msgctxt ""
msgid "Timed out while waiting for the result."
msgstr ""
-#. yaqt
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -106,7 +96,6 @@ msgctxt ""
msgid "An error occurred while executing the query."
msgstr ""
-#. P3*D
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -115,7 +104,6 @@ msgctxt ""
msgid "You can't make any changes to mozilla address book when mozilla is running."
msgstr ""
-#. `d;g
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -124,7 +112,6 @@ msgctxt ""
msgid "Mozilla Address Book has been changed out of this process, we can't modify it in this condition."
msgstr ""
-#. RrJO
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -133,7 +120,6 @@ msgctxt ""
msgid "Can't find the requested row."
msgstr ""
-#. TAhb
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -142,7 +128,6 @@ msgctxt ""
msgid "Can't find the card for the requested row."
msgstr ""
-#. /Wy+
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -151,7 +136,6 @@ msgctxt ""
msgid "The query can not be executed. It needs at least one table."
msgstr ""
-#. 1W%h
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -160,7 +144,6 @@ msgctxt ""
msgid "The driver does not support the 'COUNT' function."
msgstr ""
-#. $@ms
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -169,7 +152,6 @@ msgctxt ""
msgid "This statement type not supported by this database driver."
msgstr ""
-#. EL7J
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -178,7 +160,6 @@ msgctxt ""
msgid "An unknown error occurred."
msgstr ""
-#. @3sw
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -187,7 +168,6 @@ msgctxt ""
msgid "Could not create a new address book. Mozilla error code is $1$."
msgstr ""
-#. `0Um
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -196,7 +176,6 @@ msgctxt ""
msgid "The library '$libname$' could not be loaded."
msgstr ""
-#. +MQ~
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -205,7 +184,6 @@ msgctxt ""
msgid "An error occurred while refreshing the current row."
msgstr ""
-#. NMzi
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -214,7 +192,6 @@ msgctxt ""
msgid "An error occurred while getting the current row."
msgstr ""
-#. OSgY
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -223,7 +200,6 @@ msgctxt ""
msgid "The row update can not be canceled."
msgstr ""
-#. cW9u
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -232,7 +208,6 @@ msgctxt ""
msgid "A new row can not be created."
msgstr ""
-#. $E$+
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -241,7 +216,6 @@ msgctxt ""
msgid "The query can not be executed. The 'IS NULL' can only be used with a column name."
msgstr ""
-#. Fb]K
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -250,7 +224,6 @@ msgctxt ""
msgid "Illegal cursor movement occurred."
msgstr ""
-#. 23.f
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -259,7 +232,6 @@ msgctxt ""
msgid "Please commit row '$position$' before update rows or insert new rows."
msgstr ""
-#. ;4ia
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -268,7 +240,6 @@ msgctxt ""
msgid "The update call can not be executed. The row is invalid."
msgstr ""
-#. =+Aj
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -277,7 +248,6 @@ msgctxt ""
msgid "The current row can not be saved."
msgstr ""
-#. Q%m0
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -286,7 +256,6 @@ msgctxt ""
msgid "No hostname was provided."
msgstr ""
-#. R^[G
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -295,7 +264,6 @@ msgctxt ""
msgid "No Base DN was provided."
msgstr ""
-#. |cpH
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -304,7 +272,6 @@ msgctxt ""
msgid "The connection to the LDAP server could not be established."
msgstr ""
-#. o-5b
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -313,7 +280,6 @@ msgctxt ""
msgid "It doesn't exist a connection to the database."
msgstr ""
-#. KDhr
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -322,7 +288,6 @@ msgctxt ""
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 ""
-#. yvZX
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -331,7 +296,6 @@ msgctxt ""
msgid "End of InputStream reached before satisfying length specified when InputStream was set."
msgstr ""
-#. #Wb^
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -340,7 +304,6 @@ msgctxt ""
msgid "The input stream was not set."
msgstr ""
-#. :KKT
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -349,7 +312,6 @@ msgctxt ""
msgid "There is no element named '$name$'."
msgstr ""
-#. ;HCE
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -358,7 +320,6 @@ msgctxt ""
msgid "Invalid bookmark value"
msgstr ""
-#. (FRl
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -367,7 +328,6 @@ msgctxt ""
msgid "Privilege not granted: Only table privileges can be granted."
msgstr ""
-#. DeN#
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -376,7 +336,6 @@ msgctxt ""
msgid "Privilege not revoked: Only table privileges can be revoked."
msgstr ""
-#. ;H!L
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -385,7 +344,6 @@ msgctxt ""
msgid "The column name '$columnname$' is unknown."
msgstr ""
-#. N7LX
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -394,7 +352,6 @@ msgctxt ""
msgid "Function sequence error."
msgstr ""
-#. xmW\
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -403,7 +360,6 @@ msgctxt ""
msgid "Invalid descriptor index."
msgstr ""
-#. kM=T
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -412,7 +368,6 @@ msgctxt ""
msgid "The driver does not support the function '$functionname$'."
msgstr ""
-#. 7iBd
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -421,7 +376,6 @@ msgctxt ""
msgid "The driver does not support the functionality for '$featurename$'. It is not implemented."
msgstr ""
-#. E0Xc
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -430,7 +384,6 @@ msgctxt ""
msgid "The formula for TypeInfoSettings is wrong!"
msgstr ""
-#. ;#iF
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -439,7 +392,6 @@ msgctxt ""
msgid "The string '$string$' exceeds the maximum length of $maxlen$ characters when converted to the target character set '$charset$'."
msgstr ""
-#. Jb4D
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -448,7 +400,6 @@ msgctxt ""
msgid "The string '$string$' cannot be converted using the encoding '$charset$'."
msgstr ""
-#. DMWV
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -457,7 +408,6 @@ msgctxt ""
msgid "The connection URL is invalid."
msgstr ""
-#. 84as
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -466,7 +416,6 @@ msgctxt ""
msgid "The query can not be executed. It is too complex."
msgstr ""
-#. !w]^
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -475,7 +424,6 @@ msgctxt ""
msgid "The query can not be executed. The operator is too complex."
msgstr ""
-#. !=}r
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -484,7 +432,6 @@ msgctxt ""
msgid "The query can not be executed. You cannot use 'LIKE' with columns of this type."
msgstr ""
-#. k1,7
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -493,7 +440,6 @@ msgctxt ""
msgid "The query can not be executed. 'LIKE' can be used with a string argument only."
msgstr ""
-#. V(Tp
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -502,7 +448,6 @@ msgctxt ""
msgid "The query can not be executed. The 'NOT LIKE' condition is too complex."
msgstr ""
-#. NizQ
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -511,7 +456,6 @@ msgctxt ""
msgid "The query can not be executed. The 'LIKE' condition contains wildcard in the middle."
msgstr ""
-#. Zp#N
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -520,7 +464,6 @@ msgctxt ""
msgid "The query can not be executed. The 'LIKE' condition contains too many wildcards."
msgstr ""
-#. t@2d
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -529,7 +472,6 @@ msgctxt ""
msgid "The column name '$columnname$' is not valid."
msgstr ""
-#. [EUN
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -538,7 +480,6 @@ msgctxt ""
msgid "The statement contains an invalid selection of columns."
msgstr ""
-#. bW^]
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -547,7 +488,6 @@ msgctxt ""
msgid "The column at position '$position$' could not be updated."
msgstr ""
-#. 7JGA
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -556,7 +496,6 @@ msgctxt ""
msgid "The file $filename$ could not be loaded."
msgstr ""
-#. blWo
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -568,7 +507,6 @@ msgid ""
"$error_message$"
msgstr ""
-#. pcTO
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -577,7 +515,6 @@ msgctxt ""
msgid "The type could not be converted."
msgstr ""
-#. @l*(
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -586,7 +523,6 @@ msgctxt ""
msgid "Could not append column: invalid column descriptor."
msgstr ""
-#. MtK~
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -595,7 +531,6 @@ msgctxt ""
msgid "Could not create group: invalid object descriptor."
msgstr ""
-#. WOm(
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -604,7 +539,6 @@ msgctxt ""
msgid "Could not create index: invalid object descriptor."
msgstr ""
-#. ^3J2
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -613,7 +547,6 @@ msgctxt ""
msgid "Could not create key: invalid object descriptor."
msgstr ""
-#. U-bq
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -622,7 +555,6 @@ msgctxt ""
msgid "Could not create table: invalid object descriptor."
msgstr ""
-#. b1dt
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -631,7 +563,6 @@ msgctxt ""
msgid "Could not create user: invalid object descriptor."
msgstr ""
-#. (L0,
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -640,7 +571,6 @@ msgctxt ""
msgid "Could not create view: invalid object descriptor."
msgstr ""
-#. 7|fo
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -649,7 +579,6 @@ msgctxt ""
msgid "Could not create view: no command object."
msgstr ""
-#. q4w0
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -658,7 +587,6 @@ msgctxt ""
msgid "The connection could not be created. May be the necessary data provider is not installed."
msgstr ""
-#. ?4_.
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -667,7 +595,6 @@ msgctxt ""
msgid "The index could not be deleted. An unknown error while accessing the file system occurred."
msgstr ""
-#. nBp5
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -676,7 +603,6 @@ msgctxt ""
msgid "The index could not be created. Only one column per index is allowed."
msgstr ""
-#. Q+[N
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -685,7 +611,6 @@ msgctxt ""
msgid "The index could not be created. The values are not unique."
msgstr ""
-#. `g]A
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -694,7 +619,6 @@ msgctxt ""
msgid "The index could not be created. An unknown error appeared."
msgstr ""
-#. n2d9
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -703,7 +627,6 @@ msgctxt ""
msgid "The index could not be created. The file '$filename$' is used by an other index."
msgstr ""
-#. @84P
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -712,7 +635,6 @@ msgctxt ""
msgid "The index could not be created. The size of the chosen column is to big."
msgstr ""
-#. }+.?
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -721,7 +643,6 @@ msgctxt ""
msgid "The name '$name$' doesn't match SQL naming constraints."
msgstr ""
-#. 9^!2
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -730,7 +651,6 @@ msgctxt ""
msgid "The file $filename$ could not be deleted."
msgstr ""
-#. 6z@%
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -739,7 +659,6 @@ msgctxt ""
msgid "Invalid column type for column '$columnname$'."
msgstr ""
-#. nGQz
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -748,7 +667,6 @@ msgctxt ""
msgid "Invalid precision for column '$columnname$'."
msgstr ""
-#. EZe!
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -757,7 +675,6 @@ msgctxt ""
msgid "Precision is less than scale for column '$columnname$'."
msgstr ""
-#. 9oP9
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -766,7 +683,6 @@ msgctxt ""
msgid "Invalid column name length for column '$columnname$'."
msgstr ""
-#. q00K
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -775,7 +691,6 @@ msgctxt ""
msgid "Duplicate value found in column '$columnname$'."
msgstr ""
-#. X(VT
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -787,7 +702,6 @@ msgid ""
"The specified value \"$value$ is longer than the number of digits allowed."
msgstr ""
-#. p${!
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -796,7 +710,6 @@ msgctxt ""
msgid "The column '$columnname$' could not be altered. May be the file system is write protected."
msgstr ""
-#. ]j@H
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -805,7 +718,6 @@ msgctxt ""
msgid "The column '$columnname$' could not be updated. The value is invalid for that column."
msgstr ""
-#. uj.0
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -814,7 +726,6 @@ msgctxt ""
msgid "The column '$columnname$' could not be added. May be the file system is write protected."
msgstr ""
-#. m7a$
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -823,7 +734,6 @@ msgctxt ""
msgid "The column at position '$position$' could not be dropped. May be the file system is write protected."
msgstr ""
-#. :c@#
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -832,7 +742,6 @@ msgctxt ""
msgid "The table '$tablename$' could not be dropped. May be the file system is write protected."
msgstr ""
-#. u)|,
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -841,7 +750,6 @@ msgctxt ""
msgid "The table could not be altered."
msgstr ""
-#. oY{3
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -850,7 +758,6 @@ msgctxt ""
msgid "The file '$filename$' is an invalid (or unrecognized) dBase file."
msgstr ""
-#. Dk63
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -859,7 +766,6 @@ msgctxt ""
msgid "Cannot open Evolution address book."
msgstr ""
-#. Mg+@
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -868,7 +774,6 @@ msgctxt ""
msgid "Can only sort by table columns."
msgstr ""
-#. km~f
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -877,7 +782,6 @@ msgctxt ""
msgid "The query can not be executed. It is too complex. Only \"COUNT(*)\" is supported."
msgstr ""
-#. =nFX
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -886,7 +790,6 @@ msgctxt ""
msgid "The query can not be executed. The 'BETWEEN' arguments are not correct."
msgstr ""
-#. -}C%
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -895,7 +798,6 @@ msgctxt ""
msgid "The query can not be executed. The function is not supported."
msgstr ""
-#. $jt2
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -904,7 +806,6 @@ msgctxt ""
msgid "The table can not be changed. It is read only."
msgstr ""
-#. 0b)4
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -913,7 +814,6 @@ msgctxt ""
msgid "The row could not be deleted. The option \"Display inactive records\" is set."
msgstr ""
-#. )y.K
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -922,7 +822,6 @@ msgctxt ""
msgid "The row could not be deleted. It is already deleted."
msgstr ""
-#. #l*3
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -931,7 +830,6 @@ msgctxt ""
msgid "The query can not be executed. It contains more than one table."
msgstr ""
-#. =rQW
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -940,7 +838,6 @@ msgctxt ""
msgid "The query can not be executed. It contains no valid table."
msgstr ""
-#. Hkkg
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -949,7 +846,6 @@ msgctxt ""
msgid "The query can not be executed. It contains no valid columns."
msgstr ""
-#. j$,Q
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -958,7 +854,6 @@ msgctxt ""
msgid "The count of the given parameter values doesn't match the parameters."
msgstr ""
-#. $BfU
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -967,7 +862,6 @@ msgctxt ""
msgid "The URL '$URL$' is not valid. A connection can not be created."
msgstr ""
-#. 6.QN
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -976,7 +870,6 @@ msgctxt ""
msgid "The driver class '$classname$' could not be loaded."
msgstr ""
-#. shWj
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -985,7 +878,6 @@ msgctxt ""
msgid "No Java installation could be found. Please check your installation."
msgstr ""
-#. 6m3%
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -994,7 +886,6 @@ msgctxt ""
msgid "The execution of the query doesn't return a valid result set."
msgstr ""
-#. 2Lf)
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1003,7 +894,6 @@ msgctxt ""
msgid "The execution of the update statement doesn't effect any rows."
msgstr ""
-#. o@ek
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1012,7 +902,6 @@ msgctxt ""
msgid "The additional driver class path is '$classpath$'."
msgstr ""
-#. nw8%
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1021,7 +910,6 @@ msgctxt ""
msgid "The type of parameter at position '$position$' is unknown."
msgstr ""
-#. )YD2
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1030,7 +918,6 @@ msgctxt ""
msgid "The type of column at position '$position$' is unknown."
msgstr ""
-#. :lOr
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1039,7 +926,6 @@ msgctxt ""
msgid "No suitable KDE installation was found."
msgstr ""
-#. kc(d
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1048,7 +934,6 @@ msgctxt ""
msgid "KDE version $major$.$minor$ or higher is required to access the KDE Address Book."
msgstr ""
-#. mO]c
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1057,7 +942,6 @@ msgctxt ""
msgid "The found KDE version is too new. Only KDE up to version $major$.$minor$ is known to work with this product.\n"
msgstr ""
-#. p0jK
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1068,7 +952,6 @@ msgid ""
"\n"
msgstr ""
-#. ^EJF
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1077,7 +960,6 @@ msgctxt ""
msgid "Parameters can appear only in prepared statements."
msgstr ""
-#. s-^1
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1086,7 +968,6 @@ msgctxt ""
msgid "No such table!"
msgstr ""
-#. nSH:
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1095,7 +976,6 @@ msgctxt ""
msgid "No suitable Mac OS installation was found."
msgstr ""
-#. =qP1
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1104,7 +984,6 @@ msgctxt ""
msgid "The connection can not be established. No storage or URL was given."
msgstr ""
-#. jzB,
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1113,7 +992,6 @@ msgctxt ""
msgid "The given URL contains no valid local file system path. Please check the location of your database file."
msgstr ""
-#. )?4o
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1122,7 +1000,6 @@ msgctxt ""
msgid "An error occurred while obtaining the connection's table container."
msgstr ""
-#. (05j
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1131,7 +1008,6 @@ msgctxt ""
msgid "An error occurred while creating the table editor dialog."
msgstr ""
-#. Kh;I
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1140,7 +1016,6 @@ msgctxt ""
msgid "There is no table named '$tablename$'."
msgstr ""
-#. tx_=
#: conn_shared_res.src
msgctxt ""
"conn_shared_res.src\n"
@@ -1149,7 +1024,6 @@ msgctxt ""
msgid "The provided DocumentUI is not allowed to be NULL."
msgstr ""
-#. E[k2
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1158,7 +1032,6 @@ msgctxt ""
msgid "The record operation has been vetoed."
msgstr ""
-#. bWU`
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1167,7 +1040,6 @@ msgctxt ""
msgid "The statement contains a cyclic reference to one or more sub queries."
msgstr ""
-#. 53In
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1176,7 +1048,6 @@ msgctxt ""
msgid "The name must not contain any slashes ('/')."
msgstr ""
-#. lXOt
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1185,7 +1056,6 @@ msgctxt ""
msgid "$1$ is no SQL conform identifier."
msgstr ""
-#. H52a
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1194,7 +1064,6 @@ msgctxt ""
msgid "Query names must not contain quote characters."
msgstr ""
-#. OJa/
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1203,7 +1072,6 @@ msgctxt ""
msgid "The name '$1$' is already in use in the database."
msgstr ""
-#. Dlp:
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1212,7 +1080,6 @@ msgctxt ""
msgid "No connection to the database exists."
msgstr ""
-#. zt(%
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
@@ -1221,7 +1088,6 @@ msgctxt ""
msgid "No $1$ exists."
msgstr ""
-#. @b{T
#: conn_error_message.src
msgctxt ""
"conn_error_message.src\n"
diff --git a/source/ur/cui/source/customize.po b/source/ur/cui/source/customize.po
index 101a93de01c..31b0ffdd2a1 100644
--- a/source/ur/cui/source/customize.po
+++ b/source/ur/cui/source/customize.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. j-B^
#: eventdlg.src
msgctxt ""
"eventdlg.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Event"
msgstr ""
-#. _xpn
#: eventdlg.src
msgctxt ""
"eventdlg.src\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "Assigned Action"
msgstr ""
-#. ja\n
#: eventdlg.src
msgctxt ""
"eventdlg.src\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "Save In"
msgstr ""
-#. |M9I
#: eventdlg.src
msgctxt ""
"eventdlg.src\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "Assign:"
msgstr ""
-#. uAWW
#: eventdlg.src
msgctxt ""
"eventdlg.src\n"
@@ -64,7 +59,6 @@ msgctxt ""
msgid "M~acro..."
msgstr ""
-#. $*0r
#: eventdlg.src
msgctxt ""
"eventdlg.src\n"
@@ -74,7 +68,6 @@ msgctxt ""
msgid "~Remove"
msgstr ""
-#. S8A)
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -84,7 +77,6 @@ msgctxt ""
msgid "Menus"
msgstr ""
-#. B%*x
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -94,7 +86,6 @@ msgctxt ""
msgid "Keyboard"
msgstr ""
-#. cJGx
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -104,7 +95,6 @@ msgctxt ""
msgid "Toolbars"
msgstr ""
-#. lU#W
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -114,7 +104,6 @@ msgctxt ""
msgid "Events"
msgstr ""
-#. 0wGy
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -123,7 +112,6 @@ msgctxt ""
msgid "Customize"
msgstr ""
-#. +L?G
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -132,7 +120,6 @@ msgctxt ""
msgid "Menu"
msgstr ""
-#. eR2U
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -141,7 +128,6 @@ msgctxt ""
msgid "Begin a Group"
msgstr ""
-#. b_K*
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -150,7 +136,6 @@ msgctxt ""
msgid "Rename..."
msgstr ""
-#. r%|N
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -159,7 +144,6 @@ msgctxt ""
msgid "Delete..."
msgstr ""
-#. d(`f
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -168,7 +152,6 @@ msgctxt ""
msgid "Delete"
msgstr ""
-#. L4rV
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -177,7 +160,6 @@ msgctxt ""
msgid "Move..."
msgstr ""
-#. }SVT
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -186,7 +168,6 @@ msgctxt ""
msgid "Restore Default Settings"
msgstr ""
-#. #ivo
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -195,7 +176,6 @@ msgctxt ""
msgid "Restore Default Command"
msgstr ""
-#. =DbR
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -204,7 +184,6 @@ msgctxt ""
msgid "Text only"
msgstr ""
-#. 6,\u
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -213,7 +192,6 @@ msgctxt ""
msgid "Toolbar Name"
msgstr ""
-#. 9[PA
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -222,7 +200,6 @@ msgctxt ""
msgid "Save In"
msgstr ""
-#. eXdU
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -232,7 +209,6 @@ msgctxt ""
msgid "%PRODUCTNAME %MODULENAME Menus"
msgstr ""
-#. t$1q
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -242,7 +218,6 @@ msgctxt ""
msgid "New..."
msgstr ""
-#. @~lW
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -252,7 +227,6 @@ msgctxt ""
msgid "Menu Content"
msgstr ""
-#. lic=
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -262,7 +236,6 @@ msgctxt ""
msgid "Entries"
msgstr ""
-#. ={na
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -272,7 +245,6 @@ msgctxt ""
msgid "Add..."
msgstr ""
-#. Cz(c
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -282,7 +254,6 @@ msgctxt ""
msgid "Modify"
msgstr ""
-#. VCwD
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -292,7 +263,6 @@ msgctxt ""
msgid "Description"
msgstr "وضاحت"
-#. %5;f
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -302,7 +272,6 @@ msgctxt ""
msgid "Add Submenu..."
msgstr ""
-#. l0_N
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -312,7 +281,6 @@ msgctxt ""
msgid "Icons Only"
msgstr ""
-#. T0]N
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -322,7 +290,6 @@ msgctxt ""
msgid "Icons & Text"
msgstr ""
-#. ^udJ
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -332,7 +299,6 @@ msgctxt ""
msgid "Change Icon..."
msgstr ""
-#. 7wjq
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -342,7 +308,6 @@ msgctxt ""
msgid "Reset Icon"
msgstr ""
-#. }~_]
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -351,7 +316,6 @@ msgctxt ""
msgid "New Menu %n"
msgstr ""
-#. J{=Y
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -360,7 +324,6 @@ msgctxt ""
msgid "New Toolbar %n"
msgstr ""
-#. 1~C[
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -369,7 +332,6 @@ msgctxt ""
msgid "Move Menu"
msgstr ""
-#. HII,
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -378,7 +340,6 @@ msgctxt ""
msgid "Add Submenu"
msgstr ""
-#. !6m^
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -387,7 +348,6 @@ msgctxt ""
msgid "Submenu name"
msgstr ""
-#. H]bA
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -396,7 +356,6 @@ msgctxt ""
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 ""
-#. OPXN
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -406,7 +365,6 @@ msgctxt ""
msgid "Menu name"
msgstr ""
-#. JS(w
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -416,7 +374,6 @@ msgctxt ""
msgid "Menu position"
msgstr ""
-#. -k#d
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -425,7 +382,6 @@ msgctxt ""
msgid "New Menu"
msgstr ""
-#. 4dv?
#: cfg.src
#, fuzzy
msgctxt ""
@@ -435,7 +391,6 @@ msgctxt ""
msgid "Name"
msgstr "~نام"
-#. L}y(
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -445,7 +400,6 @@ msgctxt ""
msgid "Icons"
msgstr ""
-#. .?[S
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -455,7 +409,6 @@ msgctxt ""
msgid "Import..."
msgstr ""
-#. ry*^
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -465,7 +418,6 @@ msgctxt ""
msgid "Delete..."
msgstr ""
-#. 7iIT
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -477,7 +429,6 @@ msgid ""
"The size of an icon should be 16x16 pixel to achieve best quality. Different sized icons will be scaled automatically."
msgstr ""
-#. \DF}
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -486,7 +437,6 @@ msgctxt ""
msgid "Change Icon"
msgstr ""
-#. dRXT
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -498,7 +448,6 @@ msgid ""
"The file format could not be interpreted."
msgstr ""
-#. -f4B
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -507,7 +456,6 @@ msgctxt ""
msgid "%PRODUCTNAME %PRODUCTVERSION"
msgstr ""
-#. s/P=
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -516,7 +464,6 @@ msgctxt ""
msgid "The files listed below could not be imported. The file format could not be interpreted."
msgstr ""
-#. 6?o6
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -525,7 +472,6 @@ msgctxt ""
msgid "Are you sure to delete the image?"
msgstr ""
-#. 3bqk
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -536,7 +482,6 @@ msgid ""
"Would you like to replace the existing icon?"
msgstr ""
-#. e1J_
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -545,7 +490,6 @@ msgctxt ""
msgid "Confirm Icon Replacement"
msgstr ""
-#. %\@%
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -554,7 +498,6 @@ msgctxt ""
msgid "Yes to All"
msgstr ""
-#. w#!6
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -563,7 +506,6 @@ msgctxt ""
msgid "%PRODUCTNAME %MODULENAME Toolbars"
msgstr ""
-#. ig)B
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -572,7 +514,6 @@ msgctxt ""
msgid "Toolbar"
msgstr ""
-#. Z}q6
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -581,7 +522,6 @@ msgctxt ""
msgid "Toolbar Content"
msgstr ""
-#. o\66
#: cfg.src
#, fuzzy
msgctxt ""
@@ -591,7 +531,6 @@ msgctxt ""
msgid "Commands"
msgstr "آراء"
-#. NF$r
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -600,7 +539,6 @@ msgctxt ""
msgid "Command"
msgstr ""
-#. 13cn
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -609,7 +547,6 @@ msgctxt ""
msgid "Are you sure you want to delete the '%MENUNAME' menu?"
msgstr ""
-#. naB`
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -618,7 +555,6 @@ msgctxt ""
msgid "There are no more commands on the toolbar. Do you want to delete the toolbar?"
msgstr ""
-#. #p\j
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -627,7 +563,6 @@ msgctxt ""
msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the factory settings. Do you want to continue?"
msgstr ""
-#. /TiS
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -636,7 +571,6 @@ msgctxt ""
msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the factory settings. Do you want to continue?"
msgstr ""
-#. iWEu
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -645,7 +579,6 @@ msgctxt ""
msgid "The toolbar configuration for %SAVE IN SELECTION% will be reset to the factory settings. Do you want to continue?"
msgstr ""
-#. _oP[
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -654,7 +587,6 @@ msgctxt ""
msgid "This will delete all changes previously made to this toolbar. Do you really want to reset the toolbar?"
msgstr ""
-#. Q\pG
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -663,7 +595,6 @@ msgctxt ""
msgid "Function is already included in this popup."
msgstr ""
-#. E7RS
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -672,7 +603,6 @@ msgctxt ""
msgid "~New name"
msgstr ""
-#. ^i*M
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -681,7 +611,6 @@ msgctxt ""
msgid "Rename Menu"
msgstr ""
-#. YbJA
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -690,7 +619,6 @@ msgctxt ""
msgid "Rename Toolbar"
msgstr ""
-#. jZ03
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -699,7 +627,6 @@ msgctxt ""
msgid "Up"
msgstr ""
-#. D|%U
#: cfg.src
msgctxt ""
"cfg.src\n"
@@ -708,7 +635,6 @@ msgctxt ""
msgid "Down"
msgstr ""
-#. 6/DA
#: acccfg.src
#, fuzzy
msgctxt ""
@@ -718,7 +644,6 @@ msgctxt ""
msgid "~Save..."
msgstr "~صفحہ..."
-#. [P~Y
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -727,7 +652,6 @@ msgctxt ""
msgid "R~eset"
msgstr ""
-#. Cf|1
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -736,7 +660,6 @@ msgctxt ""
msgid "~Load..."
msgstr ""
-#. HmDi
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -745,7 +668,6 @@ msgctxt ""
msgid "~Delete"
msgstr ""
-#. k8Ud
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -754,7 +676,6 @@ msgctxt ""
msgid "~Modify"
msgstr ""
-#. 2!F~
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -763,7 +684,6 @@ msgctxt ""
msgid "~New"
msgstr ""
-#. ${0m
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -772,7 +692,6 @@ msgctxt ""
msgid "~Category"
msgstr ""
-#. GiBa
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -781,7 +700,6 @@ msgctxt ""
msgid "Function"
msgstr ""
-#. Amm=
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -790,7 +708,6 @@ msgctxt ""
msgid "Functions"
msgstr ""
-#. c3f:
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -800,7 +717,6 @@ msgctxt ""
msgid "Shortcut keys"
msgstr ""
-#. ~gAl
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -810,7 +726,6 @@ msgctxt ""
msgid "~Keys"
msgstr ""
-#. q/*9
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -820,7 +735,6 @@ msgctxt ""
msgid "Load Keyboard Configuration"
msgstr ""
-#. )7Vi
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -830,7 +744,6 @@ msgctxt ""
msgid "Save Keyboard Configuration"
msgstr ""
-#. S:G]
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -840,7 +753,6 @@ msgctxt ""
msgid "Configuration"
msgstr ""
-#. ~{9d
#: acccfg.src
msgctxt ""
"acccfg.src\n"
@@ -850,7 +762,6 @@ msgctxt ""
msgid "BASIC Macros"
msgstr ""
-#. MfpT
#: acccfg.src
#, fuzzy
msgctxt ""
@@ -861,7 +772,6 @@ msgctxt ""
msgid "Styles"
msgstr "انداز:"
-#. $W23
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -871,7 +781,6 @@ msgctxt ""
msgid "Event"
msgstr ""
-#. sp!~
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -881,7 +790,6 @@ msgctxt ""
msgid "Assigned Action"
msgstr ""
-#. 7-A1
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -891,7 +799,6 @@ msgctxt ""
msgid "Assign:"
msgstr ""
-#. hQ$Q
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -901,7 +808,6 @@ msgctxt ""
msgid "M~acro..."
msgstr ""
-#. StBD
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -911,7 +817,6 @@ msgctxt ""
msgid "Com~ponent..."
msgstr ""
-#. k+F@
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -921,7 +826,6 @@ msgctxt ""
msgid "~Remove"
msgstr ""
-#. wO#o
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -930,7 +834,6 @@ msgctxt ""
msgid "Assign action"
msgstr ""
-#. }ncg
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -940,7 +843,6 @@ msgctxt ""
msgid "Component method name"
msgstr ""
-#. s\`/
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -949,7 +851,6 @@ msgctxt ""
msgid "Assign Component"
msgstr ""
-#. dLYQ
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -958,7 +859,6 @@ msgctxt ""
msgid "Start Application"
msgstr ""
-#. v2d[
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -967,7 +867,6 @@ msgctxt ""
msgid "Close Application"
msgstr ""
-#. %H!x
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -976,7 +875,6 @@ msgctxt ""
msgid "New Document"
msgstr "نئی کتاب"
-#. AL^0
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -985,7 +883,6 @@ msgctxt ""
msgid "Document closed"
msgstr ""
-#. @3Vd
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -994,7 +891,6 @@ msgctxt ""
msgid "Document is going to be closed"
msgstr ""
-#. w;PH
#: macropg.src
#, fuzzy
msgctxt ""
@@ -1004,7 +900,6 @@ msgctxt ""
msgid "Open Document"
msgstr "نئی کتاب"
-#. %)}(
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1013,7 +908,6 @@ msgctxt ""
msgid "Save Document"
msgstr ""
-#. `$b`
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1022,7 +916,6 @@ msgctxt ""
msgid "Save Document As"
msgstr ""
-#. E*BO
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1031,7 +924,6 @@ msgctxt ""
msgid "Document has been saved"
msgstr ""
-#. U?F8
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1040,7 +932,6 @@ msgctxt ""
msgid "Document has been saved as"
msgstr ""
-#. njr\
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1049,7 +940,6 @@ msgctxt ""
msgid "Activate Document"
msgstr ""
-#. zUV@
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1058,7 +948,6 @@ msgctxt ""
msgid "Deactivate Document"
msgstr ""
-#. N-3~
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1067,7 +956,6 @@ msgctxt ""
msgid "Print Document"
msgstr ""
-#. G]Kg
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1076,7 +964,6 @@ msgctxt ""
msgid "'Modified' status was changed"
msgstr ""
-#. 0/eq
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1085,7 +972,6 @@ msgctxt ""
msgid "Printing of form letters started"
msgstr ""
-#. 8-#P
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1094,7 +980,6 @@ msgctxt ""
msgid "Printing of form letters finished"
msgstr ""
-#. o`,X
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1103,7 +988,6 @@ msgctxt ""
msgid "Merging of form fields started"
msgstr ""
-#. %*EA
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1112,7 +996,6 @@ msgctxt ""
msgid "Merging of form fields finished"
msgstr ""
-#. C;1I
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1121,7 +1004,6 @@ msgctxt ""
msgid "Changing the page count"
msgstr ""
-#. `CT^
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1130,7 +1012,6 @@ msgctxt ""
msgid "Loaded a sub component"
msgstr ""
-#. d/Pf
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1139,7 +1020,6 @@ msgctxt ""
msgid "Closed a sub component"
msgstr ""
-#. I,`n
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1148,7 +1028,6 @@ msgctxt ""
msgid "Fill parameters"
msgstr ""
-#. XsHX
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1157,7 +1036,6 @@ msgctxt ""
msgid "Execute action"
msgstr ""
-#. K)DR
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1166,7 +1044,6 @@ msgctxt ""
msgid "After updating"
msgstr ""
-#. VH)#
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1175,7 +1052,6 @@ msgctxt ""
msgid "Before updating"
msgstr ""
-#. NysH
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1184,7 +1060,6 @@ msgctxt ""
msgid "Before record action"
msgstr ""
-#. -=So
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1193,7 +1068,6 @@ msgctxt ""
msgid "After record action"
msgstr ""
-#. Qtkn
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1202,7 +1076,6 @@ msgctxt ""
msgid "Confirm deletion"
msgstr ""
-#. zTYx
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1211,7 +1084,6 @@ msgctxt ""
msgid "Error occurred"
msgstr ""
-#. qc3.
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1220,7 +1092,6 @@ msgctxt ""
msgid "While adjusting"
msgstr ""
-#. rL.|
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1229,7 +1100,6 @@ msgctxt ""
msgid "When receiving focus"
msgstr ""
-#. Y.6e
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1238,7 +1108,6 @@ msgctxt ""
msgid "When losing focus"
msgstr ""
-#. B%3l
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1247,7 +1116,6 @@ msgctxt ""
msgid "Item status changed"
msgstr ""
-#. zIW^
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1256,7 +1124,6 @@ msgctxt ""
msgid "Key pressed"
msgstr ""
-#. Q(de
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1265,7 +1132,6 @@ msgctxt ""
msgid "Key released"
msgstr ""
-#. .Tf=
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1274,7 +1140,6 @@ msgctxt ""
msgid "When loading"
msgstr ""
-#. X2fy
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1283,7 +1148,6 @@ msgctxt ""
msgid "Before reloading"
msgstr ""
-#. E.Q#
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1292,7 +1156,6 @@ msgctxt ""
msgid "When reloading"
msgstr ""
-#. p#Vl
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1301,7 +1164,6 @@ msgctxt ""
msgid "Mouse moved while key pressed"
msgstr ""
-#. e*M;
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1310,7 +1172,6 @@ msgctxt ""
msgid "Mouse inside"
msgstr ""
-#. ]faH
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1319,7 +1180,6 @@ msgctxt ""
msgid "Mouse outside"
msgstr ""
-#. Yuu*
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1328,7 +1188,6 @@ msgctxt ""
msgid "Mouse moved"
msgstr ""
-#. LkIT
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1337,7 +1196,6 @@ msgctxt ""
msgid "Mouse button pressed"
msgstr ""
-#. JAG]
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1346,7 +1204,6 @@ msgctxt ""
msgid "Mouse button released"
msgstr ""
-#. !gkv
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1355,7 +1212,6 @@ msgctxt ""
msgid "Before record change"
msgstr ""
-#. w`-2
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1364,7 +1220,6 @@ msgctxt ""
msgid "After record change"
msgstr ""
-#. Y0}2
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1373,7 +1228,6 @@ msgctxt ""
msgid "After resetting"
msgstr ""
-#. JWpx
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1382,7 +1236,6 @@ msgctxt ""
msgid "Prior to reset"
msgstr ""
-#. eps}
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1391,7 +1244,6 @@ msgctxt ""
msgid "Approve action"
msgstr ""
-#. seFP
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1400,7 +1252,6 @@ msgctxt ""
msgid "Before submitting"
msgstr ""
-#. \(IG
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1409,7 +1260,6 @@ msgctxt ""
msgid "Text modified"
msgstr ""
-#. A%T%
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1418,7 +1268,6 @@ msgctxt ""
msgid "Before unloading"
msgstr ""
-#. !pfh
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1427,7 +1276,6 @@ msgctxt ""
msgid "When unloading"
msgstr ""
-#. M,J1
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1436,7 +1284,6 @@ msgctxt ""
msgid "Changed"
msgstr ""
-#. RTE-
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1445,7 +1292,6 @@ msgctxt ""
msgid "Document created"
msgstr ""
-#. Dr.t
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1454,7 +1300,6 @@ msgctxt ""
msgid "Document loading finished"
msgstr ""
-#. cV)6
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1463,7 +1308,6 @@ msgctxt ""
msgid "Saving of document failed"
msgstr ""
-#. YXUB
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1472,7 +1316,6 @@ msgctxt ""
msgid "'Save as' has failed"
msgstr ""
-#. !%^]
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1481,7 +1324,6 @@ msgctxt ""
msgid "Storing or exporting copy of document"
msgstr ""
-#. A)]:
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1490,7 +1332,6 @@ msgctxt ""
msgid "Document copy has been created"
msgstr ""
-#. J%Q:
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1499,7 +1340,6 @@ msgctxt ""
msgid "Creating of document copy failed"
msgstr ""
-#. Y{ap
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1508,7 +1348,6 @@ msgctxt ""
msgid "View created"
msgstr ""
-#. RZ([
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1517,7 +1356,6 @@ msgctxt ""
msgid "View is going to be closed"
msgstr ""
-#. p:$f
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1526,7 +1364,6 @@ msgctxt ""
msgid "View closed"
msgstr ""
-#. Y,ra
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1535,7 +1372,6 @@ msgctxt ""
msgid "Document title changed"
msgstr ""
-#. bNLp
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1544,7 +1380,6 @@ msgctxt ""
msgid "Document mode changed"
msgstr ""
-#. KLrx
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1553,7 +1388,6 @@ msgctxt ""
msgid "Visible area changed"
msgstr ""
-#. gd`i
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1562,7 +1396,6 @@ msgctxt ""
msgid "Document has got a new storage"
msgstr ""
-#. A3BV
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1571,7 +1404,6 @@ msgctxt ""
msgid "Document layout finished"
msgstr ""
-#. Rmvf
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1580,7 +1412,6 @@ msgctxt ""
msgid "Selection changed"
msgstr ""
-#. iihC
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1589,7 +1420,6 @@ msgctxt ""
msgid "Double click"
msgstr ""
-#. 2!XX
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1598,7 +1428,6 @@ msgctxt ""
msgid "Right click"
msgstr ""
-#. %[cV
#: macropg.src
msgctxt ""
"macropg.src\n"
@@ -1607,7 +1436,6 @@ msgctxt ""
msgid "Formulas calculated"
msgstr ""
-#. ^,UT
#: macropg.src
msgctxt ""
"macropg.src\n"
diff --git a/source/ur/cui/source/dialogs.po b/source/ur/cui/source/dialogs.po
index 8e275237b32..4a9599f1913 100644
--- a/source/ur/cui/source/dialogs.po
+++ b/source/ur/cui/source/dialogs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-02-24 15:57+0200\n"
"Last-Translator: Yasir <urdulizer@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. JQkn
#: newtabledlg.src
msgctxt ""
"newtabledlg.src\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "Number of columns:"
msgstr ""
-#. AH!B
#: newtabledlg.src
msgctxt ""
"newtabledlg.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Number of rows:"
msgstr ""
-#. #JL_
#: newtabledlg.src
msgctxt ""
"newtabledlg.src\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "Insert Table"
msgstr ""
-#. -+=O
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "Origi~nal"
msgstr ""
-#. !@n?
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -64,7 +59,6 @@ msgctxt ""
msgid "~Word"
msgstr ""
-#. [Zi`
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -74,7 +68,6 @@ msgctxt ""
msgid "~Suggestions"
msgstr ""
-#. UxL3
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -84,7 +77,6 @@ msgctxt ""
msgid "~Ignore"
msgstr ""
-#. PE#P
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -94,7 +86,6 @@ msgctxt ""
msgid "Always I~gnore"
msgstr ""
-#. dqEi
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -104,7 +95,6 @@ msgctxt ""
msgid "~Replace"
msgstr ""
-#. VVYV
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -114,7 +104,6 @@ msgctxt ""
msgid "Always R~eplace"
msgstr ""
-#. (+Di
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -124,7 +113,6 @@ msgctxt ""
msgid "Options..."
msgstr ""
-#. 0O{B
#: commonlingui.src
msgctxt ""
"commonlingui.src\n"
@@ -134,7 +122,6 @@ msgctxt ""
msgid "~Close"
msgstr ""
-#. KT;n
#: tbxform.src
msgctxt ""
"tbxform.src\n"
@@ -144,7 +131,6 @@ msgctxt ""
msgid "go to record"
msgstr ""
-#. 7ojd
#: tbxform.src
msgctxt ""
"tbxform.src\n"
@@ -153,7 +139,6 @@ msgctxt ""
msgid "Record Number"
msgstr ""
-#. {EtJ
#: dlgname.src
#, fuzzy
msgctxt ""
@@ -163,7 +148,6 @@ msgctxt ""
msgid "Name"
msgstr "~نام"
-#. S,q=
#: dlgname.src
msgctxt ""
"dlgname.src\n"
@@ -173,7 +157,6 @@ msgctxt ""
msgid "~Name"
msgstr ""
-#. 45eG
#: dlgname.src
#, fuzzy
msgctxt ""
@@ -183,7 +166,6 @@ msgctxt ""
msgid "Name"
msgstr "~نام"
-#. QO;H
#: dlgname.src
#, fuzzy
msgctxt ""
@@ -194,7 +176,6 @@ msgctxt ""
msgid "~Title"
msgstr "عنوان"
-#. p|s1
#: dlgname.src
#, fuzzy
msgctxt ""
@@ -205,7 +186,6 @@ msgctxt ""
msgid "~Description"
msgstr "وضاحت"
-#. l78d
#: dlgname.src
msgctxt ""
"dlgname.src\n"
@@ -214,7 +194,6 @@ msgctxt ""
msgid "Description"
msgstr "وضاحت"
-#. (/fB
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -224,7 +203,6 @@ msgctxt ""
msgid "Enter the name for the new library."
msgstr ""
-#. !N=@
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -234,7 +212,6 @@ msgctxt ""
msgid "Create Library"
msgstr ""
-#. `J?K
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -244,7 +221,6 @@ msgctxt ""
msgid "Create Macro"
msgstr ""
-#. g/m.
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -254,7 +230,6 @@ msgctxt ""
msgid "Enter the name for the new macro."
msgstr ""
-#. |{iY
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -264,7 +239,6 @@ msgctxt ""
msgid "Rename"
msgstr ""
-#. W%2?
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -274,7 +248,6 @@ msgctxt ""
msgid "Enter the new name for the selected object."
msgstr ""
-#. ri[#
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -283,7 +256,6 @@ msgctxt ""
msgid "Create Library"
msgstr ""
-#. ,-^k
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -292,7 +264,6 @@ msgctxt ""
msgid "Do you want to delete the following object?"
msgstr ""
-#. ~0)[
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -301,7 +272,6 @@ msgctxt ""
msgid "Confirm Deletion"
msgstr ""
-#. _3$.
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -310,7 +280,6 @@ msgctxt ""
msgid "The selected object could not be deleted."
msgstr ""
-#. H18j
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -319,7 +288,6 @@ msgctxt ""
msgid " You do not have permission to delete this object."
msgstr ""
-#. 1Jv:
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -328,7 +296,6 @@ msgctxt ""
msgid "Error Deleting Object"
msgstr ""
-#. cHhH
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -337,7 +304,6 @@ msgctxt ""
msgid "The object could not be created."
msgstr ""
-#. K*6W
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -346,7 +312,6 @@ msgctxt ""
msgid " Object with the same name already exists."
msgstr ""
-#. Yq_l
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -355,7 +320,6 @@ msgctxt ""
msgid " You do not have permission to create this object."
msgstr ""
-#. spOJ
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -364,7 +328,6 @@ msgctxt ""
msgid "Error Creating Object"
msgstr ""
-#. NQAL
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -373,7 +336,6 @@ msgctxt ""
msgid "The object could not be renamed."
msgstr ""
-#. 1*3R
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -382,7 +344,6 @@ msgctxt ""
msgid " You do not have permission to rename this object."
msgstr ""
-#. HYLl
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -391,7 +352,6 @@ msgctxt ""
msgid "Error Renaming Object"
msgstr ""
-#. s6](
#: scriptdlg.src
#, fuzzy
msgctxt ""
@@ -401,7 +361,6 @@ msgctxt ""
msgid "%PRODUCTNAME Error"
msgstr "%PRODUCTNAME ایونٹ"
-#. C$nb
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -410,7 +369,6 @@ msgctxt ""
msgid "The scripting language %LANGUAGENAME is not supported."
msgstr ""
-#. D#N(
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -419,7 +377,6 @@ msgctxt ""
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr ""
-#. E2ZD
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -428,7 +385,6 @@ msgctxt ""
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr ""
-#. gw)D
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -437,7 +393,6 @@ msgctxt ""
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr ""
-#. p1zM
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -446,7 +401,6 @@ msgctxt ""
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr ""
-#. HtXI
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -455,7 +409,6 @@ msgctxt ""
msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr ""
-#. 8qs{
#: scriptdlg.src
msgctxt ""
"scriptdlg.src\n"
@@ -464,7 +417,6 @@ msgctxt ""
msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr ""
-#. Dz^m
#: scriptdlg.src
#, fuzzy
msgctxt ""
@@ -474,7 +426,6 @@ msgctxt ""
msgid "Type:"
msgstr "نوعیت:"
-#. k7^}
#: scriptdlg.src
#, fuzzy
msgctxt ""
@@ -484,7 +435,6 @@ msgctxt ""
msgid "Message:"
msgstr "پیغام"
-#. 3lg2
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -493,7 +443,6 @@ msgctxt ""
msgid "Color Picker"
msgstr ""
-#. 3JWk
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -503,7 +452,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. xoSg
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -513,7 +461,6 @@ msgctxt ""
msgid "Pick a color from the document"
msgstr ""
-#. {iK^
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -523,7 +470,6 @@ msgctxt ""
msgid "RGB"
msgstr ""
-#. =m%B
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -533,7 +479,6 @@ msgctxt ""
msgid "~Red"
msgstr ""
-#. 0D3o
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -543,7 +488,6 @@ msgctxt ""
msgid "~Green"
msgstr ""
-#. \#ic
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -553,7 +497,6 @@ msgctxt ""
msgid "~Blue"
msgstr ""
-#. fIkP
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -563,7 +506,6 @@ msgctxt ""
msgid "Hex ~#"
msgstr ""
-#. 8)ee
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -573,7 +515,6 @@ msgctxt ""
msgid "HSB"
msgstr ""
-#. s:(.
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -583,7 +524,6 @@ msgctxt ""
msgid "H~ue"
msgstr ""
-#. N57m
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -593,7 +533,6 @@ msgctxt ""
msgid "~Saturation"
msgstr ""
-#. cPyX
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -603,7 +542,6 @@ msgctxt ""
msgid "Bright~ness"
msgstr ""
-#. b+|\
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -613,7 +551,6 @@ msgctxt ""
msgid "CMYK"
msgstr ""
-#. ag@c
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -623,7 +560,6 @@ msgctxt ""
msgid "~Cyan"
msgstr ""
-#. 5mFC
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -633,7 +569,6 @@ msgctxt ""
msgid "~Magenta"
msgstr ""
-#. 53Xa
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -643,7 +578,6 @@ msgctxt ""
msgid "~Yellow"
msgstr ""
-#. ]emz
#: colorpicker.src
msgctxt ""
"colorpicker.src\n"
@@ -653,7 +587,6 @@ msgctxt ""
msgid "~Key"
msgstr ""
-#. \pA8
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -663,7 +596,6 @@ msgctxt ""
msgid "General"
msgstr ""
-#. 2F1Z
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -672,7 +604,6 @@ msgctxt ""
msgid "Properties of "
msgstr ""
-#. 15EY
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -682,7 +613,6 @@ msgctxt ""
msgid "General"
msgstr ""
-#. RbR?
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -692,7 +622,6 @@ msgctxt ""
msgid "Files"
msgstr ""
-#. 1WZ%
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -701,7 +630,6 @@ msgctxt ""
msgid "Properties of "
msgstr ""
-#. is@h
#: gallery.src
#, fuzzy
msgctxt ""
@@ -712,7 +640,6 @@ msgctxt ""
msgid "Type:"
msgstr "نوعیت:"
-#. kA7V
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -722,7 +649,6 @@ msgctxt ""
msgid "Location:"
msgstr ""
-#. )MmX
#: gallery.src
#, fuzzy
msgctxt ""
@@ -733,7 +659,6 @@ msgctxt ""
msgid "Contents:"
msgstr "آراء:"
-#. L(!(
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -743,7 +668,6 @@ msgctxt ""
msgid "Modified:"
msgstr "تغیر شدہ :"
-#. ib8I
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -753,7 +677,6 @@ msgctxt ""
msgid "~File type"
msgstr ""
-#. v)hb
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -763,7 +686,6 @@ msgctxt ""
msgid "~Find Files..."
msgstr ""
-#. pL8^
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -773,7 +695,6 @@ msgctxt ""
msgid "~Add"
msgstr ""
-#. YxAu
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -783,7 +704,6 @@ msgctxt ""
msgid "A~dd All"
msgstr ""
-#. eEF:
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -793,7 +713,6 @@ msgctxt ""
msgid "Pr~eview"
msgstr "مشاہد~ہ"
-#. in)o
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -803,7 +722,6 @@ msgctxt ""
msgid "Maddin1"
msgstr ""
-#. 2!m.
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -813,7 +731,6 @@ msgctxt ""
msgid "Maddin2"
msgstr ""
-#. ?3/P
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -823,7 +740,6 @@ msgctxt ""
msgid "Title"
msgstr "عنوان"
-#. h*#`
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -832,7 +748,6 @@ msgctxt ""
msgid "Enter Title"
msgstr ""
-#. I9!p
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -842,7 +757,6 @@ msgctxt ""
msgid "Directory"
msgstr ""
-#. VH{G
#: gallery.src
#, fuzzy
msgctxt ""
@@ -853,7 +767,6 @@ msgctxt ""
msgid "File type"
msgstr "فائل کی نو~عیت:"
-#. -Fub
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -862,7 +775,6 @@ msgctxt ""
msgid "Find"
msgstr ""
-#. cJ,d
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -872,7 +784,6 @@ msgctxt ""
msgid "File"
msgstr ""
-#. ~mtv
#: gallery.src
#, fuzzy
msgctxt ""
@@ -882,7 +793,6 @@ msgctxt ""
msgid "Apply"
msgstr "لاگو کیجئے"
-#. gdfS
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -892,7 +802,6 @@ msgctxt ""
msgid "File"
msgstr ""
-#. Ip#V
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -901,7 +810,6 @@ msgctxt ""
msgid "Update"
msgstr ""
-#. oY*p
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -911,7 +819,6 @@ msgctxt ""
msgid "ID"
msgstr ""
-#. ZViV
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -920,7 +827,6 @@ msgctxt ""
msgid "Theme ID"
msgstr ""
-#. \{J1
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -929,7 +835,6 @@ msgctxt ""
msgid "<No Files>"
msgstr ""
-#. jGG?
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -938,7 +843,6 @@ msgctxt ""
msgid "Do you want to update the file list?"
msgstr ""
-#. Di38
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -947,7 +851,6 @@ msgctxt ""
msgid "Object;Objects"
msgstr ""
-#. pJ-W
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -956,7 +859,6 @@ msgctxt ""
msgid "(read-only)"
msgstr ""
-#. 3:9w
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -965,7 +867,6 @@ msgctxt ""
msgid "<All Files>"
msgstr ""
-#. \^i-
#: gallery.src
msgctxt ""
"gallery.src\n"
@@ -974,7 +875,6 @@ msgctxt ""
msgid "This ID already exists..."
msgstr ""
-#. _*.H
#: about.src
msgctxt ""
"about.src\n"
@@ -984,7 +884,6 @@ msgctxt ""
msgid "Version %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX %PRODUCTEXTENSION"
msgstr ""
-#. fnif
#: about.src
msgctxt ""
"about.src\n"
@@ -994,7 +893,6 @@ msgctxt ""
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#. vJe3
#: about.src
msgctxt ""
"about.src\n"
@@ -1004,7 +902,6 @@ msgctxt ""
msgid "This release was supplied by %OOOVENDOR"
msgstr ""
-#. W=Y_
#: about.src
msgctxt ""
"about.src\n"
@@ -1014,7 +911,6 @@ msgctxt ""
msgid "Copyright © 2000 - 2012 LibreOffice contributors and/or their affiliates"
msgstr ""
-#. PQ#6
#: about.src
msgctxt ""
"about.src\n"
@@ -1024,7 +920,6 @@ msgctxt ""
msgid "LibreOffice was based on OpenOffice.org"
msgstr ""
-#. Inr3
#: about.src
msgctxt ""
"about.src\n"
@@ -1034,7 +929,6 @@ msgctxt ""
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr ""
-#. 9iuu
#: about.src
msgctxt ""
"about.src\n"
@@ -1044,7 +938,6 @@ msgctxt ""
msgid "(Build ID: $BUILDID)"
msgstr ""
-#. NSIV
#: about.src
msgctxt ""
"about.src\n"
@@ -1054,7 +947,6 @@ msgctxt ""
msgid "http://www.libreoffice.org/about-us/credits/"
msgstr ""
-#. =p`t
#: about.src
msgctxt ""
"about.src\n"
@@ -1064,7 +956,6 @@ msgctxt ""
msgid "Credits"
msgstr ""
-#. J3Jn
#: about.src
msgctxt ""
"about.src\n"
@@ -1074,7 +965,6 @@ msgctxt ""
msgid "Website"
msgstr ""
-#. i2V.
#: about.src
msgctxt ""
"about.src\n"
@@ -1084,7 +974,6 @@ msgctxt ""
msgid "~Close"
msgstr ""
-#. G*]4
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1094,7 +983,6 @@ msgctxt ""
msgid "Font"
msgstr ""
-#. vUQR
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1104,7 +992,6 @@ msgctxt ""
msgid "Font Effects"
msgstr ""
-#. 3?)^
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1114,7 +1001,6 @@ msgctxt ""
msgid "Position"
msgstr ""
-#. hlh#
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1124,7 +1010,6 @@ msgctxt ""
msgid "Asian Layout"
msgstr ""
-#. d\(S
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1134,7 +1019,6 @@ msgctxt ""
msgid "Indents & Spacing"
msgstr ""
-#. y/f$
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1144,7 +1028,6 @@ msgctxt ""
msgid "Alignment"
msgstr ""
-#. D6qF
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1154,7 +1037,6 @@ msgctxt ""
msgid "Text Flow"
msgstr ""
-#. UD_4
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1164,7 +1046,6 @@ msgctxt ""
msgid "Asian Typography"
msgstr ""
-#. aTLc
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1174,7 +1055,6 @@ msgctxt ""
msgid "Background"
msgstr ""
-#. }1,p
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1183,7 +1063,6 @@ msgctxt ""
msgid "Text Format"
msgstr ""
-#. v$gu
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1193,7 +1072,6 @@ msgctxt ""
msgid "~Options"
msgstr ""
-#. SM1b
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1202,7 +1080,6 @@ msgctxt ""
msgid "Attributes"
msgstr ""
-#. LD%H
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1212,7 +1089,6 @@ msgctxt ""
msgid "~Exchange characters"
msgstr ""
-#. [Pi9
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1222,7 +1098,6 @@ msgctxt ""
msgid "~Add characters"
msgstr ""
-#. +(O;
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1232,7 +1107,6 @@ msgctxt ""
msgid "~Remove characters"
msgstr ""
-#. J:4C
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1242,7 +1116,6 @@ msgctxt ""
msgid "~Combine"
msgstr ""
-#. gbBC
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1252,7 +1125,6 @@ msgctxt ""
msgid "Settings"
msgstr ""
-#. DuTs
#: srchxtra.src
msgctxt ""
"srchxtra.src\n"
@@ -1261,7 +1133,6 @@ msgctxt ""
msgid "Similarity Search"
msgstr ""
-#. k]@_
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1271,7 +1142,6 @@ msgctxt ""
msgid "Source:"
msgstr ""
-#. !A.C
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1281,7 +1151,6 @@ msgctxt ""
msgid "~Insert as"
msgstr ""
-#. OMLL
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1291,7 +1160,6 @@ msgctxt ""
msgid "Link to"
msgstr ""
-#. q{bE
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1301,7 +1169,6 @@ msgctxt ""
msgid "~As icon"
msgstr ""
-#. ,1%~
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1311,7 +1178,6 @@ msgctxt ""
msgid "~Other Icon..."
msgstr ""
-#. )@lS
#: svuidlg.src
#, fuzzy
msgctxt ""
@@ -1322,7 +1188,6 @@ msgctxt ""
msgid "Selection"
msgstr "~انتخاب"
-#. U@@a
#: svuidlg.src
#, fuzzy
msgctxt ""
@@ -1333,7 +1198,6 @@ msgctxt ""
msgid "Object"
msgstr "اشیاء"
-#. v8_5
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1342,7 +1206,6 @@ msgctxt ""
msgid "Paste Special"
msgstr ""
-#. c`$+
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1352,7 +1215,6 @@ msgctxt ""
msgid "Source file"
msgstr ""
-#. a,w^
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1362,7 +1224,6 @@ msgctxt ""
msgid "Element:"
msgstr ""
-#. kM@g
#: svuidlg.src
#, fuzzy
msgctxt ""
@@ -1373,7 +1234,6 @@ msgctxt ""
msgid "Type"
msgstr "نوعیت:"
-#. hI/s
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1383,7 +1243,6 @@ msgctxt ""
msgid "Status"
msgstr ""
-#. tL)m
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1393,7 +1252,6 @@ msgctxt ""
msgid "~Close"
msgstr ""
-#. l3_@
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1403,7 +1261,6 @@ msgctxt ""
msgid "~Update"
msgstr ""
-#. /@R+
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1413,7 +1270,6 @@ msgctxt ""
msgid "~Open"
msgstr "~کھولیے"
-#. KQqI
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1423,7 +1279,6 @@ msgctxt ""
msgid "~Modify..."
msgstr ""
-#. ;R,p
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1433,7 +1288,6 @@ msgctxt ""
msgid "~Break Link"
msgstr ""
-#. sLvl
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1443,7 +1297,6 @@ msgctxt ""
msgid "Source file"
msgstr ""
-#. 6!L8
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1453,7 +1306,6 @@ msgctxt ""
msgid "Element:"
msgstr ""
-#. b-eK
#: svuidlg.src
#, fuzzy
msgctxt ""
@@ -1464,7 +1316,6 @@ msgctxt ""
msgid "Type:"
msgstr "نوعیت:"
-#. sE5o
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1474,7 +1325,6 @@ msgctxt ""
msgid "Update:"
msgstr ""
-#. qVkM
#: svuidlg.src
#, fuzzy
msgctxt ""
@@ -1485,7 +1335,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "خودکار"
-#. KO-M
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1495,7 +1344,6 @@ msgctxt ""
msgid "Ma~nual"
msgstr ""
-#. U|Nc
#: svuidlg.src
#, fuzzy
msgctxt ""
@@ -1506,7 +1354,6 @@ msgctxt ""
msgid "Automatic"
msgstr "خودکار"
-#. YZ[\
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1516,7 +1363,6 @@ msgctxt ""
msgid "Manual"
msgstr ""
-#. 2CId
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1526,7 +1372,6 @@ msgctxt ""
msgid "Not available"
msgstr ""
-#. oEVY
#: svuidlg.src
#, fuzzy
msgctxt ""
@@ -1537,7 +1382,6 @@ msgctxt ""
msgid "Graphic"
msgstr "نقوش"
-#. m8~j
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1547,7 +1391,6 @@ msgctxt ""
msgid "~Close"
msgstr ""
-#. 1Y;1
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1557,7 +1400,6 @@ msgctxt ""
msgid "Are you sure you want to remove the selected link?"
msgstr ""
-#. =-S)
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1567,7 +1409,6 @@ msgctxt ""
msgid "Are you sure you want to remove the selected link?"
msgstr ""
-#. 6j/[
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1577,7 +1418,6 @@ msgctxt ""
msgid "Waiting"
msgstr ""
-#. *=%J
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1586,7 +1426,6 @@ msgctxt ""
msgid "Edit Links"
msgstr ""
-#. ]q+~
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1596,7 +1435,6 @@ msgctxt ""
msgid "Exchange source:"
msgstr ""
-#. 4I9;
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1606,7 +1444,6 @@ msgctxt ""
msgid "Edit"
msgstr ""
-#. aG_H
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1615,7 +1452,6 @@ msgctxt ""
msgid "Modify Link"
msgstr ""
-#. (}N.
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1625,7 +1461,6 @@ msgctxt ""
msgid "~Class"
msgstr ""
-#. ii$;
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1635,7 +1470,6 @@ msgctxt ""
msgid "Class ~Location"
msgstr ""
-#. T2j\
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1645,7 +1479,6 @@ msgctxt ""
msgid "~Search..."
msgstr ""
-#. 0QcZ
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1655,7 +1488,6 @@ msgctxt ""
msgid "File"
msgstr ""
-#. _a(?
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1665,7 +1497,6 @@ msgctxt ""
msgid "Options"
msgstr ""
-#. Es_Q
#: svuidlg.src
msgctxt ""
"svuidlg.src\n"
@@ -1674,7 +1505,6 @@ msgctxt ""
msgid "Insert Applet"
msgstr ""
-#. %a#=
#: postdlg.src
#, fuzzy
msgctxt ""
@@ -1685,7 +1515,6 @@ msgctxt ""
msgid "Author"
msgstr "مؤلف"
-#. :A[;
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1695,7 +1524,6 @@ msgctxt ""
msgid "~Text"
msgstr ""
-#. !W!A
#: postdlg.src
#, fuzzy
msgctxt ""
@@ -1706,7 +1534,6 @@ msgctxt ""
msgid "Contents"
msgstr "آراء"
-#. Ss^W
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1716,7 +1543,6 @@ msgctxt ""
msgid "~Insert"
msgstr ""
-#. @2#v
#: postdlg.src
#, fuzzy
msgctxt ""
@@ -1727,7 +1553,6 @@ msgctxt ""
msgid "Author"
msgstr "مؤلف"
-#. ,40J
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1737,7 +1562,6 @@ msgctxt ""
msgid "Edit Comment"
msgstr ""
-#. K2K_
#: postdlg.src
msgctxt ""
"postdlg.src\n"
@@ -1747,7 +1571,6 @@ msgctxt ""
msgid "Insert Comment"
msgstr ""
-#. eB(6
#: postdlg.src
#, fuzzy
msgctxt ""
@@ -1757,7 +1580,6 @@ msgctxt ""
msgid "Comment"
msgstr "آراء"
-#. ^tib
#: sdrcelldlg.src
msgctxt ""
"sdrcelldlg.src\n"
@@ -1767,7 +1589,6 @@ msgctxt ""
msgid "Font"
msgstr ""
-#. GZZ.
#: sdrcelldlg.src
msgctxt ""
"sdrcelldlg.src\n"
@@ -1777,7 +1598,6 @@ msgctxt ""
msgid "Font Effects"
msgstr ""
-#. Ah.s
#: sdrcelldlg.src
msgctxt ""
"sdrcelldlg.src\n"
@@ -1787,7 +1607,6 @@ msgctxt ""
msgid "Borders"
msgstr ""
-#. l\ks
#: sdrcelldlg.src
msgctxt ""
"sdrcelldlg.src\n"
@@ -1797,7 +1616,6 @@ msgctxt ""
msgid "Background"
msgstr ""
-#. Nt}G
#: sdrcelldlg.src
msgctxt ""
"sdrcelldlg.src\n"
@@ -1807,7 +1625,6 @@ msgctxt ""
msgid "Return"
msgstr ""
-#. $)x;
#: sdrcelldlg.src
msgctxt ""
"sdrcelldlg.src\n"
@@ -1816,7 +1633,6 @@ msgctxt ""
msgid "Format Cells"
msgstr ""
-#. pjv\
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1826,7 +1642,6 @@ msgctxt ""
msgid "Parameters"
msgstr ""
-#. SN+G
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1836,7 +1651,6 @@ msgctxt ""
msgid "~Width"
msgstr ""
-#. p1X7
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1846,7 +1660,6 @@ msgctxt ""
msgid " Pixel"
msgstr ""
-#. nwbg
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1856,7 +1669,6 @@ msgctxt ""
msgid "H~eight"
msgstr ""
-#. N7R~
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1866,7 +1678,6 @@ msgctxt ""
msgid " Pixel"
msgstr ""
-#. p3!y
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1876,7 +1687,6 @@ msgctxt ""
msgid "E~nhance edges"
msgstr ""
-#. !bNm
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1885,7 +1695,6 @@ msgctxt ""
msgid "Mosaic"
msgstr ""
-#. _0,q
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1895,7 +1704,6 @@ msgctxt ""
msgid "Parameters"
msgstr ""
-#. ^PlP
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1905,7 +1713,6 @@ msgctxt ""
msgid "Threshold ~value"
msgstr ""
-#. ~)5X
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1915,7 +1722,6 @@ msgctxt ""
msgid "~Invert"
msgstr ""
-#. W(wS
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1924,7 +1730,6 @@ msgctxt ""
msgid "Solarization"
msgstr ""
-#. _G@@
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1934,7 +1739,6 @@ msgctxt ""
msgid "Parameters"
msgstr ""
-#. M2,n
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1944,7 +1748,6 @@ msgctxt ""
msgid "Aging degree"
msgstr ""
-#. :d9]
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1953,7 +1756,6 @@ msgctxt ""
msgid "Aging"
msgstr ""
-#. XZc%
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1963,7 +1765,6 @@ msgctxt ""
msgid "Parameters"
msgstr ""
-#. xiDI
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1973,7 +1774,6 @@ msgctxt ""
msgid "Poster colors"
msgstr ""
-#. gVT(
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1982,7 +1782,6 @@ msgctxt ""
msgid "Posterize"
msgstr ""
-#. .oe|
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -1992,7 +1791,6 @@ msgctxt ""
msgid "Parameters"
msgstr ""
-#. \5\Z
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -2002,7 +1800,6 @@ msgctxt ""
msgid "Light source"
msgstr ""
-#. dx+o
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -2011,7 +1808,6 @@ msgctxt ""
msgid "Relief"
msgstr ""
-#. !#1M
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -2021,7 +1817,6 @@ msgctxt ""
msgid "Parameters"
msgstr ""
-#. c3c4
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -2031,7 +1826,6 @@ msgctxt ""
msgid "Smooth Radius"
msgstr ""
-#. v%.e
#: grfflt.src
msgctxt ""
"grfflt.src\n"
@@ -2040,7 +1834,6 @@ msgctxt ""
msgid "Smooth"
msgstr ""
-#. :KSr
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2050,7 +1843,6 @@ msgctxt ""
msgid "Paths"
msgstr ""
-#. KdMM
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2060,7 +1852,6 @@ msgctxt ""
msgid "Mark the default path for new files."
msgstr ""
-#. [51a
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2070,7 +1861,6 @@ msgctxt ""
msgid "~Add..."
msgstr ""
-#. )N])
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2080,7 +1870,6 @@ msgctxt ""
msgid "~Delete"
msgstr ""
-#. En0v
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2090,7 +1879,6 @@ msgctxt ""
msgid "Path list"
msgstr ""
-#. TRw.
#: multipat.src
#, fuzzy
msgctxt ""
@@ -2100,7 +1888,6 @@ msgctxt ""
msgid "Select Paths"
msgstr "مقام منتخب کیجئے"
-#. m6Tt
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2109,7 +1896,6 @@ msgctxt ""
msgid "The path %1 already exists."
msgstr ""
-#. ct+:
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2118,7 +1904,6 @@ msgctxt ""
msgid "Select files"
msgstr ""
-#. qaxg
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2127,7 +1912,6 @@ msgctxt ""
msgid "Files"
msgstr ""
-#. WqDs
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2136,7 +1920,6 @@ msgctxt ""
msgid "Select Archives"
msgstr ""
-#. N4GD
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2145,7 +1928,6 @@ msgctxt ""
msgid "Archives"
msgstr ""
-#. Ejr6
#: multipat.src
msgctxt ""
"multipat.src\n"
@@ -2154,7 +1936,6 @@ msgctxt ""
msgid "The file %1 already exists."
msgstr ""
-#. C!dE
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2164,7 +1945,6 @@ msgctxt ""
msgid "Text languag~e"
msgstr ""
-#. dq#@
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2174,7 +1954,6 @@ msgctxt ""
msgid "More..."
msgstr ""
-#. D]i)
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2184,7 +1963,6 @@ msgctxt ""
msgid "~Not in dictionary"
msgstr ""
-#. 19.u
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2194,7 +1972,6 @@ msgctxt ""
msgid "~Suggestions"
msgstr ""
-#. Qj94
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2204,7 +1981,6 @@ msgctxt ""
msgid "Check ~grammar"
msgstr ""
-#. mi]-
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2214,7 +1990,6 @@ msgctxt ""
msgid "~Ignore Once"
msgstr ""
-#. 0}6\
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2224,7 +1999,6 @@ msgctxt ""
msgid "I~gnore All"
msgstr ""
-#. k#aT
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2234,7 +2008,6 @@ msgctxt ""
msgid "I~gnore Rule"
msgstr ""
-#. y:He
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2244,7 +2017,6 @@ msgctxt ""
msgid "~Add"
msgstr ""
-#. _VN:
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2254,7 +2026,6 @@ msgctxt ""
msgid "~Add"
msgstr ""
-#. Ut6,
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2264,7 +2035,6 @@ msgctxt ""
msgid "~Change"
msgstr ""
-#. -f98
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2274,7 +2044,6 @@ msgctxt ""
msgid "Change A~ll"
msgstr ""
-#. ;8tW
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2284,7 +2053,6 @@ msgctxt ""
msgid "AutoCor~rect"
msgstr ""
-#. .q5C
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2294,7 +2062,6 @@ msgctxt ""
msgid "O~ptions..."
msgstr ""
-#. 2}-4
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2304,7 +2071,6 @@ msgctxt ""
msgid "~Undo"
msgstr ""
-#. epNd
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2314,7 +2080,6 @@ msgctxt ""
msgid "Cl~ose"
msgstr ""
-#. ]$lP
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2324,7 +2089,6 @@ msgctxt ""
msgid "Resu~me"
msgstr ""
-#. 3pED
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2334,7 +2098,6 @@ msgctxt ""
msgid "(no suggestions)"
msgstr ""
-#. A_hh
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2344,7 +2107,6 @@ msgctxt ""
msgid "Spelling: $LANGUAGE ($LOCATION)"
msgstr ""
-#. :35q
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2354,7 +2116,6 @@ msgctxt ""
msgid "Spelling and Grammar: $LANGUAGE ($LOCATION)"
msgstr ""
-#. B3,S
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2364,7 +2125,6 @@ msgctxt ""
msgid "Spelling and Grammar: $LANGUAGE ($LOCATION) [$VendorName]"
msgstr ""
-#. Oruo
#: SpellDialog.src
msgctxt ""
"SpellDialog.src\n"
@@ -2373,7 +2133,6 @@ msgctxt ""
msgid "Spellcheck: "
msgstr ""
-#. lQDX
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2383,7 +2142,6 @@ msgctxt ""
msgid "~Split cell into"
msgstr ""
-#. %S?v
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2393,7 +2151,6 @@ msgctxt ""
msgid "Split"
msgstr ""
-#. T\yI
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2403,7 +2160,6 @@ msgctxt ""
msgid "H~orizontally"
msgstr ""
-#. ^C%S
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2413,7 +2169,6 @@ msgctxt ""
msgid "~Into equal proportions"
msgstr ""
-#. y(/I
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2423,7 +2178,6 @@ msgctxt ""
msgid "~Vertically"
msgstr ""
-#. sYN+
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2433,7 +2187,6 @@ msgctxt ""
msgid "Direction"
msgstr ""
-#. 3hto
#: splitcelldlg.src
msgctxt ""
"splitcelldlg.src\n"
@@ -2442,7 +2195,6 @@ msgctxt ""
msgid "Split Cells"
msgstr ""
-#. K\)t
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2451,7 +2203,6 @@ msgctxt ""
msgid "No alternatives found."
msgstr ""
-#. [o|L
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2460,7 +2211,6 @@ msgctxt ""
msgid "Select File for Floating Frame"
msgstr ""
-#. Bx0.
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2469,7 +2219,6 @@ msgctxt ""
msgid "My Macros"
msgstr ""
-#. [2V#
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2478,7 +2227,6 @@ msgctxt ""
msgid "%PRODUCTNAME Macros"
msgstr ""
-#. S7)b
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2487,7 +2235,6 @@ msgctxt ""
msgid "Add Commands"
msgstr ""
-#. s2Fv
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2496,7 +2243,6 @@ msgctxt ""
msgid "Run"
msgstr ""
-#. mRwK
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2505,7 +2251,6 @@ msgctxt ""
msgid "Insert Rows"
msgstr ""
-#. EWNK
#: cuires.src
msgctxt ""
"cuires.src\n"
@@ -2514,7 +2259,6 @@ msgctxt ""
msgid "Insert Columns"
msgstr ""
-#. DJr*
#: iconcdlg.src
msgctxt ""
"iconcdlg.src\n"
@@ -2523,7 +2267,6 @@ msgctxt ""
msgid "~Back"
msgstr ""
-#. hm/:
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2533,7 +2276,6 @@ msgctxt ""
msgid "~Find"
msgstr ""
-#. ?=/h
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2543,7 +2285,6 @@ msgctxt ""
msgid "Format"
msgstr ""
-#. gP:z
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2553,7 +2294,6 @@ msgctxt ""
msgid "~Hangul/Hanja"
msgstr ""
-#. E*l:
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2563,7 +2303,6 @@ msgctxt ""
msgid "Hanja (Han~gul)"
msgstr ""
-#. ~\ef
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2573,7 +2312,6 @@ msgctxt ""
msgid "Hang~ul (Hanja)"
msgstr ""
-#. 9f_J
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2583,7 +2321,6 @@ msgctxt ""
msgid "Hangu~l"
msgstr ""
-#. =6~o
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2593,7 +2330,6 @@ msgctxt ""
msgid "Hang~ul"
msgstr ""
-#. {*IQ
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2603,7 +2339,6 @@ msgctxt ""
msgid "Han~ja"
msgstr ""
-#. qDL6
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2613,7 +2348,6 @@ msgctxt ""
msgid "Ha~nja"
msgstr ""
-#. r^LZ
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2623,7 +2357,6 @@ msgctxt ""
msgid "Conversion"
msgstr ""
-#. ,*V$
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2633,7 +2366,6 @@ msgctxt ""
msgid "Hangul ~only"
msgstr ""
-#. .)vB
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2643,7 +2375,6 @@ msgctxt ""
msgid "Hanja onl~y"
msgstr ""
-#. .{gr
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2653,7 +2384,6 @@ msgctxt ""
msgid "Replace b~y character"
msgstr ""
-#. WK3M
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2663,7 +2393,6 @@ msgctxt ""
msgid "Hangul"
msgstr ""
-#. D;Ps
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2673,7 +2402,6 @@ msgctxt ""
msgid "Hanja"
msgstr ""
-#. Z|[0
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2682,7 +2410,6 @@ msgctxt ""
msgid "Hangul/Hanja Conversion"
msgstr ""
-#. k=@D
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2692,7 +2419,6 @@ msgctxt ""
msgid "User-defined dictionaries"
msgstr ""
-#. =VVJ
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2702,7 +2428,6 @@ msgctxt ""
msgid "Options"
msgstr ""
-#. R8%Y
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2712,7 +2437,6 @@ msgctxt ""
msgid "Ignore post-positional word"
msgstr ""
-#. i4n,
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2722,7 +2446,6 @@ msgctxt ""
msgid "Show recently used entries first"
msgstr ""
-#. Qk`Y
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2732,7 +2455,6 @@ msgctxt ""
msgid "Replace all unique entries automatically"
msgstr ""
-#. /\;u
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2742,7 +2464,6 @@ msgctxt ""
msgid "New..."
msgstr ""
-#. Ms/R
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2752,7 +2473,6 @@ msgctxt ""
msgid "Edit..."
msgstr ""
-#. /8LZ
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2762,7 +2482,6 @@ msgctxt ""
msgid "Delete"
msgstr ""
-#. pf5k
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2771,7 +2490,6 @@ msgctxt ""
msgid "Hangul/Hanja Options"
msgstr ""
-#. z;6c
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2781,7 +2499,6 @@ msgctxt ""
msgid "Dictionary"
msgstr ""
-#. =2[0
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2791,7 +2508,6 @@ msgctxt ""
msgid "~Name"
msgstr ""
-#. ][6Z
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2800,7 +2516,6 @@ msgctxt ""
msgid "New Dictionary"
msgstr ""
-#. HMg`
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2810,7 +2525,6 @@ msgctxt ""
msgid "[Enter text here]"
msgstr ""
-#. .c/~
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2820,7 +2534,6 @@ msgctxt ""
msgid "Book"
msgstr ""
-#. F[$_
#: hangulhanjadlg.src
#, fuzzy
msgctxt ""
@@ -2831,7 +2544,6 @@ msgctxt ""
msgid "Original"
msgstr "مصدر"
-#. rs.K
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2841,7 +2553,6 @@ msgctxt ""
msgid "Suggestions (max. 8)"
msgstr ""
-#. Q$)s
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2851,7 +2562,6 @@ msgctxt ""
msgid "New"
msgstr ""
-#. g([7
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2861,7 +2571,6 @@ msgctxt ""
msgid "Delete"
msgstr ""
-#. GF,c
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2871,7 +2580,6 @@ msgctxt ""
msgid "Close"
msgstr ""
-#. rr^7
#: hangulhanjadlg.src
msgctxt ""
"hangulhanjadlg.src\n"
@@ -2880,7 +2588,6 @@ msgctxt ""
msgid "Edit Custom Dictionary"
msgstr ""
-#. p3_c
#: hlmarkwn.src
#, fuzzy
msgctxt ""
@@ -2891,7 +2598,6 @@ msgctxt ""
msgid "Apply"
msgstr "لاگو کیجئے"
-#. z*]I
#: hlmarkwn.src
msgctxt ""
"hlmarkwn.src\n"
@@ -2901,7 +2607,6 @@ msgctxt ""
msgid "Close"
msgstr ""
-#. gy4G
#: hlmarkwn.src
msgctxt ""
"hlmarkwn.src\n"
@@ -2910,7 +2615,6 @@ msgctxt ""
msgid "Target in Document"
msgstr ""
-#. X/m:
#: hlmarkwn.src
msgctxt ""
"hlmarkwn.src\n"
@@ -2919,7 +2623,6 @@ msgctxt ""
msgid "Targets do not exist in the document."
msgstr ""
-#. i3C0
#: hlmarkwn.src
msgctxt ""
"hlmarkwn.src\n"
@@ -2928,7 +2631,6 @@ msgctxt ""
msgid "Couldn't open the document."
msgstr ""
-#. dTPN
#: hlmarkwn.src
msgctxt ""
"hlmarkwn.src\n"
@@ -2937,7 +2639,6 @@ msgctxt ""
msgid "Mark Tree"
msgstr ""
-#. BA]n
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -2947,7 +2648,6 @@ msgctxt ""
msgid "File encryption password"
msgstr ""
-#. 8$u*
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -2957,7 +2657,6 @@ msgctxt ""
msgid "~Enter password to open"
msgstr ""
-#. NH6r
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -2967,7 +2666,6 @@ msgctxt ""
msgid "Confirm password"
msgstr ""
-#. T3/i
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -2977,7 +2675,6 @@ msgctxt ""
msgid "Note: After a password has been set, the document will only open with "
msgstr ""
-#. Ty55
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -2987,7 +2684,6 @@ msgctxt ""
msgid "File sharing password"
msgstr ""
-#. mSdf
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -2997,7 +2693,6 @@ msgctxt ""
msgid "Open file read-only"
msgstr ""
-#. eY%Q
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3007,7 +2702,6 @@ msgctxt ""
msgid "Enter password to allow editing"
msgstr ""
-#. ?qQg
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3017,7 +2711,6 @@ msgctxt ""
msgid "Confirm password"
msgstr ""
-#. CzkZ
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3027,7 +2720,6 @@ msgctxt ""
msgid "Password must be confirmed"
msgstr ""
-#. X7bk
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3037,7 +2729,6 @@ msgctxt ""
msgid "More ~Options"
msgstr ""
-#. N8Nb
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3047,7 +2738,6 @@ msgctxt ""
msgid "Fewer ~Options"
msgstr ""
-#. J=eq
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3057,7 +2747,6 @@ msgctxt ""
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
msgstr ""
-#. DBsf
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3067,7 +2756,6 @@ msgctxt ""
msgid "The confirmation passwords did not match the original passwords. Set the passwords again."
msgstr ""
-#. KIwu
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3077,7 +2765,6 @@ msgctxt ""
msgid "Please enter a password to open or to modify, or check the open read-only option to continue."
msgstr ""
-#. T913
#: passwdomdlg.src
msgctxt ""
"passwdomdlg.src\n"
@@ -3086,7 +2773,6 @@ msgctxt ""
msgid "Set Password"
msgstr ""
-#. GtFb
#: showcols.src
msgctxt ""
"showcols.src\n"
@@ -3096,7 +2782,6 @@ msgctxt ""
msgid "The following columns are currently hidden. Please mark the fields you want to show and choose OK."
msgstr ""
-#. 66\h
#: showcols.src
msgctxt ""
"showcols.src\n"
@@ -3105,7 +2790,6 @@ msgctxt ""
msgid "Show columns"
msgstr ""
-#. ;Nl/
#: cuiimapdlg.src
msgctxt ""
"cuiimapdlg.src\n"
@@ -3115,7 +2799,6 @@ msgctxt ""
msgid "~URL"
msgstr ""
-#. vyqo
#: cuiimapdlg.src
msgctxt ""
"cuiimapdlg.src\n"
@@ -3125,7 +2808,6 @@ msgctxt ""
msgid "F~rame"
msgstr ""
-#. dJ$b
#: cuiimapdlg.src
msgctxt ""
"cuiimapdlg.src\n"
@@ -3135,7 +2817,6 @@ msgctxt ""
msgid "~Name"
msgstr ""
-#. x[gT
#: cuiimapdlg.src
msgctxt ""
"cuiimapdlg.src\n"
@@ -3145,7 +2826,6 @@ msgctxt ""
msgid "Alternative ~text"
msgstr ""
-#. Jj@1
#: cuiimapdlg.src
#, fuzzy
msgctxt ""
@@ -3156,7 +2836,6 @@ msgctxt ""
msgid "~Description"
msgstr "وضاحت"
-#. m%N9
#: cuiimapdlg.src
msgctxt ""
"cuiimapdlg.src\n"
@@ -3165,7 +2844,6 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. -|w`
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3175,7 +2853,6 @@ msgctxt ""
msgid "Search for"
msgstr ""
-#. cjUW
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3185,7 +2862,6 @@ msgctxt ""
msgid "~Text"
msgstr ""
-#. 1wk!
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3195,7 +2871,6 @@ msgctxt ""
msgid "Field content is ~NULL"
msgstr ""
-#. iIi@
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3205,7 +2880,6 @@ msgctxt ""
msgid "Field content is not NU~LL"
msgstr ""
-#. F:2/
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3215,7 +2889,6 @@ msgctxt ""
msgid "Where to search"
msgstr ""
-#. ,ugO
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3225,7 +2898,6 @@ msgctxt ""
msgid "Form"
msgstr ""
-#. HDyg
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3235,7 +2907,6 @@ msgctxt ""
msgid "All Fields"
msgstr ""
-#. 8B5A
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3245,7 +2916,6 @@ msgctxt ""
msgid "Single field"
msgstr ""
-#. }9g]
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3255,7 +2925,6 @@ msgctxt ""
msgid "Settings"
msgstr ""
-#. p%(*
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3265,7 +2934,6 @@ msgctxt ""
msgid "Position"
msgstr ""
-#. -Tst
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3275,7 +2943,6 @@ msgctxt ""
msgid "Apply field format"
msgstr ""
-#. n\8{
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3285,7 +2952,6 @@ msgctxt ""
msgid "Match case"
msgstr ""
-#. it|3
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3295,7 +2961,6 @@ msgctxt ""
msgid "Search backwards"
msgstr ""
-#. O`ez
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3305,7 +2970,6 @@ msgctxt ""
msgid "From Beginning"
msgstr ""
-#. 16xC
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3315,7 +2979,6 @@ msgctxt ""
msgid "Wildcard expression"
msgstr ""
-#. 0g-H
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3325,7 +2988,6 @@ msgctxt ""
msgid "Regular expression"
msgstr ""
-#. W8;M
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3335,7 +2997,6 @@ msgctxt ""
msgid "Similarity Search"
msgstr ""
-#. m31=
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3345,7 +3006,6 @@ msgctxt ""
msgid "..."
msgstr ""
-#. jJ*}
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3355,7 +3015,6 @@ msgctxt ""
msgid "Match character width"
msgstr ""
-#. 3`xm
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3365,7 +3024,6 @@ msgctxt ""
msgid "Sounds like (Japanese)"
msgstr ""
-#. j7Sm
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3375,7 +3033,6 @@ msgctxt ""
msgid "..."
msgstr ""
-#. |`#C
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3385,7 +3042,6 @@ msgctxt ""
msgid "State"
msgstr ""
-#. 9VXk
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3395,7 +3051,6 @@ msgctxt ""
msgid "Record :"
msgstr ""
-#. +m`C
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3405,7 +3060,6 @@ msgctxt ""
msgid "Search"
msgstr ""
-#. ON)R
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3415,7 +3069,6 @@ msgctxt ""
msgid "~Close"
msgstr ""
-#. F([F
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3425,7 +3078,6 @@ msgctxt ""
msgid "~Help"
msgstr ""
-#. USgK
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3434,7 +3086,6 @@ msgctxt ""
msgid "Record Search"
msgstr ""
-#. kZ`W
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3443,7 +3094,6 @@ msgctxt ""
msgid "anywhere in the field"
msgstr ""
-#. $?Bi
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3452,7 +3102,6 @@ msgctxt ""
msgid "beginning of field"
msgstr ""
-#. 2m2z
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3461,7 +3110,6 @@ msgctxt ""
msgid "end of field"
msgstr ""
-#. 9y\(
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3470,7 +3118,6 @@ msgctxt ""
msgid "entire field"
msgstr ""
-#. Fyg1
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3479,7 +3126,6 @@ msgctxt ""
msgid "From top"
msgstr ""
-#. |pB(
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3488,7 +3134,6 @@ msgctxt ""
msgid "From bottom"
msgstr ""
-#. W1kf
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3497,7 +3142,6 @@ msgctxt ""
msgid "No records corresponding to your data found."
msgstr ""
-#. Nrm$
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3506,7 +3150,6 @@ msgctxt ""
msgid "An unknown error occurred. The search could not be finished."
msgstr ""
-#. $9EZ
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3515,7 +3158,6 @@ msgctxt ""
msgid "Overflow, search continued at the beginning"
msgstr ""
-#. *9Ss
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3524,7 +3166,6 @@ msgctxt ""
msgid "Overflow, search continued at the end"
msgstr ""
-#. _wV?
#: fmsearch.src
msgctxt ""
"fmsearch.src\n"
@@ -3533,7 +3174,6 @@ msgctxt ""
msgid "counting records"
msgstr ""
-#. r7HA
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3543,7 +3183,6 @@ msgctxt ""
msgid "Hyperlink type"
msgstr ""
-#. 0NYm
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3553,7 +3192,6 @@ msgctxt ""
msgid "~Web"
msgstr ""
-#. $Qtr
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3563,7 +3201,6 @@ msgctxt ""
msgid "~FTP"
msgstr ""
-#. (f_?
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3573,7 +3210,6 @@ msgctxt ""
msgid "Tar~get"
msgstr ""
-#. SeM#
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3583,7 +3219,6 @@ msgctxt ""
msgid "~Login name"
msgstr ""
-#. ,LPj
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3593,7 +3228,6 @@ msgctxt ""
msgid "~Password"
msgstr ""
-#. eU:P
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3603,7 +3237,6 @@ msgctxt ""
msgid "Anonymous ~user"
msgstr ""
-#. ,Bu[
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3613,7 +3246,6 @@ msgctxt ""
msgid "WWW Browser"
msgstr ""
-#. pVIH
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3623,7 +3255,6 @@ msgctxt ""
msgid "Open web browser, copy an URL, and paste it to Target field"
msgstr ""
-#. jP[4
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3633,7 +3264,6 @@ msgctxt ""
msgid "Further settings"
msgstr ""
-#. pwv)
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3643,7 +3273,6 @@ msgctxt ""
msgid "F~rame"
msgstr ""
-#. V44A
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3653,7 +3282,6 @@ msgctxt ""
msgid "F~orm"
msgstr ""
-#. i352
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3663,7 +3291,6 @@ msgctxt ""
msgid "Text"
msgstr ""
-#. JoDD
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3673,7 +3300,6 @@ msgctxt ""
msgid "Button"
msgstr ""
-#. +.[]
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3683,7 +3309,6 @@ msgctxt ""
msgid "Te~xt"
msgstr ""
-#. TQ1?
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3693,7 +3318,6 @@ msgctxt ""
msgid "N~ame"
msgstr ""
-#. xp?2
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3703,7 +3327,6 @@ msgctxt ""
msgid "Events"
msgstr ""
-#. pB%$
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3713,7 +3336,6 @@ msgctxt ""
msgid "Events"
msgstr ""
-#. IOK:
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3722,7 +3344,6 @@ msgctxt ""
msgid "Hyperlink"
msgstr ""
-#. P^3(
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3732,7 +3353,6 @@ msgctxt ""
msgid "Mail & news"
msgstr ""
-#. ?o1U
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3742,7 +3362,6 @@ msgctxt ""
msgid "~E-mail"
msgstr ""
-#. 5#*Q
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3752,7 +3371,6 @@ msgctxt ""
msgid "~News"
msgstr ""
-#. PCm2
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3762,7 +3380,6 @@ msgctxt ""
msgid "Re~cipient"
msgstr ""
-#. V4A0
#: hyperdlg.src
#, fuzzy
msgctxt ""
@@ -3773,7 +3390,6 @@ msgctxt ""
msgid "~Subject"
msgstr "موضوع"
-#. Q=F`
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3783,7 +3399,6 @@ msgctxt ""
msgid "Data Sources..."
msgstr ""
-#. A)ZY
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3793,7 +3408,6 @@ msgctxt ""
msgid "Data Sources..."
msgstr ""
-#. h}Wq
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3803,7 +3417,6 @@ msgctxt ""
msgid "Further settings"
msgstr ""
-#. _-w;
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3813,7 +3426,6 @@ msgctxt ""
msgid "F~rame"
msgstr ""
-#. 9I9S
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3823,7 +3435,6 @@ msgctxt ""
msgid "F~orm"
msgstr ""
-#. !$_;
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3833,7 +3444,6 @@ msgctxt ""
msgid "Text"
msgstr ""
-#. 59P;
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3843,7 +3453,6 @@ msgctxt ""
msgid "Button"
msgstr ""
-#. ^@0{
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3853,7 +3462,6 @@ msgctxt ""
msgid "Te~xt"
msgstr ""
-#. /dnx
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3863,7 +3471,6 @@ msgctxt ""
msgid "N~ame"
msgstr ""
-#. p`hr
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3873,7 +3480,6 @@ msgctxt ""
msgid "Events"
msgstr ""
-#. aBLz
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3883,7 +3489,6 @@ msgctxt ""
msgid "Events"
msgstr ""
-#. ?Rac
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3892,7 +3497,6 @@ msgctxt ""
msgid "Hyperlink"
msgstr ""
-#. j6u`
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3902,7 +3506,6 @@ msgctxt ""
msgid "Document"
msgstr ""
-#. 1=Te
#: hyperdlg.src
#, fuzzy
msgctxt ""
@@ -3913,7 +3516,6 @@ msgctxt ""
msgid "~Path"
msgstr "~مقام:"
-#. ~!|B
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3923,7 +3525,6 @@ msgctxt ""
msgid "Open File"
msgstr ""
-#. s-25
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3933,7 +3534,6 @@ msgctxt ""
msgid "Open File"
msgstr ""
-#. NgmW
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3943,7 +3543,6 @@ msgctxt ""
msgid "Target in document"
msgstr ""
-#. #MYW
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3953,7 +3552,6 @@ msgctxt ""
msgid "Targ~et"
msgstr ""
-#. A@6_
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3963,7 +3561,6 @@ msgctxt ""
msgid "URL"
msgstr ""
-#. ph[;
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3973,7 +3570,6 @@ msgctxt ""
msgid "Test text"
msgstr ""
-#. $R`(
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3983,7 +3579,6 @@ msgctxt ""
msgid "Target in Document"
msgstr ""
-#. 0]co
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -3993,7 +3588,6 @@ msgctxt ""
msgid "Target in Document"
msgstr ""
-#. FF^(
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4003,7 +3597,6 @@ msgctxt ""
msgid "Further settings"
msgstr ""
-#. {awi
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4013,7 +3606,6 @@ msgctxt ""
msgid "F~rame"
msgstr ""
-#. ZV\O
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4023,7 +3615,6 @@ msgctxt ""
msgid "F~orm"
msgstr ""
-#. [z4K
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4033,7 +3624,6 @@ msgctxt ""
msgid "Text"
msgstr ""
-#. ,U.W
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4043,7 +3633,6 @@ msgctxt ""
msgid "Button"
msgstr ""
-#. kvbO
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4053,7 +3642,6 @@ msgctxt ""
msgid "Te~xt"
msgstr ""
-#. `|m|
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4063,7 +3651,6 @@ msgctxt ""
msgid "N~ame"
msgstr ""
-#. D\6F
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4073,7 +3660,6 @@ msgctxt ""
msgid "Events"
msgstr ""
-#. td!k
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4083,7 +3669,6 @@ msgctxt ""
msgid "Events"
msgstr ""
-#. ]%Px
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4092,7 +3677,6 @@ msgctxt ""
msgid "Hyperlink"
msgstr ""
-#. *-*d
#: hyperdlg.src
#, fuzzy
msgctxt ""
@@ -4103,7 +3687,6 @@ msgctxt ""
msgid "New document"
msgstr "نئی کتاب"
-#. Q9Pb
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4113,7 +3696,6 @@ msgctxt ""
msgid "Edit ~now"
msgstr ""
-#. 6:]p
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4123,7 +3705,6 @@ msgctxt ""
msgid "Edit ~later"
msgstr ""
-#. 5m$V
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4133,7 +3714,6 @@ msgctxt ""
msgid "~File"
msgstr ""
-#. V0m0
#: hyperdlg.src
#, fuzzy
msgctxt ""
@@ -4144,7 +3724,6 @@ msgctxt ""
msgid "File ~type"
msgstr "فائل کی نو~عیت:"
-#. sNOa
#: hyperdlg.src
#, fuzzy
msgctxt ""
@@ -4155,7 +3734,6 @@ msgctxt ""
msgid "Select Path"
msgstr "مقام منتخب کیجئے"
-#. (:A,
#: hyperdlg.src
#, fuzzy
msgctxt ""
@@ -4166,7 +3744,6 @@ msgctxt ""
msgid "Select Path"
msgstr "مقام منتخب کیجئے"
-#. -]a3
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4176,7 +3753,6 @@ msgctxt ""
msgid "Further settings"
msgstr ""
-#. fmXl
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4186,7 +3762,6 @@ msgctxt ""
msgid "F~rame"
msgstr ""
-#. |86V
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4196,7 +3771,6 @@ msgctxt ""
msgid "F~orm"
msgstr ""
-#. mKrs
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4206,7 +3780,6 @@ msgctxt ""
msgid "Text"
msgstr ""
-#. IFOf
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4216,7 +3789,6 @@ msgctxt ""
msgid "Button"
msgstr ""
-#. r6BB
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4226,7 +3798,6 @@ msgctxt ""
msgid "Te~xt"
msgstr ""
-#. ~Mq(
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4236,7 +3807,6 @@ msgctxt ""
msgid "N~ame"
msgstr ""
-#. dZXk
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4246,7 +3816,6 @@ msgctxt ""
msgid "Events"
msgstr ""
-#. zK]z
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4256,7 +3825,6 @@ msgctxt ""
msgid "Events"
msgstr ""
-#. x;ZE
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4265,7 +3833,6 @@ msgctxt ""
msgid "Hyperlink"
msgstr ""
-#. 09mE
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4274,7 +3841,6 @@ msgctxt ""
msgid "Hyperlink"
msgstr ""
-#. ]-/)
#: hyperdlg.src
#, fuzzy
msgctxt ""
@@ -4284,7 +3850,6 @@ msgctxt ""
msgid "Apply"
msgstr "لاگو کیجئے"
-#. TQGN
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4293,7 +3858,6 @@ msgctxt ""
msgid "Close"
msgstr ""
-#. N$)L
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4302,7 +3866,6 @@ msgctxt ""
msgid "Mouse over object"
msgstr ""
-#. ~,38
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4311,7 +3874,6 @@ msgctxt ""
msgid "Trigger hyperlink"
msgstr ""
-#. !\1h
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4320,7 +3882,6 @@ msgctxt ""
msgid "Mouse leaves object"
msgstr ""
-#. (2V!
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4329,7 +3890,6 @@ msgctxt ""
msgid "Please type in a valid file name."
msgstr ""
-#. .mG@
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4338,7 +3898,6 @@ msgctxt ""
msgid "Internet"
msgstr ""
-#. mSyU
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4347,7 +3906,6 @@ msgctxt ""
msgid "This is where you create a hyperlink to a Web page or FTP server connection."
msgstr ""
-#. A5}_
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4356,7 +3914,6 @@ msgctxt ""
msgid "Mail & News"
msgstr ""
-#. cHu(
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4365,7 +3922,6 @@ msgctxt ""
msgid "This is where you create a hyperlink to an e-mail address or newsgroup."
msgstr ""
-#. KN!U
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4374,7 +3930,6 @@ msgctxt ""
msgid "Document"
msgstr ""
-#. eP`}
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4383,7 +3938,6 @@ msgctxt ""
msgid "This is where you create a hyperlink to an existing document or a target within a document."
msgstr ""
-#. kU1%
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4392,7 +3946,6 @@ msgctxt ""
msgid "New Document"
msgstr "نئی کتاب"
-#. %r;g
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4401,7 +3954,6 @@ msgctxt ""
msgid "This is where you create a new document to which the new link points."
msgstr ""
-#. ?h/R
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4410,7 +3962,6 @@ msgctxt ""
msgid "Button"
msgstr ""
-#. mAnp
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
@@ -4419,7 +3970,6 @@ msgctxt ""
msgid "Text"
msgstr ""
-#. X(k6
#: hyperdlg.src
msgctxt ""
"hyperdlg.src\n"
diff --git a/source/ur/cui/source/options.po b/source/ur/cui/source/options.po
index bdb09bb35df..ad13cad4040 100644
--- a/source/ur/cui/source/options.po
+++ b/source/ur/cui/source/options.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-02-24 15:57+0200\n"
"Last-Translator: Yasir <urdulizer@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. A=\H
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "~Apply replacement table"
msgstr ""
-#. odH$
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "~Font"
msgstr ""
-#. \q-r
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "Re~place with"
msgstr ""
-#. onWg
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Apply"
msgstr "لاگو کیجئے"
-#. `z0Z
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "Delete"
msgstr ""
-#. ]@Zo
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -75,7 +69,6 @@ msgctxt ""
msgid "Font settings for HTML, Basic and SQL sources"
msgstr ""
-#. ?yp8
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "Fonts"
msgstr ""
-#. A\x7
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "Non-proportional fonts only"
msgstr ""
-#. @jQo
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "~Size"
msgstr ""
-#. pk(;
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -115,7 +105,6 @@ msgctxt ""
msgid "Always"
msgstr ""
-#. j/M%
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -125,7 +114,6 @@ msgctxt ""
msgid "Screen only"
msgstr ""
-#. \8--
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -135,7 +123,6 @@ msgctxt ""
msgid "Font"
msgstr ""
-#. NI?w
#: fontsubs.src
msgctxt ""
"fontsubs.src\n"
@@ -145,7 +132,6 @@ msgctxt ""
msgid "Replace with"
msgstr ""
-#. F?eD
#: fontsubs.src
#, fuzzy
msgctxt ""
@@ -156,7 +142,6 @@ msgctxt ""
msgid "Automatic"
msgstr "خودکار"
-#. ~0FQ
#: internationaloptions.src
msgctxt ""
"internationaloptions.src\n"
@@ -166,7 +151,6 @@ msgctxt ""
msgid "Default text direction"
msgstr ""
-#. obv%
#: internationaloptions.src
msgctxt ""
"internationaloptions.src\n"
@@ -176,7 +160,6 @@ msgctxt ""
msgid "~Left-to-right"
msgstr ""
-#. 8hHh
#: internationaloptions.src
msgctxt ""
"internationaloptions.src\n"
@@ -186,7 +169,6 @@ msgctxt ""
msgid "~Right-to-left"
msgstr ""
-#. M(q2
#: internationaloptions.src
msgctxt ""
"internationaloptions.src\n"
@@ -196,7 +178,6 @@ msgctxt ""
msgid "Sheet view"
msgstr ""
-#. l@hP
#: internationaloptions.src
msgctxt ""
"internationaloptions.src\n"
@@ -206,7 +187,6 @@ msgctxt ""
msgid "Right-~to-left"
msgstr ""
-#. %djQ
#: internationaloptions.src
msgctxt ""
"internationaloptions.src\n"
@@ -216,7 +196,6 @@ msgctxt ""
msgid "~Current document only"
msgstr ""
-#. f`v;
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -226,7 +205,6 @@ msgctxt ""
msgid "Color scheme"
msgstr ""
-#. \BMw
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -236,7 +214,6 @@ msgctxt ""
msgid "Scheme"
msgstr ""
-#. Mn%,
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -246,7 +223,6 @@ msgctxt ""
msgid "Save..."
msgstr ""
-#. 6jmD
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -256,7 +232,6 @@ msgctxt ""
msgid "Delete"
msgstr ""
-#. k+mp
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -266,7 +241,6 @@ msgctxt ""
msgid "Custom colors"
msgstr ""
-#. HJdj
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -276,7 +250,6 @@ msgctxt ""
msgid "On"
msgstr "آن "
-#. `?5*
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -286,7 +259,6 @@ msgctxt ""
msgid "User interface elements"
msgstr ""
-#. K]2@
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -296,7 +268,6 @@ msgctxt ""
msgid "Color setting"
msgstr ""
-#. N-WH
#: optcolor.src
#, fuzzy
msgctxt ""
@@ -307,7 +278,6 @@ msgctxt ""
msgid "Preview"
msgstr "مشاہد~ہ"
-#. E!Sq
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -317,7 +287,6 @@ msgctxt ""
msgid "General"
msgstr ""
-#. nhy+
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -327,7 +296,6 @@ msgctxt ""
msgid "Document background"
msgstr ""
-#. *~K*
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -337,7 +305,6 @@ msgctxt ""
msgid "Text boundaries"
msgstr ""
-#. h]I.
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -347,7 +314,6 @@ msgctxt ""
msgid "Application background"
msgstr ""
-#. fDF;
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -357,7 +323,6 @@ msgctxt ""
msgid "Object boundaries"
msgstr ""
-#. lbY~
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -367,7 +332,6 @@ msgctxt ""
msgid "Table boundaries"
msgstr ""
-#. G[YZ
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -377,7 +341,6 @@ msgctxt ""
msgid "Font color"
msgstr ""
-#. QhTp
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -387,7 +350,6 @@ msgctxt ""
msgid "Unvisited links"
msgstr ""
-#. +U],
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -397,7 +359,6 @@ msgctxt ""
msgid "Visited links"
msgstr ""
-#. )m1@
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -407,7 +368,6 @@ msgctxt ""
msgid "AutoSpellcheck"
msgstr ""
-#. h4Xu
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -417,7 +377,6 @@ msgctxt ""
msgid "Smart Tags"
msgstr ""
-#. hw3I
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -427,7 +386,6 @@ msgctxt ""
msgid "Shadows"
msgstr ""
-#. ]5`f
#: optcolor.src
#, fuzzy
msgctxt ""
@@ -438,7 +396,6 @@ msgctxt ""
msgid "Text Document"
msgstr "نئی کتاب"
-#. 4s.*
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -448,7 +405,6 @@ msgctxt ""
msgid "Grid"
msgstr ""
-#. g]9j
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -458,7 +414,6 @@ msgctxt ""
msgid "Field shadings"
msgstr ""
-#. VAu1
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -468,7 +423,6 @@ msgctxt ""
msgid "Index and table shadings"
msgstr ""
-#. ~;h`
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -478,7 +432,6 @@ msgctxt ""
msgid "Script indicator"
msgstr ""
-#. HQ?J
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -488,7 +441,6 @@ msgctxt ""
msgid "Section boundaries"
msgstr ""
-#. i1zC
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -498,7 +450,6 @@ msgctxt ""
msgid "Headers and Footer delimiter"
msgstr ""
-#. b:?Q
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -508,7 +459,6 @@ msgctxt ""
msgid "Page and column breaks"
msgstr ""
-#. 7a{;
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -518,7 +468,6 @@ msgctxt ""
msgid "Direct cursor"
msgstr ""
-#. *a81
#: optcolor.src
#, fuzzy
msgctxt ""
@@ -529,7 +478,6 @@ msgctxt ""
msgid "HTML Document"
msgstr "HTML دستاویز"
-#. O72Y
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -539,7 +487,6 @@ msgctxt ""
msgid "SGML syntax highlighting"
msgstr ""
-#. P:Mr
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -549,7 +496,6 @@ msgctxt ""
msgid "Comment highlighting"
msgstr ""
-#. egNR
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -559,7 +505,6 @@ msgctxt ""
msgid "Keyword highlighting"
msgstr ""
-#. U^=j
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -569,7 +514,6 @@ msgctxt ""
msgid "Text"
msgstr ""
-#. #g.f
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -579,7 +523,6 @@ msgctxt ""
msgid "Spreadsheet"
msgstr ""
-#. 7fQQ
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -589,7 +532,6 @@ msgctxt ""
msgid "Grid lines"
msgstr ""
-#. |N03
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -599,7 +541,6 @@ msgctxt ""
msgid "Page breaks"
msgstr ""
-#. Z/`c
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -609,7 +550,6 @@ msgctxt ""
msgid "Manual page breaks"
msgstr ""
-#. c3J6
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -619,7 +559,6 @@ msgctxt ""
msgid "Automatic page breaks"
msgstr ""
-#. b/b)
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -629,7 +568,6 @@ msgctxt ""
msgid "Detective"
msgstr ""
-#. dN3T
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -639,7 +577,6 @@ msgctxt ""
msgid "Detective error"
msgstr ""
-#. 3#:,
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -649,7 +586,6 @@ msgctxt ""
msgid "References"
msgstr ""
-#. )+)m
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -659,7 +595,6 @@ msgctxt ""
msgid "Notes background"
msgstr ""
-#. xeXK
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -669,7 +604,6 @@ msgctxt ""
msgid "Drawing / Presentation"
msgstr ""
-#. 1~UG
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -679,7 +613,6 @@ msgctxt ""
msgid "Grid"
msgstr ""
-#. eY-7
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -689,7 +622,6 @@ msgctxt ""
msgid "Basic Syntax Highlighting"
msgstr ""
-#. E]Y%
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -699,7 +631,6 @@ msgctxt ""
msgid "Identifier"
msgstr ""
-#. ppBS
#: optcolor.src
#, fuzzy
msgctxt ""
@@ -710,7 +641,6 @@ msgctxt ""
msgid "Comment"
msgstr "آراء"
-#. VRZD
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -720,7 +650,6 @@ msgctxt ""
msgid "Number"
msgstr ""
-#. TV`8
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -730,7 +659,6 @@ msgctxt ""
msgid "String"
msgstr ""
-#. G3n@
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -740,7 +668,6 @@ msgctxt ""
msgid "Operator"
msgstr ""
-#. tS83
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -750,7 +677,6 @@ msgctxt ""
msgid "Reserved expression"
msgstr ""
-#. TKG7
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -760,7 +686,6 @@ msgctxt ""
msgid "Error"
msgstr ""
-#. /@+6
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -770,7 +695,6 @@ msgctxt ""
msgid "SQL Syntax Highlighting"
msgstr ""
-#. rl/b
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -780,7 +704,6 @@ msgctxt ""
msgid "Identifier"
msgstr ""
-#. OEOC
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -790,7 +713,6 @@ msgctxt ""
msgid "Number"
msgstr ""
-#. t/k;
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -800,7 +722,6 @@ msgctxt ""
msgid "String"
msgstr ""
-#. (pRG
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -810,7 +731,6 @@ msgctxt ""
msgid "Operator"
msgstr ""
-#. O6.s
#: optcolor.src
#, fuzzy
msgctxt ""
@@ -821,7 +741,6 @@ msgctxt ""
msgid "Keyword"
msgstr "کلیدی الفاظ"
-#. [?JL
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -831,7 +750,6 @@ msgctxt ""
msgid "Parameter"
msgstr ""
-#. /Y[\
#: optcolor.src
#, fuzzy
msgctxt ""
@@ -842,7 +760,6 @@ msgctxt ""
msgid "Comment"
msgstr "آراء"
-#. vu[c
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -852,7 +769,6 @@ msgctxt ""
msgid "Colorsettings of the Extensions"
msgstr ""
-#. \ig?
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -862,7 +778,6 @@ msgctxt ""
msgid "Spell check highlighting"
msgstr ""
-#. F@`=
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -872,7 +787,6 @@ msgctxt ""
msgid "Grammar check highlighting"
msgstr ""
-#. /7J?
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -881,7 +795,6 @@ msgctxt ""
msgid "Do you really want to delete the color scheme?"
msgstr ""
-#. A*.;
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -890,7 +803,6 @@ msgctxt ""
msgid "Color Scheme Deletion"
msgstr ""
-#. xvT}
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -899,7 +811,6 @@ msgctxt ""
msgid "Save scheme"
msgstr ""
-#. [5mX
#: optcolor.src
msgctxt ""
"optcolor.src\n"
@@ -908,7 +819,6 @@ msgctxt ""
msgid "Name of color scheme"
msgstr ""
-#. B}jR
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -918,7 +828,6 @@ msgctxt ""
msgid "Miscellaneous options"
msgstr ""
-#. =:Q$
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -928,7 +837,6 @@ msgctxt ""
msgid "Support ~assistive technology tools (program restart required)"
msgstr ""
-#. WcI~
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -938,7 +846,6 @@ msgctxt ""
msgid "Use te~xt selection cursor in read-only text documents"
msgstr ""
-#. C-dh
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -948,7 +855,6 @@ msgctxt ""
msgid "Allow animated ~graphics"
msgstr ""
-#. kweM
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -958,7 +864,6 @@ msgctxt ""
msgid "Allow animated ~text"
msgstr ""
-#. =|Lk
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -968,7 +873,6 @@ msgctxt ""
msgid "~Help tips disappear after "
msgstr ""
-#. 4,NJ
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -978,7 +882,6 @@ msgctxt ""
msgid "seconds"
msgstr ""
-#. GaI6
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -988,7 +891,6 @@ msgctxt ""
msgid "Options for high contrast appearance"
msgstr ""
-#. q`[|
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -998,7 +900,6 @@ msgctxt ""
msgid "Automatically ~detect high contrast mode of operating system"
msgstr ""
-#. gpk%
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -1008,7 +909,6 @@ msgctxt ""
msgid "Use automatic font ~color for screen display"
msgstr ""
-#. .Ij2
#: optaccessibility.src
msgctxt ""
"optaccessibility.src\n"
@@ -1018,7 +918,6 @@ msgctxt ""
msgid "~Use system colors for page previews"
msgstr ""
-#. 2x9@
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1028,7 +927,6 @@ msgctxt ""
msgid "Connection pool"
msgstr ""
-#. 82!s
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1038,7 +936,6 @@ msgctxt ""
msgid "Connection pooling enabled"
msgstr ""
-#. ZGsP
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1048,7 +945,6 @@ msgctxt ""
msgid "Drivers known in %PRODUCTNAME"
msgstr ""
-#. g/*C
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1058,7 +954,6 @@ msgctxt ""
msgid "Current driver:"
msgstr ""
-#. ?/pU
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1068,7 +963,6 @@ msgctxt ""
msgid "Enable pooling for this driver"
msgstr ""
-#. DGgy
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1078,7 +972,6 @@ msgctxt ""
msgid "Timeout (seconds)"
msgstr ""
-#. R]t8
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1088,7 +981,6 @@ msgctxt ""
msgid "Driver name"
msgstr ""
-#. UZ7P
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1098,7 +990,6 @@ msgctxt ""
msgid "Pool"
msgstr ""
-#. sJ!}
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1108,7 +999,6 @@ msgctxt ""
msgid "Timeout"
msgstr ""
-#. E8nj
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1118,7 +1008,6 @@ msgctxt ""
msgid "Yes"
msgstr "جی "
-#. Mjva
#: connpooloptions.src
msgctxt ""
"connpooloptions.src\n"
@@ -1128,7 +1017,6 @@ msgctxt ""
msgid "No"
msgstr "نهی"
-#. X6z@
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1138,7 +1026,6 @@ msgctxt ""
msgid "Options"
msgstr ""
-#. h{?i
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1148,7 +1035,6 @@ msgctxt ""
msgid "Language"
msgstr ""
-#. 13lr
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1158,7 +1044,6 @@ msgctxt ""
msgid "Move Up"
msgstr ""
-#. Kk;M
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1168,7 +1053,6 @@ msgctxt ""
msgid "Move Down"
msgstr ""
-#. A[h6
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1178,7 +1062,6 @@ msgctxt ""
msgid "~Back"
msgstr ""
-#. \4Fz
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1188,7 +1071,6 @@ msgctxt ""
msgid "~Get more dictionaries online..."
msgstr ""
-#. UK\l
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1198,7 +1080,6 @@ msgctxt ""
msgid "Close"
msgstr ""
-#. =s*M
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1208,7 +1089,6 @@ msgctxt ""
msgid "Spelling"
msgstr ""
-#. vR0*
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1218,7 +1098,6 @@ msgctxt ""
msgid "Hyphenation"
msgstr ""
-#. l^r:
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1228,7 +1107,6 @@ msgctxt ""
msgid "Thesaurus"
msgstr ""
-#. oYol
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1238,7 +1116,6 @@ msgctxt ""
msgid "Grammar"
msgstr ""
-#. ld~b
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1247,7 +1124,6 @@ msgctxt ""
msgid "Edit Modules"
msgstr ""
-#. =*6X
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1257,7 +1133,6 @@ msgctxt ""
msgid "Characters before break"
msgstr ""
-#. l^`~
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1267,7 +1142,6 @@ msgctxt ""
msgid "Characters after break"
msgstr ""
-#. %2Y3
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1277,7 +1151,6 @@ msgctxt ""
msgid "Minimal word length"
msgstr ""
-#. plc8
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1286,7 +1159,6 @@ msgctxt ""
msgid "Hyphenation"
msgstr ""
-#. g)%k
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1296,7 +1168,6 @@ msgctxt ""
msgid "Writing aids"
msgstr ""
-#. ^2GQ
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1306,7 +1177,6 @@ msgctxt ""
msgid "Available language modules"
msgstr ""
-#. ;*(T
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1316,7 +1186,6 @@ msgctxt ""
msgid "~Edit..."
msgstr ""
-#. 25qH
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1326,7 +1195,6 @@ msgctxt ""
msgid "User-defined dictionaries"
msgstr ""
-#. cF:O
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1336,7 +1204,6 @@ msgctxt ""
msgid "~New..."
msgstr ""
-#. 5gA+
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1346,7 +1213,6 @@ msgctxt ""
msgid "Ed~it..."
msgstr ""
-#. RImA
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1356,7 +1222,6 @@ msgctxt ""
msgid "~Delete"
msgstr ""
-#. D?(.
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1366,7 +1231,6 @@ msgctxt ""
msgid "~Options"
msgstr ""
-#. ~f/{
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1376,7 +1240,6 @@ msgctxt ""
msgid "Edi~t..."
msgstr ""
-#. \0)i
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1386,7 +1249,6 @@ msgctxt ""
msgid "~Get more dictionaries online..."
msgstr ""
-#. qh4p
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1396,7 +1258,6 @@ msgctxt ""
msgid "Check uppercase words"
msgstr ""
-#. XFy]
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1406,17 +1267,6 @@ msgctxt ""
msgid "Check words with numbers "
msgstr ""
-#. b#n5
-#: optlingu.src
-msgctxt ""
-"optlingu.src\n"
-"RID_SFXPAGE_LINGU\n"
-"STR_CAPITALIZATION\n"
-"string.text"
-msgid "Check capitalization"
-msgstr ""
-
-#. w+UH
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1426,7 +1276,6 @@ msgctxt ""
msgid "Check special regions"
msgstr ""
-#. J@b?
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1436,7 +1285,6 @@ msgctxt ""
msgid "Check spelling as you type"
msgstr ""
-#. !bY}
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1446,7 +1294,6 @@ msgctxt ""
msgid "Check grammar as you type"
msgstr ""
-#. vT^Y
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1456,7 +1303,6 @@ msgctxt ""
msgid "Minimal number of characters for hyphenation: "
msgstr ""
-#. Jjl;
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1466,7 +1312,6 @@ msgctxt ""
msgid "Characters before line break: "
msgstr ""
-#. $__I
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1476,7 +1321,6 @@ msgctxt ""
msgid "Characters after line break: "
msgstr ""
-#. c_U/
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1486,7 +1330,6 @@ msgctxt ""
msgid "Hyphenate without inquiry"
msgstr ""
-#. iAE1
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1496,7 +1339,6 @@ msgctxt ""
msgid "Hyphenate special regions"
msgstr ""
-#. m7s6
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1506,7 +1348,6 @@ msgctxt ""
msgid "Edit Available language modules"
msgstr ""
-#. 7Q/l
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1516,7 +1357,6 @@ msgctxt ""
msgid "Edit User-defined dictionaries"
msgstr ""
-#. 7,P;
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1526,7 +1366,6 @@ msgctxt ""
msgid "Edit Options"
msgstr ""
-#. g|q^
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1535,7 +1374,6 @@ msgctxt ""
msgid "Options"
msgstr ""
-#. jI9]
#: optlingu.src
msgctxt ""
"optlingu.src\n"
@@ -1544,7 +1382,6 @@ msgctxt ""
msgid "Do you want to delete the dictionary?"
msgstr ""
-#. OP:W
#: optsave.src
#, fuzzy
msgctxt ""
@@ -1554,7 +1391,6 @@ msgctxt ""
msgid "Save"
msgstr "محفو~ظ کیجئے"
-#. (Gqx
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1564,7 +1400,6 @@ msgctxt ""
msgid "Load"
msgstr ""
-#. oSZ,
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1574,7 +1409,6 @@ msgctxt ""
msgid "Load user-specific settings with the document"
msgstr ""
-#. `@VC
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1584,7 +1418,6 @@ msgctxt ""
msgid "Load printer settings with the document"
msgstr ""
-#. T^mK
#: optsave.src
#, fuzzy
msgctxt ""
@@ -1595,7 +1428,6 @@ msgctxt ""
msgid "Save"
msgstr "محفو~ظ کیجئے"
-#. t%iL
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1605,7 +1437,6 @@ msgctxt ""
msgid "~Edit document properties before saving"
msgstr ""
-#. -[uP
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1615,7 +1446,6 @@ msgctxt ""
msgid "Al~ways create backup copy"
msgstr ""
-#. 0j[z
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1625,7 +1455,6 @@ msgctxt ""
msgid "Save ~AutoRecovery information every"
msgstr ""
-#. ;W1!
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1635,7 +1464,6 @@ msgctxt ""
msgid "Minutes"
msgstr ""
-#. nUa=
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1645,7 +1473,6 @@ msgctxt ""
msgid "Save URLs relative to file system"
msgstr ""
-#. V)$!
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1655,7 +1482,6 @@ msgctxt ""
msgid "Save URLs relative to internet"
msgstr ""
-#. CmX8
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1665,7 +1491,6 @@ msgctxt ""
msgid "Default file format and ODF settings"
msgstr ""
-#. %U6k
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1675,7 +1500,6 @@ msgctxt ""
msgid "ODF format version"
msgstr ""
-#. Lr4b
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1685,7 +1509,6 @@ msgctxt ""
msgid "1.0/1.1"
msgstr ""
-#. t.nq
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1695,7 +1518,6 @@ msgctxt ""
msgid "1.2"
msgstr ""
-#. p7hQ
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1705,7 +1527,6 @@ msgctxt ""
msgid "1.2 Extended (compat mode)"
msgstr ""
-#. ?(b+
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1715,7 +1536,6 @@ msgctxt ""
msgid "1.2 Extended (recommended)"
msgstr ""
-#. q7Qe
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1725,7 +1545,6 @@ msgctxt ""
msgid "Size optimization for ODF format"
msgstr ""
-#. S:3M
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1735,7 +1554,6 @@ msgctxt ""
msgid "Warn when not saving in ODF or default format"
msgstr ""
-#. ;w%I
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1745,7 +1563,6 @@ msgctxt ""
msgid "D~ocument type"
msgstr ""
-#. ~PfO
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1755,7 +1572,6 @@ msgctxt ""
msgid "Always sa~ve as"
msgstr ""
-#. TQqH
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1765,7 +1581,6 @@ msgctxt ""
msgid "Text document"
msgstr ""
-#. F*A7
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1775,7 +1590,6 @@ msgctxt ""
msgid "HTML document"
msgstr "HTML دستاویز"
-#. 43]|
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1785,7 +1599,6 @@ msgctxt ""
msgid "Master document"
msgstr ""
-#. *6i)
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1795,7 +1608,6 @@ msgctxt ""
msgid "Spreadsheet"
msgstr ""
-#. WUb1
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1805,7 +1617,6 @@ msgctxt ""
msgid "Presentation"
msgstr ""
-#. CdO1
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1815,7 +1626,6 @@ msgctxt ""
msgid "Drawing"
msgstr ""
-#. %x|?
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1826,7 +1636,6 @@ msgid "Formula"
msgstr ""
#. EN-US, the term 'extended' must not be translated.
-#. l^u*
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1836,7 +1645,6 @@ msgctxt ""
msgid "Not using ODF 1.2 Extended may cause information to be lost."
msgstr ""
-#. Ls=.
#: optsave.src
msgctxt ""
"optsave.src\n"
@@ -1846,7 +1654,6 @@ msgctxt ""
msgid "Using \"%1\" as default file format may cause information loss.\n"
msgstr ""
-#. zgR5
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1856,7 +1663,6 @@ msgctxt ""
msgid "Size ~1"
msgstr ""
-#. PO2R
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1866,7 +1672,6 @@ msgctxt ""
msgid "Size ~2"
msgstr ""
-#. 3g$2
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1876,7 +1681,6 @@ msgctxt ""
msgid "Size ~3"
msgstr ""
-#. 0r4N
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1886,7 +1690,6 @@ msgctxt ""
msgid "Size ~4"
msgstr ""
-#. MJC6
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1896,7 +1699,6 @@ msgctxt ""
msgid "Size ~5"
msgstr ""
-#. mreQ
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1906,7 +1708,6 @@ msgctxt ""
msgid "Size ~6"
msgstr ""
-#. VcR9
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1916,7 +1717,6 @@ msgctxt ""
msgid "Size ~7"
msgstr ""
-#. C%pS
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1926,7 +1726,6 @@ msgctxt ""
msgid "Font sizes"
msgstr ""
-#. |[RB
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1936,7 +1735,6 @@ msgctxt ""
msgid "Import"
msgstr ""
-#. bNGp
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1946,7 +1744,6 @@ msgctxt ""
msgid "~Use '%ENGLISHUSLOCALE' locale for numbers"
msgstr ""
-#. TxmA
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1956,7 +1753,6 @@ msgctxt ""
msgid "~Import unknown HTML tags as fields"
msgstr ""
-#. MPj\
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1966,7 +1762,6 @@ msgctxt ""
msgid "Ignore ~font settings"
msgstr ""
-#. GM(I
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1976,7 +1771,6 @@ msgctxt ""
msgid "Export"
msgstr ""
-#. ABpI
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1985,7 +1779,6 @@ msgctxt ""
msgid "Display ~warning"
msgstr ""
-#. ^yzu
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -1994,7 +1787,6 @@ msgctxt ""
msgid "~Print layout"
msgstr ""
-#. bmJi
#: opthtml.src
msgctxt ""
"opthtml.src\n"
@@ -2003,7 +1795,6 @@ msgctxt ""
msgid "~Copy local graphics to Internet"
msgstr ""
-#. *6ta
#: opthtml.src
#, fuzzy
msgctxt ""
@@ -2013,7 +1804,6 @@ msgctxt ""
msgid "Character set"
msgstr "حروف"
-#. QsDh
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2023,7 +1813,6 @@ msgctxt ""
msgid "~Company"
msgstr ""
-#. 5~=-
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2033,7 +1822,6 @@ msgctxt ""
msgid "First/Last ~name/Initials"
msgstr ""
-#. G#cq
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2043,7 +1831,6 @@ msgctxt ""
msgid "Last Name/First name/Father's name/Initials"
msgstr ""
-#. xakm
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2053,7 +1840,6 @@ msgctxt ""
msgid "Last/First ~name/Initials"
msgstr ""
-#. /2XD
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2063,7 +1849,6 @@ msgctxt ""
msgid "~Street"
msgstr ""
-#. D+rO
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2073,7 +1858,6 @@ msgctxt ""
msgid "Street/Apartment number"
msgstr ""
-#. O0Ki
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2083,7 +1867,6 @@ msgctxt ""
msgid "Zip/City"
msgstr ""
-#. Uao{
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2093,7 +1876,6 @@ msgctxt ""
msgid "City/State/Zip"
msgstr ""
-#. oyb1
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2103,7 +1885,6 @@ msgctxt ""
msgid "Country/Region"
msgstr ""
-#. ?D$O
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2113,7 +1894,6 @@ msgctxt ""
msgid "~Title/Position"
msgstr ""
-#. [ED-
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2123,7 +1903,6 @@ msgctxt ""
msgid "Tel. (Home/Work)"
msgstr ""
-#. o/5*
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2133,7 +1912,6 @@ msgctxt ""
msgid "Fa~x / E-mail"
msgstr ""
-#. 6dG1
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2143,7 +1921,6 @@ msgctxt ""
msgid "Address "
msgstr ""
-#. :M3h
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2153,7 +1930,6 @@ msgctxt ""
msgid "Use data for document properties"
msgstr ""
-#. =jqL
#: optgenrl.src
msgctxt ""
"optgenrl.src\n"
@@ -2162,7 +1938,6 @@ msgctxt ""
msgid "User Data"
msgstr ""
-#. +fXe
#: readonlyimage.src
msgctxt ""
"readonlyimage.src\n"
@@ -2171,7 +1946,6 @@ msgctxt ""
msgid "This setting is protected by the Administrator"
msgstr ""
-#. Eev*
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2181,7 +1955,6 @@ msgctxt ""
msgid "Security warnings"
msgstr ""
-#. 8A_[
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2191,7 +1964,6 @@ msgctxt ""
msgid "Warn if document contains recorded changes, versions, hidden information or notes:"
msgstr ""
-#. B4O_
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2201,7 +1973,6 @@ msgctxt ""
msgid "When saving or sending"
msgstr ""
-#. shvw
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2211,7 +1982,6 @@ msgctxt ""
msgid "When signing"
msgstr ""
-#. |U;4
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2221,7 +1991,6 @@ msgctxt ""
msgid "When printing"
msgstr ""
-#. ccZm
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2231,7 +2000,6 @@ msgctxt ""
msgid "When creating PDF files"
msgstr ""
-#. kd=Z
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2241,7 +2009,6 @@ msgctxt ""
msgid "Security options"
msgstr ""
-#. GF6W
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2251,7 +2018,6 @@ msgctxt ""
msgid "Remove personal information on saving"
msgstr ""
-#. fJp-
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2261,7 +2027,6 @@ msgctxt ""
msgid "Recommend password protection on saving"
msgstr ""
-#. ;MC6
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2271,7 +2036,6 @@ msgctxt ""
msgid "Ctrl-click required to follow hyperlinks"
msgstr ""
-#. K2#U
#: securityoptions.src
msgctxt ""
"securityoptions.src\n"
@@ -2280,7 +2044,6 @@ msgctxt ""
msgid "Security options and warnings"
msgstr ""
-#. Cp@J
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2290,7 +2053,6 @@ msgctxt ""
msgid "Chart colors"
msgstr ""
-#. ;Rls
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2300,7 +2062,6 @@ msgctxt ""
msgid "Color table"
msgstr ""
-#. 0\bZ
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2310,7 +2071,6 @@ msgctxt ""
msgid "~Add"
msgstr ""
-#. }Jrr
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2320,7 +2080,6 @@ msgctxt ""
msgid "~Remove"
msgstr ""
-#. VVnT
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2330,7 +2089,6 @@ msgctxt ""
msgid "~Default"
msgstr ""
-#. YU9]
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2339,7 +2097,6 @@ msgctxt ""
msgid "Default Colors"
msgstr ""
-#. mPoM
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2348,7 +2105,6 @@ msgctxt ""
msgid "Data Series $(ROW)"
msgstr ""
-#. bo,w
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2357,7 +2113,6 @@ msgctxt ""
msgid "Do you really want to delete the chart color?"
msgstr ""
-#. UU#8
#: optchart.src
msgctxt ""
"optchart.src\n"
@@ -2366,7 +2121,6 @@ msgctxt ""
msgid "Chart Color Deletion"
msgstr ""
-#. |FlO
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2376,7 +2130,6 @@ msgctxt ""
msgid "Registered name"
msgstr ""
-#. }O[-
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2386,7 +2139,6 @@ msgctxt ""
msgid "Database file"
msgstr ""
-#. ?),S
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2396,7 +2148,6 @@ msgctxt ""
msgid "~New..."
msgstr ""
-#. wuoU
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2406,7 +2157,6 @@ msgctxt ""
msgid "~Edit..."
msgstr ""
-#. `{zb
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2416,7 +2166,6 @@ msgctxt ""
msgid "~Delete"
msgstr ""
-#. 0)Fh
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2426,7 +2175,6 @@ msgctxt ""
msgid "Registered databases"
msgstr ""
-#. =ae0
#: dbregister.src
msgctxt ""
"dbregister.src\n"
@@ -2435,7 +2183,6 @@ msgctxt ""
msgid "Registered databases"
msgstr ""
-#. hZiT
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2445,7 +2192,6 @@ msgctxt ""
msgid "Treat as equal"
msgstr ""
-#. KmWi
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2455,7 +2201,6 @@ msgctxt ""
msgid "~uppercase/lowercase"
msgstr ""
-#. +88#
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2465,7 +2210,6 @@ msgctxt ""
msgid "~full-width/half-width forms"
msgstr ""
-#. Yct?
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2475,7 +2219,6 @@ msgctxt ""
msgid "~hiragana/katakana"
msgstr ""
-#. wZLN
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2485,7 +2228,6 @@ msgctxt ""
msgid "~contractions (yo-on, sokuon)"
msgstr ""
-#. 89|:
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2495,7 +2237,6 @@ msgctxt ""
msgid "~minus/dash/cho-on"
msgstr ""
-#. :$;B
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2505,7 +2246,6 @@ msgctxt ""
msgid "'re~peat character' marks"
msgstr ""
-#. Ll#h
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2515,7 +2255,6 @@ msgctxt ""
msgid "~variant-form kanji (itaiji)"
msgstr ""
-#. RLD6
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2525,7 +2264,6 @@ msgctxt ""
msgid "~old Kana forms"
msgstr ""
-#. ?w}z
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2535,7 +2273,6 @@ msgctxt ""
msgid "~di/zi, du/zu"
msgstr ""
-#. 3X4L
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2545,7 +2282,6 @@ msgctxt ""
msgid "~ba/va, ha/fa"
msgstr ""
-#. 3HC6
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2555,7 +2291,6 @@ msgctxt ""
msgid "~tsi/thi/chi, dhi/zi"
msgstr ""
-#. sU9=
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2565,7 +2300,6 @@ msgctxt ""
msgid "h~yu/fyu, byu/vyu"
msgstr ""
-#. rauS
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2575,7 +2309,6 @@ msgctxt ""
msgid "~se/she, ze/je"
msgstr ""
-#. N7LY
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2585,7 +2318,6 @@ msgctxt ""
msgid "~ia/iya (piano/piyano)"
msgstr ""
-#. ,odo
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2595,7 +2327,6 @@ msgctxt ""
msgid "~ki/ku (tekisuto/tekusuto)"
msgstr ""
-#. Sz::
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2605,7 +2336,6 @@ msgctxt ""
msgid "Prolon~ged vowels (ka-/kaa)"
msgstr ""
-#. *kAs
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2615,7 +2345,6 @@ msgctxt ""
msgid "Ignore"
msgstr ""
-#. Q([|
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2625,7 +2354,6 @@ msgctxt ""
msgid "Pu~nctuation characters"
msgstr ""
-#. j8v1
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2635,7 +2363,6 @@ msgctxt ""
msgid "~Whitespace characters"
msgstr ""
-#. +FWd
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2645,7 +2372,6 @@ msgctxt ""
msgid "Midd~le dots"
msgstr ""
-#. \.Gn
#: optjsearch.src
msgctxt ""
"optjsearch.src\n"
@@ -2654,7 +2380,6 @@ msgctxt ""
msgid "Searching in Japanese"
msgstr ""
-#. FaD!
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2664,7 +2389,6 @@ msgctxt ""
msgid "Online Update Options"
msgstr ""
-#. I9Np
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2674,7 +2398,6 @@ msgctxt ""
msgid "~Check for updates automatically"
msgstr ""
-#. 3?@D
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2684,7 +2407,6 @@ msgctxt ""
msgid "Every Da~y"
msgstr ""
-#. ul)D
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2694,7 +2416,6 @@ msgctxt ""
msgid "Every ~Week"
msgstr ""
-#. #rsS
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2704,7 +2425,6 @@ msgctxt ""
msgid "Every ~Month"
msgstr ""
-#. doG(
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2714,7 +2434,6 @@ msgctxt ""
msgid "Last checked: %DATE%, %TIME%"
msgstr ""
-#. Oqg^
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2724,7 +2443,6 @@ msgctxt ""
msgid "Check ~now"
msgstr ""
-#. 3a_)
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2734,7 +2452,6 @@ msgctxt ""
msgid "~Download updates automatically"
msgstr ""
-#. RhY~
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2744,7 +2461,6 @@ msgctxt ""
msgid "Download destination:"
msgstr ""
-#. EF+I
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2754,7 +2470,6 @@ msgctxt ""
msgid "Ch~ange..."
msgstr ""
-#. xH/+
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2764,7 +2479,6 @@ msgctxt ""
msgid "Last checked: Not yet"
msgstr ""
-#. (/bd
#: optupdt.src
msgctxt ""
"optupdt.src\n"
@@ -2773,7 +2487,6 @@ msgctxt ""
msgid "OnlineUpdate"
msgstr ""
-#. ,M0q
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2783,7 +2496,6 @@ msgctxt ""
msgid "~Revert"
msgstr ""
-#. _SYW
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2793,7 +2505,6 @@ msgctxt ""
msgid "The selected module could not be loaded."
msgstr ""
-#. ukL;
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2802,7 +2513,6 @@ msgctxt ""
msgid "Options"
msgstr ""
-#. !vl4
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2812,7 +2522,6 @@ msgctxt ""
msgid "%PRODUCTNAME"
msgstr ""
-#. BlF]
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2822,7 +2531,6 @@ msgctxt ""
msgid "User Data"
msgstr ""
-#. ,::m
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2832,7 +2540,6 @@ msgctxt ""
msgid "General"
msgstr ""
-#. hFl~
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2842,7 +2549,6 @@ msgctxt ""
msgid "Memory"
msgstr ""
-#. gG;B
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -2853,7 +2559,6 @@ msgctxt ""
msgid "View"
msgstr "منظر"
-#. {Joa
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2863,7 +2568,6 @@ msgctxt ""
msgid "Print"
msgstr ""
-#. /;d:
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2873,7 +2577,6 @@ msgctxt ""
msgid "Paths"
msgstr ""
-#. `PF{
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2883,7 +2586,6 @@ msgctxt ""
msgid "Colors"
msgstr ""
-#. ]X~[
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2893,7 +2595,6 @@ msgctxt ""
msgid "Fonts"
msgstr ""
-#. 0@56
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2903,7 +2604,6 @@ msgctxt ""
msgid "Security"
msgstr ""
-#. HSPe
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2913,7 +2613,6 @@ msgctxt ""
msgid "Appearance"
msgstr ""
-#. Ek#u
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2923,7 +2622,6 @@ msgctxt ""
msgid "Accessibility"
msgstr ""
-#. YkY/
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2933,7 +2631,6 @@ msgctxt ""
msgid "Advanced"
msgstr ""
-#. rwW`
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2943,7 +2640,6 @@ msgctxt ""
msgid "Online Update"
msgstr ""
-#. B]l]
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2953,7 +2649,6 @@ msgctxt ""
msgid "Language Settings"
msgstr ""
-#. lOH[
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2963,7 +2658,6 @@ msgctxt ""
msgid "Languages"
msgstr ""
-#. F=\y
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2973,7 +2667,6 @@ msgctxt ""
msgid "Writing Aids"
msgstr ""
-#. (*pv
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2983,7 +2676,6 @@ msgctxt ""
msgid "Searching in Japanese"
msgstr ""
-#. Hr[3
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -2993,7 +2685,6 @@ msgctxt ""
msgid "Asian Layout"
msgstr ""
-#. 0@QW
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3003,7 +2694,6 @@ msgctxt ""
msgid "Complex Text Layout"
msgstr ""
-#. 6j_?
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3013,7 +2703,6 @@ msgctxt ""
msgid "Internet"
msgstr ""
-#. MRTU
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3023,7 +2712,6 @@ msgctxt ""
msgid "Proxy"
msgstr ""
-#. HxUr
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3033,7 +2721,6 @@ msgctxt ""
msgid "E-mail"
msgstr ""
-#. :|lO
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3043,7 +2730,6 @@ msgctxt ""
msgid "Browser Plug-in"
msgstr ""
-#. jB7_
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3054,7 +2740,6 @@ msgctxt ""
msgid "%PRODUCTNAME Writer"
msgstr "%PRODUCTNAME رائٹر/ویب"
-#. Ez,w
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3064,7 +2749,6 @@ msgctxt ""
msgid "General"
msgstr ""
-#. cj#h
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3075,7 +2759,6 @@ msgctxt ""
msgid "View"
msgstr "منظر"
-#. z4hb
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3085,7 +2768,6 @@ msgctxt ""
msgid "Formatting Aids"
msgstr ""
-#. kX$3
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3095,7 +2777,6 @@ msgctxt ""
msgid "Grid"
msgstr ""
-#. l.2B
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3105,7 +2786,6 @@ msgctxt ""
msgid "Basic Fonts (Western)"
msgstr ""
-#. _UXE
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3115,7 +2795,6 @@ msgctxt ""
msgid "Basic Fonts (Asian)"
msgstr ""
-#. YX:%
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3125,7 +2804,6 @@ msgctxt ""
msgid "Basic Fonts (CTL)"
msgstr ""
-#. mP=E
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3135,7 +2813,6 @@ msgctxt ""
msgid "Print"
msgstr ""
-#. H2Y#
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3146,7 +2823,6 @@ msgctxt ""
msgid "Table"
msgstr "جدول"
-#. 3SB_
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3156,7 +2832,6 @@ msgctxt ""
msgid "Changes"
msgstr ""
-#. $lFu
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3166,7 +2841,6 @@ msgctxt ""
msgid "Comparison"
msgstr ""
-#. aB\D
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3176,7 +2850,6 @@ msgctxt ""
msgid "Compatibility"
msgstr ""
-#. `=]l
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3186,7 +2859,6 @@ msgctxt ""
msgid "AutoCaption"
msgstr ""
-#. `J:Q
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3196,7 +2868,6 @@ msgctxt ""
msgid "Mail Merge E-mail"
msgstr ""
-#. 9dn(
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3206,7 +2877,6 @@ msgctxt ""
msgid "%PRODUCTNAME Writer/Web"
msgstr "%PRODUCTNAME رائٹر/ویب"
-#. GnRw
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3217,7 +2887,6 @@ msgctxt ""
msgid "View"
msgstr "منظر"
-#. Nv%(
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3227,7 +2896,6 @@ msgctxt ""
msgid "Formatting Aids"
msgstr ""
-#. XWQ[
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3237,7 +2905,6 @@ msgctxt ""
msgid "Grid"
msgstr ""
-#. :B|!
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3247,7 +2914,6 @@ msgctxt ""
msgid "Print"
msgstr ""
-#. Romr
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3258,7 +2924,6 @@ msgctxt ""
msgid "Table"
msgstr "جدول"
-#. [K)m
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3268,7 +2933,6 @@ msgctxt ""
msgid "Background"
msgstr ""
-#. +iBl
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3279,7 +2943,6 @@ msgctxt ""
msgid "%PRODUCTNAME Math"
msgstr "%PRODUCTNAME ٹاسک"
-#. +uDg
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3289,7 +2952,6 @@ msgctxt ""
msgid "Settings"
msgstr ""
-#. 5K-k
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3300,7 +2962,6 @@ msgctxt ""
msgid "%PRODUCTNAME Calc"
msgstr "%PRODUCTNAME چارٹ"
-#. H9xU
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3310,7 +2971,6 @@ msgctxt ""
msgid "General"
msgstr ""
-#. NU%N
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3320,7 +2980,6 @@ msgctxt ""
msgid "Defaults"
msgstr ""
-#. N|0.
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3331,7 +2990,6 @@ msgctxt ""
msgid "View"
msgstr "منظر"
-#. kG\1
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3341,7 +2999,6 @@ msgctxt ""
msgid "International"
msgstr ""
-#. \$l3
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3351,7 +3008,6 @@ msgctxt ""
msgid "Calculate"
msgstr ""
-#. Sk`5
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3361,7 +3017,6 @@ msgctxt ""
msgid "Formula"
msgstr ""
-#. 3SG+
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3371,7 +3026,6 @@ msgctxt ""
msgid "Sort Lists"
msgstr ""
-#. W6fZ
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3381,7 +3035,6 @@ msgctxt ""
msgid "Changes"
msgstr ""
-#. T9C=
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3391,7 +3044,6 @@ msgctxt ""
msgid "Compatibility"
msgstr ""
-#. _W9Z
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3401,7 +3053,6 @@ msgctxt ""
msgid "Grid"
msgstr ""
-#. ^xQ(
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3411,7 +3062,6 @@ msgctxt ""
msgid "Print"
msgstr ""
-#. j\gR
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3422,7 +3072,6 @@ msgctxt ""
msgid "%PRODUCTNAME Impress"
msgstr "%PRODUCTNAME امیج"
-#. /sAH
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3432,7 +3081,6 @@ msgctxt ""
msgid "General"
msgstr ""
-#. nUS2
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3443,7 +3091,6 @@ msgctxt ""
msgid "View"
msgstr "منظر"
-#. ,J0#
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3453,7 +3100,6 @@ msgctxt ""
msgid "Grid"
msgstr ""
-#. !q@W
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3463,7 +3109,6 @@ msgctxt ""
msgid "Print"
msgstr ""
-#. GPOG
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3474,7 +3119,6 @@ msgctxt ""
msgid "%PRODUCTNAME Draw"
msgstr "%PRODUCTNAME ڈرائنگ"
-#. cV2r
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3484,7 +3128,6 @@ msgctxt ""
msgid "General"
msgstr ""
-#. xmuL
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3495,7 +3138,6 @@ msgctxt ""
msgid "View"
msgstr "منظر"
-#. m!qY
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3505,7 +3147,6 @@ msgctxt ""
msgid "Grid"
msgstr ""
-#. mP5D
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3515,7 +3156,6 @@ msgctxt ""
msgid "Print"
msgstr ""
-#. 9)sB
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3525,7 +3165,6 @@ msgctxt ""
msgid "Charts"
msgstr ""
-#. `r:w
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3535,7 +3174,6 @@ msgctxt ""
msgid "Default Colors"
msgstr ""
-#. cKkg
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3545,7 +3183,6 @@ msgctxt ""
msgid "Load/Save"
msgstr ""
-#. m?g:
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3555,7 +3192,6 @@ msgctxt ""
msgid "General"
msgstr ""
-#. 4+LR
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3565,7 +3201,6 @@ msgctxt ""
msgid "VBA Properties"
msgstr ""
-#. WbyR
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3575,7 +3210,6 @@ msgctxt ""
msgid "Microsoft Office"
msgstr ""
-#. OoXN
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3585,7 +3219,6 @@ msgctxt ""
msgid "HTML Compatibility"
msgstr ""
-#. #={;
#: treeopt.src
#, fuzzy
msgctxt ""
@@ -3596,7 +3229,6 @@ msgctxt ""
msgid "%PRODUCTNAME Base"
msgstr "%PRODUCTNAME ٹاسک"
-#. [;2j
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3606,7 +3238,6 @@ msgctxt ""
msgid "Connections"
msgstr ""
-#. xR[v
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3616,7 +3247,6 @@ msgctxt ""
msgid "Databases"
msgstr ""
-#. 5!e[
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3625,7 +3255,6 @@ msgctxt ""
msgid "Site certificates"
msgstr ""
-#. lwlv
#: treeopt.src
msgctxt ""
"treeopt.src\n"
@@ -3634,7 +3263,6 @@ msgctxt ""
msgid "Personal certificates"
msgstr ""
-#. _aZX
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3644,7 +3272,6 @@ msgctxt ""
msgid "Kerning"
msgstr ""
-#. eVTz
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3654,7 +3281,6 @@ msgctxt ""
msgid "~Western characters only"
msgstr ""
-#. 2eI_
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3664,7 +3290,6 @@ msgctxt ""
msgid "Western ~text and Asian punctuation"
msgstr ""
-#. ApQn
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3674,7 +3299,6 @@ msgctxt ""
msgid "Character spacing"
msgstr ""
-#. Yn]P
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3684,7 +3308,6 @@ msgctxt ""
msgid "~No compression"
msgstr ""
-#. /.mE
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3694,7 +3317,6 @@ msgctxt ""
msgid "~Compress punctuation only"
msgstr ""
-#. `Al!
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3704,7 +3326,6 @@ msgctxt ""
msgid "Compress ~punctuation and Japanese Kana"
msgstr ""
-#. 4@Z{
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3714,7 +3335,6 @@ msgctxt ""
msgid "First and last characters"
msgstr ""
-#. Ur]C
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3724,7 +3344,6 @@ msgctxt ""
msgid "~Language"
msgstr ""
-#. fqOF
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3734,7 +3353,6 @@ msgctxt ""
msgid "~Default"
msgstr ""
-#. gT-)
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3744,7 +3362,6 @@ msgctxt ""
msgid "Not at start of line:"
msgstr ""
-#. aB5-
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3754,7 +3371,6 @@ msgctxt ""
msgid "Not at end of line:"
msgstr ""
-#. I08U
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3764,7 +3380,6 @@ msgctxt ""
msgid "Without user-defined line break symbols"
msgstr ""
-#. ^Bw~
#: optasian.src
msgctxt ""
"optasian.src\n"
@@ -3773,7 +3388,6 @@ msgctxt ""
msgid "Proxy"
msgstr ""
-#. ]I@@
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3783,7 +3397,6 @@ msgctxt ""
msgid "Java options"
msgstr ""
-#. ^KHF
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3793,7 +3406,6 @@ msgctxt ""
msgid "~Use a Java runtime environment"
msgstr ""
-#. PmPu
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3803,7 +3415,6 @@ msgctxt ""
msgid "~Java runtime environments (JRE) already installed:"
msgstr ""
-#. J5Cr
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3813,7 +3424,6 @@ msgctxt ""
msgid "~Add..."
msgstr ""
-#. u_S0
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3823,7 +3433,6 @@ msgctxt ""
msgid "~Parameters..."
msgstr ""
-#. Oo.1
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3833,7 +3442,6 @@ msgctxt ""
msgid "~Class Path..."
msgstr ""
-#. V?5n
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3843,7 +3451,6 @@ msgctxt ""
msgid "Optional (unstable) options"
msgstr ""
-#. dPu2
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3853,7 +3460,6 @@ msgctxt ""
msgid "Enable experimental features"
msgstr ""
-#. AiLT
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3863,7 +3469,6 @@ msgctxt ""
msgid "Enable macro recording"
msgstr ""
-#. u7\^
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3873,7 +3478,6 @@ msgctxt ""
msgid "Location: "
msgstr ""
-#. AM%f
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3883,7 +3487,6 @@ msgctxt ""
msgid "with accessibility support"
msgstr ""
-#. oER6
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3893,7 +3496,6 @@ msgctxt ""
msgid "Select a Java Runtime Environment"
msgstr ""
-#. ?gY7
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3903,7 +3505,6 @@ msgctxt ""
msgid "Vendor"
msgstr ""
-#. WX4e
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3913,7 +3514,6 @@ msgctxt ""
msgid "Version"
msgstr "نسخہ"
-#. Cp`H
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3923,7 +3523,6 @@ msgctxt ""
msgid "Features"
msgstr ""
-#. -z1]
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3932,7 +3531,6 @@ msgctxt ""
msgid "Java"
msgstr ""
-#. MD=`
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3942,7 +3540,6 @@ msgctxt ""
msgid "Java start ~parameter"
msgstr ""
-#. mfGf
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3952,7 +3549,6 @@ msgctxt ""
msgid "~Assign"
msgstr ""
-#. 80/}
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3962,7 +3558,6 @@ msgctxt ""
msgid "Assig~ned start parameters"
msgstr ""
-#. Cp@,
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3972,7 +3567,6 @@ msgctxt ""
msgid "For example: -Dmyprop=c:\\program files\\java"
msgstr ""
-#. K?)3
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3982,7 +3576,6 @@ msgctxt ""
msgid "~Remove"
msgstr ""
-#. kVa7
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -3991,7 +3584,6 @@ msgctxt ""
msgid "Java Start Parameters"
msgstr ""
-#. gB:p
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4001,7 +3593,6 @@ msgctxt ""
msgid "A~ssigned folders and archives"
msgstr ""
-#. \Hm@
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4011,7 +3602,6 @@ msgctxt ""
msgid "~Add Archive..."
msgstr ""
-#. `*Vb
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4021,7 +3611,6 @@ msgctxt ""
msgid "Add ~Folder"
msgstr ""
-#. =A:e
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4031,7 +3620,6 @@ msgctxt ""
msgid "~Remove"
msgstr ""
-#. ]WhV
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4040,7 +3628,6 @@ msgctxt ""
msgid "Class Path"
msgstr ""
-#. ;DoI
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4051,7 +3638,6 @@ msgid ""
"Please select a different folder."
msgstr ""
-#. m+7R
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4062,18 +3648,6 @@ msgid ""
"Please select a different folder."
msgstr ""
-#. WZ/f
-#: optjava.src
-msgctxt ""
-"optjava.src\n"
-"RID_SVX_MSGBOX_JAVA_RESTART\n"
-"warningbox.text"
-msgid ""
-"For the selected Java runtime environment to work properly, %PRODUCTNAME must be restarted.\n"
-"Please restart %PRODUCTNAME now."
-msgstr ""
-
-#. I?^k
#: optjava.src
msgctxt ""
"optjava.src\n"
@@ -4084,7 +3658,6 @@ msgid ""
"Please restart %PRODUCTNAME now."
msgstr ""
-#. !j-G
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4094,7 +3667,6 @@ msgctxt ""
msgid "~Database file"
msgstr ""
-#. =w2.
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4104,7 +3676,6 @@ msgctxt ""
msgid "~Browse..."
msgstr ""
-#. X\SR
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4114,7 +3685,6 @@ msgctxt ""
msgid "Registered ~name"
msgstr ""
-#. iuUJ
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4124,7 +3694,6 @@ msgctxt ""
msgid "Edit Database Link"
msgstr ""
-#. }?4O
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4134,7 +3703,6 @@ msgctxt ""
msgid "Create Database Link"
msgstr ""
-#. ^+uQ
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4146,7 +3714,6 @@ msgid ""
"does not exist."
msgstr ""
-#. ^gHK
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4158,7 +3725,6 @@ msgid ""
"does not exist in the local file system."
msgstr ""
-#. q3PM
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4169,7 +3735,6 @@ msgid ""
"Please choose a different name."
msgstr ""
-#. a%b8
#: doclinkdialog.src
msgctxt ""
"doclinkdialog.src\n"
@@ -4178,7 +3743,6 @@ msgctxt ""
msgid "Do you want to delete the entry?"
msgstr ""
-#. p~{X
#: optpath.src
#, fuzzy
msgctxt ""
@@ -4189,7 +3753,6 @@ msgctxt ""
msgid "Type"
msgstr "نوعیت:"
-#. uq/K
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4199,7 +3762,6 @@ msgctxt ""
msgid "Path"
msgstr ""
-#. fg$t
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4209,7 +3771,6 @@ msgctxt ""
msgid "~Edit..."
msgstr ""
-#. d=*h
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4219,7 +3780,6 @@ msgctxt ""
msgid "~Default"
msgstr ""
-#. Z}*7
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4229,7 +3789,6 @@ msgctxt ""
msgid "Paths used by %PRODUCTNAME"
msgstr ""
-#. Nwsb
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4239,7 +3798,6 @@ msgctxt ""
msgid "Edit Paths: %1"
msgstr ""
-#. 0P6,
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4248,7 +3806,6 @@ msgctxt ""
msgid "Paths"
msgstr ""
-#. TOsx
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4259,7 +3816,6 @@ msgid ""
"Please choose a new path."
msgstr ""
-#. a%Fs
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4268,7 +3824,6 @@ msgctxt ""
msgid "Configuration"
msgstr ""
-#. M4Rz
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4277,7 +3832,6 @@ msgctxt ""
msgid "My Documents"
msgstr ""
-#. J!sZ
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4286,7 +3840,6 @@ msgctxt ""
msgid "Graphics"
msgstr "نقوش"
-#. 6isK
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4295,7 +3848,6 @@ msgctxt ""
msgid "Icons"
msgstr ""
-#. f@It
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4304,7 +3856,6 @@ msgctxt ""
msgid "Palettes"
msgstr ""
-#. Q4Fe
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4313,7 +3864,6 @@ msgctxt ""
msgid "Backups"
msgstr ""
-#. uXYX
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4322,7 +3872,6 @@ msgctxt ""
msgid "Modules"
msgstr ""
-#. y9c)
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4331,7 +3880,6 @@ msgctxt ""
msgid "Templates"
msgstr ""
-#. $%aO
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4340,7 +3888,6 @@ msgctxt ""
msgid "AutoText"
msgstr ""
-#. pa_k
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4349,7 +3896,6 @@ msgctxt ""
msgid "Dictionaries"
msgstr ""
-#. P:~D
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4358,7 +3904,6 @@ msgctxt ""
msgid "Help"
msgstr ""
-#. Q@)T
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4367,7 +3912,6 @@ msgctxt ""
msgid "Gallery"
msgstr "دریچہ"
-#. S.x/
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4376,7 +3920,6 @@ msgctxt ""
msgid "Message Storage"
msgstr ""
-#. !YM[
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4385,7 +3928,6 @@ msgctxt ""
msgid "Temporary files"
msgstr ""
-#. \Tm)
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4394,7 +3936,6 @@ msgctxt ""
msgid "Plug-ins"
msgstr ""
-#. rnxz
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4403,7 +3944,6 @@ msgctxt ""
msgid "Folder Bookmarks"
msgstr ""
-#. n,@:
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4412,7 +3952,6 @@ msgctxt ""
msgid "Filters"
msgstr ""
-#. 7NA@
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4421,7 +3960,6 @@ msgctxt ""
msgid "Add-ins"
msgstr ""
-#. 9)3c
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4430,7 +3968,6 @@ msgctxt ""
msgid "User Configuration"
msgstr ""
-#. ,hkG
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4439,7 +3976,6 @@ msgctxt ""
msgid "User-defined dictionaries"
msgstr ""
-#. e%Dj
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4448,7 +3984,6 @@ msgctxt ""
msgid "AutoCorrect"
msgstr ""
-#. H[\{
#: optpath.src
msgctxt ""
"optpath.src\n"
@@ -4457,7 +3992,6 @@ msgctxt ""
msgid "Writing aids"
msgstr ""
-#. 2k_@
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4467,7 +4001,6 @@ msgctxt ""
msgid "Sequence checking"
msgstr ""
-#. @1PN
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4477,7 +4010,6 @@ msgctxt ""
msgid "Use se~quence checking"
msgstr ""
-#. V_P(
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4487,7 +4019,6 @@ msgctxt ""
msgid "Restricted"
msgstr ""
-#. jr*4
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4497,7 +4028,6 @@ msgctxt ""
msgid "~Type and replace"
msgstr ""
-#. |9e(
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4507,7 +4037,6 @@ msgctxt ""
msgid "Cursor control"
msgstr ""
-#. 21je
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4517,7 +4046,6 @@ msgctxt ""
msgid "Movement"
msgstr ""
-#. jVib
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4527,7 +4055,6 @@ msgctxt ""
msgid "Lo~gical"
msgstr ""
-#. ,_Hy
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4537,7 +4064,6 @@ msgctxt ""
msgid "~Visual"
msgstr ""
-#. 9n4m
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4547,7 +4073,6 @@ msgctxt ""
msgid "General options"
msgstr ""
-#. S)~V
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4557,7 +4082,6 @@ msgctxt ""
msgid "~Numerals"
msgstr ""
-#. Mx/@
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4567,7 +4091,6 @@ msgctxt ""
msgid "Arabic"
msgstr ""
-#. JQn\
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4577,7 +4100,6 @@ msgctxt ""
msgid "Hindi"
msgstr ""
-#. _:Y2
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4587,7 +4109,6 @@ msgctxt ""
msgid "System"
msgstr ""
-#. 4!])
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4597,7 +4118,6 @@ msgctxt ""
msgid "Context"
msgstr ""
-#. 0LeK
#: optctl.src
msgctxt ""
"optctl.src\n"
@@ -4606,7 +4126,6 @@ msgctxt ""
msgid "Complex Text Layout"
msgstr ""
-#. `JwJ
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4616,7 +4135,6 @@ msgctxt ""
msgid "~Name"
msgstr ""
-#. a,F2
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4626,7 +4144,6 @@ msgctxt ""
msgid "~Language"
msgstr ""
-#. xMXC
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4636,7 +4153,6 @@ msgctxt ""
msgid "~Exception (-)"
msgstr ""
-#. 5%0s
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4646,7 +4162,6 @@ msgctxt ""
msgid "Dictionary"
msgstr ""
-#. mOZ)
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4655,7 +4170,6 @@ msgctxt ""
msgid "New Dictionary"
msgstr ""
-#. Kvmc
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4665,7 +4179,6 @@ msgctxt ""
msgid "~Book"
msgstr ""
-#. Y*4t
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4675,7 +4188,6 @@ msgctxt ""
msgid "~Language"
msgstr ""
-#. $cYD
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4685,7 +4197,6 @@ msgctxt ""
msgid "~Word"
msgstr ""
-#. Iq}[
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4695,7 +4206,6 @@ msgctxt ""
msgid "Replace ~By:"
msgstr ""
-#. Z0=6
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4705,7 +4215,6 @@ msgctxt ""
msgid "~New"
msgstr ""
-#. 9!S6
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4715,7 +4224,6 @@ msgctxt ""
msgid "~Delete"
msgstr ""
-#. l;`f
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4725,7 +4233,6 @@ msgctxt ""
msgid "~Replace"
msgstr ""
-#. U`I*
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4735,7 +4242,6 @@ msgctxt ""
msgid "~Close"
msgstr ""
-#. =jF^
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4744,7 +4250,6 @@ msgctxt ""
msgid "Edit Custom Dictionary"
msgstr ""
-#. O/91
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4755,7 +4260,6 @@ msgid ""
"Please enter a new name."
msgstr ""
-#. !TG=
#: optdict.src
msgctxt ""
"optdict.src\n"
@@ -4764,7 +4268,6 @@ msgctxt ""
msgid "Do you want to change the '%1' dictionary language?"
msgstr ""
-#. gcMt
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4774,7 +4277,6 @@ msgctxt ""
msgid "Microsoft Word 97/2000/XP"
msgstr ""
-#. qe?;
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4784,7 +4286,6 @@ msgctxt ""
msgid "Load Basic ~code"
msgstr ""
-#. KSy7
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4794,7 +4295,6 @@ msgctxt ""
msgid "E~xecutable code"
msgstr ""
-#. \!]w
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4804,7 +4304,6 @@ msgctxt ""
msgid "Save ~original Basic code"
msgstr ""
-#. (_Nm
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4814,7 +4313,6 @@ msgctxt ""
msgid "Microsoft Excel 97/2000/XP"
msgstr ""
-#. r5%B
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4824,7 +4322,6 @@ msgctxt ""
msgid "Lo~ad Basic code"
msgstr ""
-#. :vUd
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4834,7 +4331,6 @@ msgctxt ""
msgid "E~xecutable code"
msgstr ""
-#. t^0I
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4844,7 +4340,6 @@ msgctxt ""
msgid "Sa~ve original Basic code"
msgstr ""
-#. az!8
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4854,7 +4349,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 97/2000/XP"
msgstr ""
-#. NV{`
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4864,7 +4358,6 @@ msgctxt ""
msgid "Load Ba~sic code"
msgstr ""
-#. AJeg
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4874,7 +4367,6 @@ msgctxt ""
msgid "Sav~e original Basic code"
msgstr ""
-#. 41rG
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4884,7 +4376,6 @@ msgctxt ""
msgid "[L]"
msgstr ""
-#. {)7]
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4894,7 +4385,6 @@ msgctxt ""
msgid "[S]"
msgstr ""
-#. XIRT
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4904,7 +4394,6 @@ msgctxt ""
msgid "[L]: Load and convert the object"
msgstr ""
-#. thlE
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4914,7 +4403,6 @@ msgctxt ""
msgid "[S]: Convert and save the object"
msgstr ""
-#. =lGU
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4924,7 +4412,6 @@ msgctxt ""
msgid "MathType to %PRODUCTNAME Math or reverse"
msgstr ""
-#. %DHi
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4934,7 +4421,6 @@ msgctxt ""
msgid "WinWord to %PRODUCTNAME Writer or reverse"
msgstr ""
-#. c@,c
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4944,7 +4430,6 @@ msgctxt ""
msgid "Excel to %PRODUCTNAME Calc or reverse"
msgstr ""
-#. Sx,`
#: optfltr.src
msgctxt ""
"optfltr.src\n"
@@ -4954,7 +4439,6 @@ msgctxt ""
msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
msgstr ""
-#. p2,2
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -4964,7 +4448,6 @@ msgctxt ""
msgid "Undo"
msgstr ""
-#. Ro8]
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -4974,7 +4457,6 @@ msgctxt ""
msgid "Number of steps"
msgstr ""
-#. SN_f
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -4984,7 +4466,6 @@ msgctxt ""
msgid "Graphics cache"
msgstr ""
-#. $Q^P
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -4994,7 +4475,6 @@ msgctxt ""
msgid "Use for %PRODUCTNAME"
msgstr ""
-#. PEO$
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5004,7 +4484,6 @@ msgctxt ""
msgid "MB"
msgstr ""
-#. x^j\
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5014,7 +4493,6 @@ msgctxt ""
msgid "Memory per object"
msgstr ""
-#. 3pMy
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5024,7 +4502,6 @@ msgctxt ""
msgid "MB"
msgstr ""
-#. asb/
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5034,7 +4511,6 @@ msgctxt ""
msgid "Remove from memory after"
msgstr ""
-#. n3R0
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5044,7 +4520,6 @@ msgctxt ""
msgid "hh:mm"
msgstr ""
-#. }ZKK
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5054,7 +4529,6 @@ msgctxt ""
msgid "Cache for inserted objects"
msgstr ""
-#. F3y+
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5064,7 +4538,6 @@ msgctxt ""
msgid "Number of objects"
msgstr ""
-#. Ikf/
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5074,7 +4547,6 @@ msgctxt ""
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
-#. dx^3
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5084,7 +4556,6 @@ msgctxt ""
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
-#. 6K=X
#: optmemory.src
msgctxt ""
"optmemory.src\n"
@@ -5094,7 +4565,6 @@ msgctxt ""
msgid "Enable systray Quickstarter"
msgstr ""
-#. `!9w
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5104,7 +4574,6 @@ msgctxt ""
msgid "Browser Plug-in"
msgstr ""
-#. $;4R
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5114,7 +4583,6 @@ msgctxt ""
msgid "~Display documents in browser"
msgstr ""
-#. ~1YW
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5124,7 +4592,6 @@ msgctxt ""
msgid "Settings"
msgstr ""
-#. I1kK
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5134,7 +4601,6 @@ msgctxt ""
msgid "Proxy s~erver"
msgstr ""
-#. SK(E
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5144,7 +4610,6 @@ msgctxt ""
msgid "None"
msgstr ""
-#. Vk}?
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5154,7 +4619,6 @@ msgctxt ""
msgid "System"
msgstr ""
-#. 6O!V
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5164,7 +4628,6 @@ msgctxt ""
msgid "Manual"
msgstr ""
-#. e*Z6
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5174,7 +4637,6 @@ msgctxt ""
msgid "Use browser settings"
msgstr ""
-#. -Pi*
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5184,7 +4646,6 @@ msgctxt ""
msgid "HT~TP proxy"
msgstr ""
-#. F\0r
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5194,7 +4655,6 @@ msgctxt ""
msgid "~Port"
msgstr ""
-#. Uq`o
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5204,7 +4664,6 @@ msgctxt ""
msgid "HTTP~S proxy"
msgstr ""
-#. ZeX%
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5214,7 +4673,6 @@ msgctxt ""
msgid "P~ort"
msgstr ""
-#. BF:g
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5224,7 +4682,6 @@ msgctxt ""
msgid "~FTP proxy"
msgstr ""
-#. Mr$j
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5234,7 +4691,6 @@ msgctxt ""
msgid "P~ort"
msgstr ""
-#. !L}c
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5244,7 +4700,6 @@ msgctxt ""
msgid "~SOCKS proxy"
msgstr ""
-#. L]+m
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5254,7 +4709,6 @@ msgctxt ""
msgid "Po~rt"
msgstr ""
-#. I*u`
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5264,7 +4718,6 @@ msgctxt ""
msgid "~No proxy for:"
msgstr ""
-#. AUdH
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5274,7 +4727,6 @@ msgctxt ""
msgid "Separator ;"
msgstr ""
-#. fL;R
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5284,7 +4736,6 @@ msgctxt ""
msgid "DNS server"
msgstr ""
-#. X5$^
#: optinet2.src
#, fuzzy
msgctxt ""
@@ -5295,7 +4746,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "خودکار"
-#. K{(7
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5305,7 +4755,6 @@ msgctxt ""
msgid "~Manual"
msgstr ""
-#. bm95
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5315,7 +4764,6 @@ msgctxt ""
msgid "is not a valid entry for this field. Please specify a value between 0 and 255."
msgstr ""
-#. pmi`
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5325,7 +4773,6 @@ msgctxt ""
msgid "is not a valid entry for this field. Please specify a value between 1 and 255."
msgstr ""
-#. idzD
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5334,7 +4781,6 @@ msgctxt ""
msgid "Proxy"
msgstr ""
-#. Y~::
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5344,7 +4790,6 @@ msgctxt ""
msgid "Security options and warnings"
msgstr ""
-#. _\Tj
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5354,7 +4799,6 @@ msgctxt ""
msgid "Adjust security related options and define warnings for hidden information in documents."
msgstr ""
-#. C%[/
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5364,7 +4808,6 @@ msgctxt ""
msgid "Options..."
msgstr ""
-#. j,Fn
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5374,7 +4817,6 @@ msgctxt ""
msgid "Passwords for web connections"
msgstr ""
-#. (D5s
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5384,7 +4826,6 @@ msgctxt ""
msgid "Persistently save passwords for web connections"
msgstr ""
-#. gOOu
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5394,7 +4835,6 @@ msgctxt ""
msgid "Connections..."
msgstr ""
-#. -sma
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5404,7 +4844,6 @@ msgctxt ""
msgid "Protected by a master password (recommended)"
msgstr ""
-#. lAZG
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5414,7 +4853,6 @@ msgctxt ""
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 ""
-#. uHou
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5424,7 +4862,6 @@ msgctxt ""
msgid "Master Password..."
msgstr ""
-#. O;6$
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5434,7 +4871,6 @@ msgctxt ""
msgid "Macro security"
msgstr ""
-#. #8PW
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5444,7 +4880,6 @@ msgctxt ""
msgid "Adjust the security level for executing macros and specify trusted macro developers."
msgstr ""
-#. H$.Y
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5454,7 +4889,6 @@ msgctxt ""
msgid "Macro Security..."
msgstr ""
-#. FBJ,
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5464,7 +4898,6 @@ msgctxt ""
msgid "Certificate Path"
msgstr ""
-#. 3Kf2
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5474,7 +4907,6 @@ msgctxt ""
msgid "Select the Network Security Services certificate directory to use for digital signatures."
msgstr ""
-#. Zqv8
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5484,7 +4916,6 @@ msgctxt ""
msgid "Certificate..."
msgstr ""
-#. !a9h
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5497,7 +4928,6 @@ msgid ""
"Do you want to delete password list and reset master password?"
msgstr ""
-#. ]bE+
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5506,7 +4936,6 @@ msgctxt ""
msgid "Security"
msgstr ""
-#. ,LvN
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5518,7 +4947,6 @@ msgid ""
"The maximum value for a port number is 65535."
msgstr ""
-#. 3C$K
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5532,7 +4960,6 @@ msgid ""
"Do you still want to disable Java?"
msgstr ""
-#. TY*W
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5542,7 +4969,6 @@ msgctxt ""
msgid "~Don't show warning again"
msgstr ""
-#. qa8o
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5552,7 +4978,6 @@ msgctxt ""
msgid "Sending documents as e-mail attachments"
msgstr ""
-#. hZYo
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5562,7 +4987,6 @@ msgctxt ""
msgid "~E-mail program"
msgstr ""
-#. eU/[
#: optinet2.src
msgctxt ""
"optinet2.src\n"
@@ -5572,7 +4996,6 @@ msgctxt ""
msgid "All files"
msgstr "سب فائل کو"
-#. [(%E
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5582,7 +5005,6 @@ msgctxt ""
msgid "Web login information (passwords are never shown)"
msgstr ""
-#. tLxk
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5592,7 +5014,6 @@ msgctxt ""
msgid "Remove"
msgstr ""
-#. cEle
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5602,7 +5023,6 @@ msgctxt ""
msgid "Remove All"
msgstr ""
-#. z#ym
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5612,7 +5032,6 @@ msgctxt ""
msgid "Change Password..."
msgstr ""
-#. %\[;
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5622,7 +5041,6 @@ msgctxt ""
msgid "Close"
msgstr ""
-#. G8nn
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5632,7 +5050,6 @@ msgctxt ""
msgid "Website"
msgstr ""
-#. U9ns
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5642,7 +5059,6 @@ msgctxt ""
msgid "User name"
msgstr ""
-#. ix]!
#: webconninfo.src
msgctxt ""
"webconninfo.src\n"
@@ -5651,7 +5067,6 @@ msgctxt ""
msgid "Stored Web Connection Information"
msgstr ""
-#. ,I]I
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5661,7 +5076,6 @@ msgctxt ""
msgid "Help"
msgstr ""
-#. YD+@
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5671,7 +5085,6 @@ msgctxt ""
msgid "~Tips"
msgstr ""
-#. eD=X
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5681,7 +5094,6 @@ msgctxt ""
msgid "~Extended tips"
msgstr ""
-#. 1#:d
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5691,7 +5103,6 @@ msgctxt ""
msgid "~Help Agent"
msgstr ""
-#. f6g6
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5701,7 +5112,6 @@ msgctxt ""
msgid "~Reset Help Agent"
msgstr ""
-#. g#x(
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5711,7 +5121,6 @@ msgctxt ""
msgid "Open/Save dialogs"
msgstr ""
-#. mmS2
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5721,7 +5130,6 @@ msgctxt ""
msgid "~Use %PRODUCTNAME dialogs"
msgstr ""
-#. j@+#
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5731,7 +5139,6 @@ msgctxt ""
msgid "Show ODMA DMS dialogs first"
msgstr ""
-#. j(J3
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5741,7 +5148,6 @@ msgctxt ""
msgid "Print dialogs"
msgstr ""
-#. -#;*
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5751,7 +5157,6 @@ msgctxt ""
msgid "Use %PRODUCTNAME ~dialogs"
msgstr ""
-#. `ed@
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5761,7 +5166,6 @@ msgctxt ""
msgid "Document status"
msgstr ""
-#. MOx)
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5771,7 +5175,6 @@ msgctxt ""
msgid "~Printing sets \"document modified\" status"
msgstr ""
-#. Ak[c
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5781,7 +5184,6 @@ msgctxt ""
msgid "Allow to save document even when the document is not modified"
msgstr ""
-#. iK!g
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5791,7 +5193,6 @@ msgctxt ""
msgid "Year (two digits)"
msgstr ""
-#. lZJ7
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5801,7 +5202,6 @@ msgctxt ""
msgid "Interpret as years between"
msgstr ""
-#. D*H`
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5811,7 +5211,6 @@ msgctxt ""
msgid "and "
msgstr ""
-#. bKH[
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5821,7 +5220,6 @@ msgctxt ""
msgid "User Interface"
msgstr ""
-#. .yL.
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5831,7 +5229,6 @@ msgctxt ""
msgid "Sc~aling"
msgstr ""
-#. $cC*
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5841,7 +5238,6 @@ msgctxt ""
msgid "Icon size and style"
msgstr ""
-#. VCmX
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5851,7 +5247,6 @@ msgctxt ""
msgid "Icon size"
msgstr ""
-#. hB~A
#: optgdlg.src
#, fuzzy
msgctxt ""
@@ -5862,7 +5257,6 @@ msgctxt ""
msgid "Automatic"
msgstr "خودکار"
-#. ,kLh
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5872,7 +5266,6 @@ msgctxt ""
msgid "Small"
msgstr ""
-#. KvFm
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5882,7 +5275,6 @@ msgctxt ""
msgid "Large"
msgstr ""
-#. NC@)
#: optgdlg.src
#, fuzzy
msgctxt ""
@@ -5893,7 +5285,6 @@ msgctxt ""
msgid "Automatic"
msgstr "خودکار"
-#. (z#]
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5903,7 +5294,6 @@ msgctxt ""
msgid "Galaxy (default)"
msgstr ""
-#. jH)b
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5913,7 +5303,6 @@ msgctxt ""
msgid "High Contrast"
msgstr ""
-#. 4Nju
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5923,7 +5312,6 @@ msgctxt ""
msgid "Industrial"
msgstr ""
-#. 2xKW
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5933,7 +5321,6 @@ msgctxt ""
msgid "Crystal"
msgstr ""
-#. ~U.}
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5943,7 +5330,6 @@ msgctxt ""
msgid "Tango"
msgstr ""
-#. uy%%
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5953,7 +5339,6 @@ msgctxt ""
msgid "Oxygen"
msgstr ""
-#. IxiQ
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5963,7 +5348,6 @@ msgctxt ""
msgid "Classic"
msgstr ""
-#. @%|F
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5973,7 +5357,6 @@ msgctxt ""
msgid "Human"
msgstr ""
-#. obAt
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5983,7 +5366,6 @@ msgctxt ""
msgid "Tango Testing"
msgstr ""
-#. q%e@
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -5993,7 +5375,6 @@ msgctxt ""
msgid "Use system ~font for user interface"
msgstr ""
-#. l/O3
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6003,7 +5384,6 @@ msgctxt ""
msgid "Screen font antialiasing"
msgstr ""
-#. xn~k
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6013,7 +5393,6 @@ msgctxt ""
msgid "from"
msgstr ""
-#. f_!h
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6023,7 +5402,6 @@ msgctxt ""
msgid "Pixels"
msgstr ""
-#. 3{aO
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6033,7 +5411,6 @@ msgctxt ""
msgid "Menu"
msgstr ""
-#. B~H]
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6043,7 +5420,6 @@ msgctxt ""
msgid "Icons in menus"
msgstr ""
-#. ijM9
#: optgdlg.src
#, fuzzy
msgctxt ""
@@ -6054,7 +5430,6 @@ msgctxt ""
msgid "Automatic"
msgstr "خودکار"
-#. bP%i
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6064,7 +5439,6 @@ msgctxt ""
msgid "Hide"
msgstr ""
-#. #6tp
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6074,7 +5448,6 @@ msgctxt ""
msgid "Show"
msgstr ""
-#. v?27
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6084,7 +5457,6 @@ msgctxt ""
msgid "Font Lists"
msgstr ""
-#. h0hR
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6094,7 +5466,6 @@ msgctxt ""
msgid "Show p~review of fonts"
msgstr ""
-#. M[V(
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6104,7 +5475,6 @@ msgctxt ""
msgid "Show font h~istory"
msgstr ""
-#. 5Emv
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6114,7 +5484,6 @@ msgctxt ""
msgid "Graphics output"
msgstr ""
-#. *a`d
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6124,7 +5493,6 @@ msgctxt ""
msgid "Use hardware acceleration"
msgstr ""
-#. 2p0?
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6134,7 +5502,6 @@ msgctxt ""
msgid "Use Anti-Aliasing"
msgstr ""
-#. aMIe
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6144,7 +5511,6 @@ msgctxt ""
msgid "Mouse"
msgstr ""
-#. =HWk
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6154,7 +5520,6 @@ msgctxt ""
msgid "Mouse positioning"
msgstr ""
-#. IPmL
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6164,7 +5529,6 @@ msgctxt ""
msgid "Default button"
msgstr ""
-#. \bTM
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6174,7 +5538,6 @@ msgctxt ""
msgid "Dialog center"
msgstr ""
-#. KU?K
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6184,7 +5547,6 @@ msgctxt ""
msgid "No automatic positioning"
msgstr ""
-#. futz
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6194,7 +5556,6 @@ msgctxt ""
msgid "Middle mouse button"
msgstr ""
-#. q96U
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6204,7 +5565,6 @@ msgctxt ""
msgid "No function"
msgstr ""
-#. K2/~
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6214,7 +5574,6 @@ msgctxt ""
msgid "Automatic scrolling"
msgstr ""
-#. A!(K
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6224,7 +5583,6 @@ msgctxt ""
msgid "Paste clipboard"
msgstr ""
-#. atGU
#: optgdlg.src
#, fuzzy
msgctxt ""
@@ -6235,7 +5593,6 @@ msgctxt ""
msgid "Selection"
msgstr "~انتخاب"
-#. $s.b
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6245,7 +5602,6 @@ msgctxt ""
msgid "Transparency"
msgstr ""
-#. ,{Ex
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6255,7 +5611,6 @@ msgctxt ""
msgid "%"
msgstr ""
-#. [j=#
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6265,7 +5620,6 @@ msgctxt ""
msgid "Language of"
msgstr ""
-#. VZt6
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6275,7 +5629,6 @@ msgctxt ""
msgid "~User interface"
msgstr ""
-#. HXP_
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6285,7 +5638,6 @@ msgctxt ""
msgid "Locale setting"
msgstr ""
-#. /%${
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6295,7 +5647,6 @@ msgctxt ""
msgid "Decimal separator key"
msgstr ""
-#. L)[t
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6305,7 +5656,6 @@ msgctxt ""
msgid "~Same as locale setting ( %1 )"
msgstr ""
-#. hK+W
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6315,7 +5665,6 @@ msgctxt ""
msgid "~Default currency"
msgstr ""
-#. K8$R
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6325,7 +5674,6 @@ msgctxt ""
msgid "Date acceptance ~patterns"
msgstr ""
-#. 6bDG
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6335,7 +5683,6 @@ msgctxt ""
msgid "Default languages for documents"
msgstr ""
-#. w)d+
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6345,7 +5692,6 @@ msgctxt ""
msgid "Western"
msgstr ""
-#. X4of
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6355,7 +5701,6 @@ msgctxt ""
msgid "Asian"
msgstr ""
-#. 3Wy@
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6365,7 +5710,6 @@ msgctxt ""
msgid "C~TL"
msgstr ""
-#. `nYT
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6375,7 +5719,6 @@ msgctxt ""
msgid "For the current document only"
msgstr ""
-#. lKr)
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6385,7 +5728,6 @@ msgctxt ""
msgid "Enhanced language support"
msgstr ""
-#. W=V`
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6395,7 +5737,6 @@ msgctxt ""
msgid "Show UI elements for East Asia~n writings"
msgstr ""
-#. ~k5-
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6405,7 +5746,6 @@ msgctxt ""
msgid "Show UI elements for B~i-Directional writing"
msgstr ""
-#. H(%/
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6415,7 +5755,6 @@ msgctxt ""
msgid "Ignore s~ystem input language"
msgstr ""
-#. V#v[
#: optgdlg.src
msgctxt ""
"optgdlg.src\n"
@@ -6424,7 +5763,6 @@ msgctxt ""
msgid "The language setting of the user interface has been updated and will take effect the next time you start %PRODUCTNAME %PRODUCTVERSION"
msgstr ""
-#. DIQJ
#: certpath.src
msgctxt ""
"certpath.src\n"
@@ -6434,7 +5772,6 @@ msgctxt ""
msgid "Certificate Path"
msgstr ""
-#. 2bc[
#: certpath.src
msgctxt ""
"certpath.src\n"
@@ -6444,7 +5781,6 @@ msgctxt ""
msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures:"
msgstr ""
-#. buLe
#: certpath.src
msgctxt ""
"certpath.src\n"
@@ -6454,7 +5790,6 @@ msgctxt ""
msgid "~Add..."
msgstr ""
-#. At/*
#: certpath.src
msgctxt ""
"certpath.src\n"
@@ -6464,7 +5799,6 @@ msgctxt ""
msgid "Select a Certificate directory"
msgstr ""
-#. 7lQw
#: certpath.src
msgctxt ""
"certpath.src\n"
@@ -6474,7 +5808,6 @@ msgctxt ""
msgid "manual"
msgstr ""
-#. ,{`@
#: certpath.src
msgctxt ""
"certpath.src\n"
@@ -6484,7 +5817,6 @@ msgctxt ""
msgid "Profile"
msgstr ""
-#. ]mvi
#: certpath.src
msgctxt ""
"certpath.src\n"
@@ -6494,7 +5826,6 @@ msgctxt ""
msgid "Directory"
msgstr ""
-#. $AA:
#: certpath.src
msgctxt ""
"certpath.src\n"
diff --git a/source/ur/cui/source/tabpages.po b/source/ur/cui/source/tabpages.po
index 702e35def19..f0b4c12919b 100644
--- a/source/ur/cui/source/tabpages.po
+++ b/source/ur/cui/source/tabpages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-02-24 15:57+0200\n"
"Last-Translator: Yasir <urdulizer@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. bz*m
#: strings.src
msgctxt ""
"strings.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Please enter a name for the gradient:"
msgstr ""
-#. \|^?
#: strings.src
msgctxt ""
"strings.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Do you want to delete the gradient?"
msgstr ""
-#. J0=v
#: strings.src
msgctxt ""
"strings.src\n"
@@ -44,7 +41,6 @@ msgid ""
"Modify the selected gradient or add a new gradient."
msgstr ""
-#. aoNW
#: strings.src
msgctxt ""
"strings.src\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "Please enter a name for the bitmap:"
msgstr ""
-#. 5`b,
#: strings.src
msgctxt ""
"strings.src\n"
@@ -62,7 +57,6 @@ msgctxt ""
msgid "Please enter a name for the external bitmap:"
msgstr ""
-#. T!Xf
#: strings.src
msgctxt ""
"strings.src\n"
@@ -71,7 +65,6 @@ msgctxt ""
msgid "Are you sure you want to delete the bitmap?"
msgstr ""
-#. ^oVM
#: strings.src
msgctxt ""
"strings.src\n"
@@ -82,7 +75,6 @@ msgid ""
"Modify the selected bitmap or add a new bitmap."
msgstr ""
-#. tc;;
#: strings.src
msgctxt ""
"strings.src\n"
@@ -91,7 +83,6 @@ msgctxt ""
msgid "Please enter a name for the line style:"
msgstr ""
-#. D$-e
#: strings.src
msgctxt ""
"strings.src\n"
@@ -100,7 +91,6 @@ msgctxt ""
msgid "Do you want to delete the line style?"
msgstr ""
-#. w9S4
#: strings.src
msgctxt ""
"strings.src\n"
@@ -111,7 +101,6 @@ msgid ""
"Modify the selected line style or add a new line style."
msgstr ""
-#. N:w[
#: strings.src
msgctxt ""
"strings.src\n"
@@ -120,7 +109,6 @@ msgctxt ""
msgid "Please enter a name for the hatching:"
msgstr ""
-#. I2,Z
#: strings.src
msgctxt ""
"strings.src\n"
@@ -129,7 +117,6 @@ msgctxt ""
msgid "Do you want to delete the hatching?"
msgstr ""
-#. NluX
#: strings.src
msgctxt ""
"strings.src\n"
@@ -140,7 +127,6 @@ msgid ""
"Modify the selected hatching type or add a new hatching type."
msgstr ""
-#. qQ5L
#: strings.src
msgctxt ""
"strings.src\n"
@@ -149,7 +135,6 @@ msgctxt ""
msgid "Modify"
msgstr ""
-#. t-9^
#: strings.src
msgctxt ""
"strings.src\n"
@@ -158,7 +143,6 @@ msgctxt ""
msgid "Add"
msgstr ""
-#. 2c?|
#: strings.src
msgctxt ""
"strings.src\n"
@@ -167,7 +151,6 @@ msgctxt ""
msgid "Please enter a name for the new color:"
msgstr ""
-#. Z/p*
#: strings.src
msgctxt ""
"strings.src\n"
@@ -176,7 +159,6 @@ msgctxt ""
msgid "Do you want to delete the color?"
msgstr ""
-#. v3Pw
#: strings.src
msgctxt ""
"strings.src\n"
@@ -187,7 +169,6 @@ msgid ""
"Modify the selected color or add a new color."
msgstr ""
-#. Wb(#
#: strings.src
#, fuzzy
msgctxt ""
@@ -197,7 +178,6 @@ msgctxt ""
msgid "Table"
msgstr "جدول"
-#. \a0q
#: strings.src
msgctxt ""
"strings.src\n"
@@ -206,7 +186,6 @@ msgctxt ""
msgid "The file could not be saved!"
msgstr ""
-#. %Y#{
#: strings.src
msgctxt ""
"strings.src\n"
@@ -215,7 +194,6 @@ msgctxt ""
msgid "The file could not be loaded!"
msgstr ""
-#. x7o*
#: strings.src
msgctxt ""
"strings.src\n"
@@ -224,7 +202,6 @@ msgctxt ""
msgid "The list was modified without saving. Would you like to save the list now?"
msgstr ""
-#. BY;z
#: strings.src
msgctxt ""
"strings.src\n"
@@ -235,7 +212,6 @@ msgid ""
"Please choose another name."
msgstr ""
-#. [S=I
#: strings.src
msgctxt ""
"strings.src\n"
@@ -244,7 +220,6 @@ msgctxt ""
msgid "Please enter a name for the new arrowhead:"
msgstr ""
-#. `z*8
#: strings.src
msgctxt ""
"strings.src\n"
@@ -253,7 +228,6 @@ msgctxt ""
msgid "Do you want to delete the arrowhead?"
msgstr ""
-#. _}D`
#: strings.src
msgctxt ""
"strings.src\n"
@@ -264,7 +238,6 @@ msgid ""
"Would you like to save the arrowhead now?"
msgstr ""
-#. .0;n
#: strings.src
msgctxt ""
"strings.src\n"
@@ -273,7 +246,6 @@ msgctxt ""
msgid "Transparent"
msgstr ""
-#. ADJg
#: strings.src
msgctxt ""
"strings.src\n"
@@ -282,7 +254,6 @@ msgctxt ""
msgid "No %1"
msgstr ""
-#. )mlP
#: strings.src
msgctxt ""
"strings.src\n"
@@ -291,7 +262,6 @@ msgctxt ""
msgid "Family"
msgstr ""
-#. X3I]
#: strings.src
msgctxt ""
"strings.src\n"
@@ -300,7 +270,6 @@ msgctxt ""
msgid "Font"
msgstr ""
-#. .j5E
#: strings.src
#, fuzzy
msgctxt ""
@@ -310,7 +279,6 @@ msgctxt ""
msgid "Style"
msgstr "انداز:"
-#. shf_
#: strings.src
msgctxt ""
"strings.src\n"
@@ -319,7 +287,6 @@ msgctxt ""
msgid "Typeface"
msgstr ""
-#. P!fM
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -329,7 +296,6 @@ msgctxt ""
msgid "Transparency mode"
msgstr ""
-#. {i/J
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -339,7 +305,6 @@ msgctxt ""
msgid "~No transparency"
msgstr ""
-#. .7Zf
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -349,7 +314,6 @@ msgctxt ""
msgid "~Transparency"
msgstr ""
-#. rM_C
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -359,7 +323,6 @@ msgctxt ""
msgid "Gradient"
msgstr ""
-#. 6TX_
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -369,7 +332,6 @@ msgctxt ""
msgid "Ty~pe"
msgstr ""
-#. |2t9
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -379,7 +341,6 @@ msgctxt ""
msgid "Linear"
msgstr ""
-#. =jQm
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -389,7 +350,6 @@ msgctxt ""
msgid "Axial"
msgstr ""
-#. 3EP1
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -399,7 +359,6 @@ msgctxt ""
msgid "Radial"
msgstr ""
-#. ]#aZ
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -409,7 +368,6 @@ msgctxt ""
msgid "Ellipsoid"
msgstr ""
-#. Hm;f
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -419,7 +377,6 @@ msgctxt ""
msgid "Quadratic"
msgstr ""
-#. AU==
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -429,7 +386,6 @@ msgctxt ""
msgid "Square"
msgstr ""
-#. \!^1
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -439,7 +395,6 @@ msgctxt ""
msgid "Center ~X"
msgstr ""
-#. {6$S
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -449,7 +404,6 @@ msgctxt ""
msgid "Center ~Y"
msgstr ""
-#. DTd=
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -459,7 +413,6 @@ msgctxt ""
msgid "~Angle"
msgstr ""
-#. _UQe
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -469,7 +422,6 @@ msgctxt ""
msgid " degrees"
msgstr ""
-#. efT`
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -479,7 +431,6 @@ msgctxt ""
msgid "~Border"
msgstr ""
-#. %6k1
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -489,7 +440,6 @@ msgctxt ""
msgid "~Start value"
msgstr ""
-#. C:@8
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -499,7 +449,6 @@ msgctxt ""
msgid "~End value"
msgstr ""
-#. rCSD
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -508,7 +457,6 @@ msgctxt ""
msgid "Transparency"
msgstr ""
-#. SP\]
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -518,7 +466,6 @@ msgctxt ""
msgid "Fill"
msgstr ""
-#. Vgl^
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -528,7 +475,6 @@ msgctxt ""
msgid "None"
msgstr ""
-#. s2L2
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -538,7 +484,6 @@ msgctxt ""
msgid "Color"
msgstr ""
-#. ;9Ac
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -548,7 +493,6 @@ msgctxt ""
msgid "Gradient"
msgstr ""
-#. 2e5%
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -558,7 +502,6 @@ msgctxt ""
msgid "Hatching"
msgstr ""
-#. 9#s5
#: tabarea.src
#, fuzzy
msgctxt ""
@@ -569,7 +512,6 @@ msgctxt ""
msgid "Bitmap"
msgstr "بِٹمیپ"
-#. -*;%
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -579,7 +521,6 @@ msgctxt ""
msgid "Increments"
msgstr ""
-#. 0Ka5
#: tabarea.src
#, fuzzy
msgctxt ""
@@ -590,7 +531,6 @@ msgctxt ""
msgid "A~utomatic"
msgstr "خودکار"
-#. G7o[
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -600,7 +540,6 @@ msgctxt ""
msgid "~Background color"
msgstr ""
-#. dc;2
#: tabarea.src
#, fuzzy
msgctxt ""
@@ -611,7 +550,6 @@ msgctxt ""
msgid "Size"
msgstr "حجم:"
-#. c-j`
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -621,7 +559,6 @@ msgctxt ""
msgid "~Original"
msgstr ""
-#. :lE~
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -631,7 +568,6 @@ msgctxt ""
msgid "Re~lative"
msgstr ""
-#. 5@6t
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -641,7 +577,6 @@ msgctxt ""
msgid "Wi~dth"
msgstr ""
-#. 8h5f
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -651,7 +586,6 @@ msgctxt ""
msgid "H~eight"
msgstr ""
-#. *?n9
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -661,7 +595,6 @@ msgctxt ""
msgid "Position"
msgstr ""
-#. ]u)i
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -671,7 +604,6 @@ msgctxt ""
msgid "~X Offset"
msgstr ""
-#. QpB:
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -681,7 +613,6 @@ msgctxt ""
msgid "~Y Offset"
msgstr ""
-#. .2MN
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -691,7 +622,6 @@ msgctxt ""
msgid "~Tile"
msgstr ""
-#. #b^l
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -701,7 +631,6 @@ msgctxt ""
msgid "Auto~Fit"
msgstr ""
-#. `JeJ
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -711,7 +640,6 @@ msgctxt ""
msgid "Offset"
msgstr ""
-#. NLX;
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -721,7 +649,6 @@ msgctxt ""
msgid "Ro~w"
msgstr ""
-#. dO`|
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -731,7 +658,6 @@ msgctxt ""
msgid "Colu~mn"
msgstr ""
-#. q?g-
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -740,7 +666,6 @@ msgctxt ""
msgid "Area"
msgstr ""
-#. O#Q2
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -750,7 +675,6 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. ,4#.
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -760,7 +684,6 @@ msgctxt ""
msgid "~Use shadow"
msgstr ""
-#. fW-$
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -770,7 +693,6 @@ msgctxt ""
msgid "~Position"
msgstr ""
-#. n#ns
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -780,7 +702,6 @@ msgctxt ""
msgid "~Distance"
msgstr ""
-#. Fr1[
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -790,7 +711,6 @@ msgctxt ""
msgid "~Color"
msgstr ""
-#. +{\k
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -800,7 +720,6 @@ msgctxt ""
msgid "~Transparency"
msgstr ""
-#. @PQ:
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -809,7 +728,6 @@ msgctxt ""
msgid "Shadow"
msgstr ""
-#. B-Y|
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -819,7 +737,6 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. A0nG
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -829,7 +746,6 @@ msgctxt ""
msgid "~Spacing"
msgstr ""
-#. ,ASA
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -839,7 +755,6 @@ msgctxt ""
msgid "A~ngle"
msgstr ""
-#. _k2A
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -849,7 +764,6 @@ msgctxt ""
msgid " degrees"
msgstr ""
-#. $~=7
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -859,7 +773,6 @@ msgctxt ""
msgid "~Line type"
msgstr ""
-#. 1*KW
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -869,7 +782,6 @@ msgctxt ""
msgid "Single"
msgstr ""
-#. hQak
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -879,7 +791,6 @@ msgctxt ""
msgid "Crossed"
msgstr ""
-#. P;=x
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -889,7 +800,6 @@ msgctxt ""
msgid "Triple"
msgstr ""
-#. HGtc
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -899,7 +809,6 @@ msgctxt ""
msgid "Line ~color"
msgstr ""
-#. \`*%
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -909,7 +818,6 @@ msgctxt ""
msgid "~Add..."
msgstr ""
-#. ^_8R
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -919,7 +827,6 @@ msgctxt ""
msgid "~Modify..."
msgstr ""
-#. C*D-
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -929,7 +836,6 @@ msgctxt ""
msgid "~Delete..."
msgstr ""
-#. mxu`
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -939,7 +845,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. B%1Q
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -949,7 +854,6 @@ msgctxt ""
msgid "Load Hatches List"
msgstr ""
-#. sE5p
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -959,7 +863,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. _^|?
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -969,7 +872,6 @@ msgctxt ""
msgid "Save Hatches List"
msgstr ""
-#. ma9g
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -979,7 +881,6 @@ msgctxt ""
msgid "Embed"
msgstr ""
-#. T)]y
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -988,7 +889,6 @@ msgctxt ""
msgid "Hatching"
msgstr ""
-#. Hr,+
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -998,7 +898,6 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. )o`;
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1008,7 +907,6 @@ msgctxt ""
msgid "Pattern Editor"
msgstr ""
-#. -/{@
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1018,7 +916,6 @@ msgctxt ""
msgid "~Foreground color"
msgstr ""
-#. Hk2Z
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1028,7 +925,6 @@ msgctxt ""
msgid "~Background color"
msgstr ""
-#. -s:C
#: tabarea.src
#, fuzzy
msgctxt ""
@@ -1039,7 +935,6 @@ msgctxt ""
msgid "Bitmap"
msgstr "بِٹمیپ"
-#. +Rpr
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1049,7 +944,6 @@ msgctxt ""
msgid "~Add..."
msgstr ""
-#. E\/J
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1059,7 +953,6 @@ msgctxt ""
msgid "~Modify..."
msgstr ""
-#. ZnY%
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1069,7 +962,6 @@ msgctxt ""
msgid "~Import..."
msgstr ""
-#. sBG#
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1079,7 +971,6 @@ msgctxt ""
msgid "~Delete..."
msgstr ""
-#. CBTJ
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1089,7 +980,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. /x\5
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1099,7 +989,6 @@ msgctxt ""
msgid "Load Bitmap List"
msgstr ""
-#. ]CH1
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1109,7 +998,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. 3d^L
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1119,7 +1007,6 @@ msgctxt ""
msgid "Save Bitmap List"
msgstr ""
-#. z{wT
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1129,7 +1016,6 @@ msgctxt ""
msgid "Embed"
msgstr ""
-#. 9_@%
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1138,7 +1024,6 @@ msgctxt ""
msgid "Bitmap Patterns"
msgstr ""
-#. _g2`
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1148,7 +1033,6 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. {hGV
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1158,7 +1042,6 @@ msgctxt ""
msgid "Ty~pe"
msgstr ""
-#. odos
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1168,7 +1051,6 @@ msgctxt ""
msgid "Linear"
msgstr ""
-#. ,1nA
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1178,7 +1060,6 @@ msgctxt ""
msgid "Axial"
msgstr ""
-#. ]n4T
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1188,7 +1069,6 @@ msgctxt ""
msgid "Radial"
msgstr ""
-#. PGr)
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1198,7 +1078,6 @@ msgctxt ""
msgid "Ellipsoid"
msgstr ""
-#. 2Zge
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1208,7 +1087,6 @@ msgctxt ""
msgid "Square"
msgstr ""
-#. NDC,
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1218,7 +1096,6 @@ msgctxt ""
msgid "Rectangular"
msgstr ""
-#. .)`T
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1228,7 +1105,6 @@ msgctxt ""
msgid "Center ~X"
msgstr ""
-#. JrEp
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1238,7 +1114,6 @@ msgctxt ""
msgid "Center ~Y"
msgstr ""
-#. \$He
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1248,7 +1123,6 @@ msgctxt ""
msgid "A~ngle"
msgstr ""
-#. uzh~
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1258,7 +1132,6 @@ msgctxt ""
msgid " degrees"
msgstr ""
-#. :;fo
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1268,7 +1141,6 @@ msgctxt ""
msgid "~Border"
msgstr ""
-#. V%]P
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1278,7 +1150,6 @@ msgctxt ""
msgid "~From"
msgstr ""
-#. Q.m`
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1288,7 +1159,6 @@ msgctxt ""
msgid "~To"
msgstr ""
-#. FOW4
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1298,7 +1168,6 @@ msgctxt ""
msgid "~Add..."
msgstr ""
-#. /#Hb
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1308,7 +1177,6 @@ msgctxt ""
msgid "~Modify..."
msgstr ""
-#. lfp?
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1318,7 +1186,6 @@ msgctxt ""
msgid "~Delete..."
msgstr ""
-#. SvG$
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1328,7 +1195,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. ,3G7
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1338,7 +1204,6 @@ msgctxt ""
msgid "Load Gradients List"
msgstr ""
-#. MPW6
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1348,7 +1213,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. SA6:
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1358,7 +1222,6 @@ msgctxt ""
msgid "Save Gradients List"
msgstr ""
-#. K?S@
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1368,7 +1231,6 @@ msgctxt ""
msgid "Embed"
msgstr ""
-#. $8p?
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1377,7 +1239,6 @@ msgctxt ""
msgid "Gradients"
msgstr ""
-#. 5[[J
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1387,7 +1248,6 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. FZaU
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1397,7 +1257,6 @@ msgctxt ""
msgid "~Name"
msgstr ""
-#. TT^+
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1407,7 +1266,6 @@ msgctxt ""
msgid "C~olor"
msgstr ""
-#. 8`d!
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1417,7 +1275,6 @@ msgctxt ""
msgid "Color table"
msgstr ""
-#. \W{j
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1427,7 +1284,6 @@ msgctxt ""
msgid "RGB"
msgstr ""
-#. G}#?
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1437,7 +1293,6 @@ msgctxt ""
msgid "CMYK"
msgstr ""
-#. GE?.
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1447,7 +1302,6 @@ msgctxt ""
msgid "~C"
msgstr ""
-#. jUr~
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1457,7 +1311,6 @@ msgctxt ""
msgid "~M"
msgstr ""
-#. L^6j
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1467,7 +1320,6 @@ msgctxt ""
msgid "~Y"
msgstr ""
-#. h^y|
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1477,7 +1329,6 @@ msgctxt ""
msgid "~K"
msgstr ""
-#. f/(;
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1487,7 +1338,6 @@ msgctxt ""
msgid "~Add"
msgstr ""
-#. b5}y
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1497,7 +1347,6 @@ msgctxt ""
msgid "~Edit..."
msgstr ""
-#. woZ.
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1507,7 +1356,6 @@ msgctxt ""
msgid "~Delete..."
msgstr ""
-#. cvY+
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1517,7 +1365,6 @@ msgctxt ""
msgid "~Modify"
msgstr ""
-#. 2YLY
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1527,7 +1374,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. m.ZS
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1537,7 +1383,6 @@ msgctxt ""
msgid "Load Color List"
msgstr ""
-#. w\/b
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1547,7 +1392,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. 66ST
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1557,7 +1401,6 @@ msgctxt ""
msgid "Save Color List"
msgstr ""
-#. JOkv
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1567,7 +1410,6 @@ msgctxt ""
msgid "Embed"
msgstr ""
-#. ~R10
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1576,7 +1418,6 @@ msgctxt ""
msgid "Colors"
msgstr ""
-#. X(7%
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1586,7 +1427,6 @@ msgctxt ""
msgid "Area"
msgstr ""
-#. ZJUM
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1596,7 +1436,6 @@ msgctxt ""
msgid "Shadow"
msgstr ""
-#. AEY7
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1606,7 +1445,6 @@ msgctxt ""
msgid "Transparency"
msgstr ""
-#. Ea4k
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1616,7 +1454,6 @@ msgctxt ""
msgid "Colors"
msgstr ""
-#. /IA}
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1626,7 +1463,6 @@ msgctxt ""
msgid "Gradients"
msgstr ""
-#. m_0J
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1636,7 +1472,6 @@ msgctxt ""
msgid "Hatching"
msgstr ""
-#. ).j=
#: tabarea.src
#, fuzzy
msgctxt ""
@@ -1647,7 +1482,6 @@ msgctxt ""
msgid "Bitmaps"
msgstr "بِٹمیپ"
-#. uUYp
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1656,7 +1490,6 @@ msgctxt ""
msgid "Area"
msgstr ""
-#. 5-,:
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1665,7 +1498,6 @@ msgctxt ""
msgid "Hatching Style"
msgstr ""
-#. OTe)
#: tabarea.src
msgctxt ""
"tabarea.src\n"
@@ -1674,7 +1506,6 @@ msgctxt ""
msgid "Color Mode"
msgstr ""
-#. 8F/d
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1684,7 +1515,6 @@ msgctxt ""
msgid "Text animation effects"
msgstr ""
-#. 9$j#
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1694,7 +1524,6 @@ msgctxt ""
msgid "E~ffect"
msgstr ""
-#. I1@4
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1704,7 +1533,6 @@ msgctxt ""
msgid "No Effect"
msgstr ""
-#. Q/bR
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1714,7 +1542,6 @@ msgctxt ""
msgid "Blink"
msgstr ""
-#. mOFp
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1724,7 +1551,6 @@ msgctxt ""
msgid "Scroll Through"
msgstr ""
-#. 3Xr.
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1734,7 +1560,6 @@ msgctxt ""
msgid "Scroll Back and Forth"
msgstr ""
-#. ZBvW
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1744,7 +1569,6 @@ msgctxt ""
msgid "Scroll In"
msgstr ""
-#. j}%!
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1754,7 +1578,6 @@ msgctxt ""
msgid "Direction"
msgstr ""
-#. pKrx
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1764,7 +1587,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. $e:_
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1774,7 +1596,6 @@ msgctxt ""
msgid "To Top"
msgstr ""
-#. c.)+
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1784,7 +1605,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. (Z1c
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1794,7 +1614,6 @@ msgctxt ""
msgid "To Left"
msgstr ""
-#. K/;v
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1804,7 +1623,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. #3*%
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1814,7 +1632,6 @@ msgctxt ""
msgid "To Right"
msgstr ""
-#. MaZP
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1824,7 +1641,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. L/2}
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1834,7 +1650,6 @@ msgctxt ""
msgid "To Bottom"
msgstr ""
-#. Qf4O
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1844,7 +1659,6 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. Y1^m
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1854,7 +1668,6 @@ msgctxt ""
msgid "S~tart inside"
msgstr ""
-#. rX=2
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1864,7 +1677,6 @@ msgctxt ""
msgid "Text visible when exiting"
msgstr ""
-#. l7}%
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1874,7 +1686,6 @@ msgctxt ""
msgid "Animation cycles"
msgstr ""
-#. /=]y
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1884,7 +1695,6 @@ msgctxt ""
msgid "~Continuous"
msgstr ""
-#. eKi%
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1894,7 +1704,6 @@ msgctxt ""
msgid "Increment"
msgstr ""
-#. m$A[
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1904,7 +1713,6 @@ msgctxt ""
msgid "~Pixels"
msgstr ""
-#. 4,Ns
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1914,7 +1722,6 @@ msgctxt ""
msgid " Pixel"
msgstr ""
-#. %=`c
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1924,7 +1731,6 @@ msgctxt ""
msgid "Delay"
msgstr ""
-#. m.K)
#: textanim.src
#, fuzzy
msgctxt ""
@@ -1935,7 +1741,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "خودکار"
-#. i#+n
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1945,7 +1750,6 @@ msgctxt ""
msgid " ms"
msgstr ""
-#. R8X,
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1954,7 +1758,6 @@ msgctxt ""
msgid "Animation"
msgstr ""
-#. 1bOU
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1964,7 +1767,6 @@ msgctxt ""
msgid "Text"
msgstr ""
-#. en:.
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1974,7 +1776,6 @@ msgctxt ""
msgid "Text Animation"
msgstr ""
-#. %v0k
#: textanim.src
msgctxt ""
"textanim.src\n"
@@ -1983,7 +1784,6 @@ msgctxt ""
msgid "Text"
msgstr ""
-#. 1APd
#: numpages.src
#, fuzzy
msgctxt ""
@@ -1994,7 +1794,6 @@ msgctxt ""
msgid "Selection"
msgstr "~انتخاب"
-#. ?Zl?
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2005,7 +1804,6 @@ msgctxt ""
msgid "Selection"
msgstr "~انتخاب"
-#. }oR6
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2016,7 +1814,6 @@ msgctxt ""
msgid "Selection"
msgstr "~انتخاب"
-#. MQPK
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2027,7 +1824,6 @@ msgctxt ""
msgid "Selection"
msgstr "~انتخاب"
-#. +Chl
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2037,7 +1833,6 @@ msgctxt ""
msgid "~Link graphics"
msgstr ""
-#. \#XZ
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2047,7 +1842,6 @@ msgctxt ""
msgid "The Gallery theme 'Bullets' is empty (no graphics)."
msgstr ""
-#. $4M{
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2057,7 +1851,6 @@ msgctxt ""
msgid "Level"
msgstr ""
-#. RoU!
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2067,7 +1860,6 @@ msgctxt ""
msgid "Format"
msgstr ""
-#. #,^G
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2077,7 +1869,6 @@ msgctxt ""
msgid "~Numbering"
msgstr ""
-#. DH6,
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2087,7 +1878,6 @@ msgctxt ""
msgid "1, 2, 3, ..."
msgstr ""
-#. _*+A
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2097,7 +1887,6 @@ msgctxt ""
msgid "A, B, C, ..."
msgstr ""
-#. ON7Y
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2107,7 +1896,6 @@ msgctxt ""
msgid "a, b, c, ..."
msgstr ""
-#. Qw([
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2117,7 +1905,6 @@ msgctxt ""
msgid "I, II, III, ..."
msgstr ""
-#. `hUW
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2127,7 +1914,6 @@ msgctxt ""
msgid "i, ii, iii, ..."
msgstr ""
-#. eomF
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2137,7 +1923,6 @@ msgctxt ""
msgid "A, .., AA, .., AAA, ..."
msgstr ""
-#. WMiE
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2147,7 +1932,6 @@ msgctxt ""
msgid "a, .., aa, .., aaa, ..."
msgstr ""
-#. X{Ye
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2157,7 +1941,6 @@ msgctxt ""
msgid "Bullet"
msgstr ""
-#. E-|@
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2168,7 +1951,6 @@ msgctxt ""
msgid "Graphics"
msgstr "نقوش"
-#. hzrG
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2178,7 +1960,6 @@ msgctxt ""
msgid "Linked graphics"
msgstr ""
-#. V7o1
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2188,7 +1969,6 @@ msgctxt ""
msgid "None"
msgstr ""
-#. rn]D
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2198,7 +1978,6 @@ msgctxt ""
msgid "Native Numbering"
msgstr ""
-#. -]Mp
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2208,7 +1987,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
msgstr ""
-#. mL.j
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2218,7 +1996,6 @@ msgctxt ""
msgid "а, б, .., аа, аб, ... (Bulgarian)"
msgstr ""
-#. 3/2X
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2228,7 +2005,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
msgstr ""
-#. 5.T5
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2238,7 +2014,6 @@ msgctxt ""
msgid "а, б, .., аа, бб, ... (Bulgarian)"
msgstr ""
-#. )`w7
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2248,7 +2023,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Аб, ... (Russian)"
msgstr ""
-#. JOTg
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2258,7 +2032,6 @@ msgctxt ""
msgid "а, б, .., аа, аб, ... (Russian)"
msgstr ""
-#. Tj,h
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2268,7 +2041,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Бб, ... (Russian)"
msgstr ""
-#. )i{D
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2278,7 +2050,6 @@ msgctxt ""
msgid "а, б, .., аа, бб, ... (Russian)"
msgstr ""
-#. lhOs
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2288,7 +2059,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Аб, ... (Serbian)"
msgstr ""
-#. qUXC
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2298,7 +2068,6 @@ msgctxt ""
msgid "а, б, .., аа, аб, ... (Serbian)"
msgstr ""
-#. ?t4n
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2308,7 +2077,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Бб, ... (Serbian)"
msgstr ""
-#. uo6K
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2318,7 +2086,6 @@ msgctxt ""
msgid "а, б, .., аа, бб, ... (Serbian)"
msgstr ""
-#. Vm+Z
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2328,7 +2095,6 @@ msgctxt ""
msgid "Α, Β, Γ, ... (Greek Upper Letter)"
msgstr ""
-#. _k/t
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2338,7 +2104,6 @@ msgctxt ""
msgid "α, β, γ, ... (Greek Lower Letter)"
msgstr ""
-#. 4[Yd
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2348,7 +2113,6 @@ msgctxt ""
msgid "Before"
msgstr ""
-#. g@IR
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2358,7 +2122,6 @@ msgctxt ""
msgid "After"
msgstr ""
-#. lJ6F
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2368,7 +2131,6 @@ msgctxt ""
msgid "~Character Style"
msgstr ""
-#. QOYj
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2378,7 +2140,6 @@ msgctxt ""
msgid "Color"
msgstr ""
-#. qb8X
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2388,7 +2149,6 @@ msgctxt ""
msgid "~Relative size"
msgstr ""
-#. +kJ]
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2398,7 +2158,6 @@ msgctxt ""
msgid "Show sublevels"
msgstr ""
-#. r+h:
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2408,7 +2167,6 @@ msgctxt ""
msgid "Start at"
msgstr ""
-#. 8-=M
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2418,7 +2176,6 @@ msgctxt ""
msgid "~Alignment"
msgstr ""
-#. VWr;
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2428,7 +2185,6 @@ msgctxt ""
msgid "Left"
msgstr ""
-#. fDE$
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2438,7 +2194,6 @@ msgctxt ""
msgid "Centered"
msgstr ""
-#. 9qqd
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2448,7 +2203,6 @@ msgctxt ""
msgid "Right"
msgstr ""
-#. :6,,
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2459,7 +2213,6 @@ msgctxt ""
msgid "Character"
msgstr "حروف"
-#. .Sbe
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2470,7 +2223,6 @@ msgctxt ""
msgid "Graphics"
msgstr "نقوش"
-#. ol:5
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2480,7 +2232,6 @@ msgctxt ""
msgid "From file..."
msgstr ""
-#. 5k%P
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2491,7 +2242,6 @@ msgctxt ""
msgid "Gallery"
msgstr "دریچہ"
-#. .Z./
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2501,7 +2251,6 @@ msgctxt ""
msgid "Select..."
msgstr ""
-#. 4y@W
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2511,7 +2260,6 @@ msgctxt ""
msgid "Width"
msgstr ""
-#. :A!o
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2521,7 +2269,6 @@ msgctxt ""
msgid "Height"
msgstr ""
-#. q!R}
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2531,7 +2278,6 @@ msgctxt ""
msgid "Keep ratio"
msgstr ""
-#. h0e|
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2541,7 +2287,6 @@ msgctxt ""
msgid "Alignment"
msgstr ""
-#. :8T2
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2551,7 +2296,6 @@ msgctxt ""
msgid "Top of baseline"
msgstr ""
-#. ^$%:
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2561,7 +2305,6 @@ msgctxt ""
msgid "Center of baseline"
msgstr ""
-#. M,3T
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2571,7 +2314,6 @@ msgctxt ""
msgid "Bottom of baseline"
msgstr ""
-#. _ZGA
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2581,7 +2323,6 @@ msgctxt ""
msgid "Top of character"
msgstr ""
-#. o^XK
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2591,7 +2332,6 @@ msgctxt ""
msgid "Center of character"
msgstr ""
-#. IB](
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2601,7 +2341,6 @@ msgctxt ""
msgid "Bottom of character"
msgstr ""
-#. XP9L
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2611,7 +2350,6 @@ msgctxt ""
msgid "Top of line"
msgstr ""
-#. (E:?
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2621,7 +2359,6 @@ msgctxt ""
msgid "Center of line"
msgstr ""
-#. 53yX
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2631,7 +2368,6 @@ msgctxt ""
msgid "Bottom of line"
msgstr ""
-#. =AXg
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2641,7 +2377,6 @@ msgctxt ""
msgid "All levels"
msgstr ""
-#. F{=P
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2651,7 +2386,6 @@ msgctxt ""
msgid "~Consecutive numbering"
msgstr ""
-#. [6w]
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2661,7 +2395,6 @@ msgctxt ""
msgid "There are no graphics in the 'Bullets' Gallery theme."
msgstr ""
-#. xh=-
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2671,7 +2404,6 @@ msgctxt ""
msgid "Level"
msgstr ""
-#. s`m~
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2681,7 +2413,6 @@ msgctxt ""
msgid "Position and spacing"
msgstr ""
-#. jsIc
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2691,7 +2422,6 @@ msgctxt ""
msgid "Indent"
msgstr ""
-#. L![.
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2701,7 +2431,6 @@ msgctxt ""
msgid "Relati~ve"
msgstr ""
-#. 9I/5
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2711,7 +2440,6 @@ msgctxt ""
msgid "Width of numbering"
msgstr ""
-#. z.1r
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2721,7 +2449,6 @@ msgctxt ""
msgid "Minimum space numbering <-> text"
msgstr ""
-#. ubAm
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2731,7 +2458,6 @@ msgctxt ""
msgid "N~umbering alignment"
msgstr ""
-#. SGd5
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2741,7 +2467,6 @@ msgctxt ""
msgid "Left"
msgstr ""
-#. ]8wE
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2751,7 +2476,6 @@ msgctxt ""
msgid "Centered"
msgstr ""
-#. :mbi
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2761,7 +2485,6 @@ msgctxt ""
msgid "Right"
msgstr ""
-#. `H}q
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2771,7 +2494,6 @@ msgctxt ""
msgid "Numbering followed by"
msgstr ""
-#. H*vP
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2781,7 +2503,6 @@ msgctxt ""
msgid "Tab stop"
msgstr ""
-#. @t]i
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2791,7 +2512,6 @@ msgctxt ""
msgid "Space"
msgstr ""
-#. #X\q
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2801,7 +2521,6 @@ msgctxt ""
msgid "Nothing"
msgstr ""
-#. 7/:h
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2811,7 +2530,6 @@ msgctxt ""
msgid "at"
msgstr ""
-#. 5bSr
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2821,7 +2539,6 @@ msgctxt ""
msgid "Aligned at"
msgstr ""
-#. q=6;
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2831,7 +2548,6 @@ msgctxt ""
msgid "Indent at"
msgstr ""
-#. d%#9
#: numpages.src
msgctxt ""
"numpages.src\n"
@@ -2841,7 +2557,6 @@ msgctxt ""
msgid "Default"
msgstr ""
-#. B@RJ
#: numpages.src
#, fuzzy
msgctxt ""
@@ -2851,7 +2566,6 @@ msgctxt ""
msgid "Link"
msgstr "~ربط"
-#. 3p9J
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2861,7 +2575,6 @@ msgctxt ""
msgid "Before text"
msgstr ""
-#. :(BD
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2871,7 +2584,6 @@ msgctxt ""
msgid "After text"
msgstr ""
-#. -ps@
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2881,7 +2593,6 @@ msgctxt ""
msgid "~First line"
msgstr ""
-#. M_X8
#: paragrph.src
#, fuzzy
msgctxt ""
@@ -2892,7 +2603,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "خودکار"
-#. ?cX^
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2902,7 +2612,6 @@ msgctxt ""
msgid "Indent"
msgstr ""
-#. dU]0
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2912,7 +2621,6 @@ msgctxt ""
msgid "Ab~ove paragraph"
msgstr ""
-#. AV_o
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2922,7 +2630,6 @@ msgctxt ""
msgid "Below paragraph"
msgstr ""
-#. Yqe@
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2932,7 +2639,6 @@ msgctxt ""
msgid "Don't add space between paragraphs of the same style"
msgstr ""
-#. g:KA
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2942,7 +2648,6 @@ msgctxt ""
msgid "Spacing"
msgstr ""
-#. -}wG
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2952,7 +2657,6 @@ msgctxt ""
msgid "Single"
msgstr ""
-#. 5Z0G
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2962,7 +2666,6 @@ msgctxt ""
msgid "1.5 lines"
msgstr ""
-#. :wIT
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2972,7 +2675,6 @@ msgctxt ""
msgid "Double"
msgstr ""
-#. m4Q1
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2982,7 +2684,6 @@ msgctxt ""
msgid "Proportional"
msgstr ""
-#. p$9A
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -2992,7 +2693,6 @@ msgctxt ""
msgid "At least"
msgstr ""
-#. ~WXN
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3002,7 +2702,6 @@ msgctxt ""
msgid "Leading"
msgstr ""
-#. SKqc
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3012,7 +2711,6 @@ msgctxt ""
msgid "Fixed"
msgstr ""
-#. 2YK;
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3022,7 +2720,6 @@ msgctxt ""
msgid "of"
msgstr ""
-#. $47@
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3032,7 +2729,6 @@ msgctxt ""
msgid "Line spacing"
msgstr ""
-#. DF^-
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3042,7 +2738,6 @@ msgctxt ""
msgid "A~ctivate"
msgstr ""
-#. pPeY
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3052,7 +2747,6 @@ msgctxt ""
msgid "Register-true"
msgstr ""
-#. p\2w
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3061,7 +2755,6 @@ msgctxt ""
msgid "Indents and Spacing"
msgstr ""
-#. +iVb
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3071,7 +2764,6 @@ msgctxt ""
msgid "Options"
msgstr ""
-#. rn^?
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3081,7 +2773,6 @@ msgctxt ""
msgid "~Left"
msgstr ""
-#. S+nO
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3091,7 +2782,6 @@ msgctxt ""
msgid "Righ~t"
msgstr ""
-#. \\qF
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3101,7 +2791,6 @@ msgctxt ""
msgid "~Center"
msgstr ""
-#. ^eP~
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3111,7 +2800,6 @@ msgctxt ""
msgid "Justified"
msgstr ""
-#. -%1v
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3121,7 +2809,6 @@ msgctxt ""
msgid "~Left/Top"
msgstr ""
-#. QM-q
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3131,7 +2818,6 @@ msgctxt ""
msgid "Righ~t/Bottom"
msgstr ""
-#. e,mA
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3141,7 +2827,6 @@ msgctxt ""
msgid "~Last line"
msgstr ""
-#. K+u#
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3151,7 +2836,6 @@ msgctxt ""
msgid "Default"
msgstr ""
-#. ls1d
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3161,7 +2845,6 @@ msgctxt ""
msgid "Left"
msgstr ""
-#. BkV=
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3171,7 +2854,6 @@ msgctxt ""
msgid "Centered"
msgstr ""
-#. v4iU
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3181,7 +2863,6 @@ msgctxt ""
msgid "Justified"
msgstr ""
-#. #g3s
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3191,7 +2872,6 @@ msgctxt ""
msgid "~Expand single word"
msgstr ""
-#. S(\L
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3201,7 +2881,6 @@ msgctxt ""
msgid "Snap to text grid (if active)"
msgstr ""
-#. X(rr
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3211,7 +2890,6 @@ msgctxt ""
msgid "Text-to-text"
msgstr ""
-#. jT)2
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3221,7 +2899,6 @@ msgctxt ""
msgid "~Alignment"
msgstr ""
-#. S+0s
#: paragrph.src
#, fuzzy
msgctxt ""
@@ -3232,7 +2909,6 @@ msgctxt ""
msgid "Automatic"
msgstr "خودکار"
-#. U#tn
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3242,7 +2918,6 @@ msgctxt ""
msgid "Base line"
msgstr ""
-#. pHU+
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3252,7 +2927,6 @@ msgctxt ""
msgid "Top"
msgstr ""
-#. pHHI
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3262,7 +2936,6 @@ msgctxt ""
msgid "Middle"
msgstr ""
-#. i|[!
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3272,7 +2945,6 @@ msgctxt ""
msgid "Bottom"
msgstr ""
-#. T1vl
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3282,7 +2954,6 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. ;pI?
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3292,7 +2963,6 @@ msgctxt ""
msgid "Text ~direction"
msgstr ""
-#. Sl0L
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3301,7 +2971,6 @@ msgctxt ""
msgid "Alignment"
msgstr ""
-#. O6\q
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3311,7 +2980,6 @@ msgctxt ""
msgid "A~utomatically"
msgstr ""
-#. s4qf
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3321,7 +2989,6 @@ msgctxt ""
msgid "C~haracters at line end"
msgstr ""
-#. %kqA
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3331,7 +2998,6 @@ msgctxt ""
msgid "Cha~racters at line begin"
msgstr ""
-#. ;PO.
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3341,7 +3007,6 @@ msgctxt ""
msgid "~Maximum number of consecutive hyphens"
msgstr ""
-#. Omad
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3351,7 +3016,6 @@ msgctxt ""
msgid "Hyphenation"
msgstr ""
-#. ]Sp@
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3361,7 +3025,6 @@ msgctxt ""
msgid "Options"
msgstr ""
-#. E1i\
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3371,7 +3034,6 @@ msgctxt ""
msgid "Breaks"
msgstr ""
-#. rU:)
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3381,7 +3043,6 @@ msgctxt ""
msgid "Insert"
msgstr ""
-#. ^[8,
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3391,7 +3052,6 @@ msgctxt ""
msgid "~Type"
msgstr ""
-#. +2m-
#: paragrph.src
#, fuzzy
msgctxt ""
@@ -3402,7 +3062,6 @@ msgctxt ""
msgid "Page"
msgstr "صفحات"
-#. (v\9
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3412,7 +3071,6 @@ msgctxt ""
msgid "Column"
msgstr ""
-#. 8C1!
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3422,7 +3080,6 @@ msgctxt ""
msgid "Position"
msgstr ""
-#. VMnE
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3432,7 +3089,6 @@ msgctxt ""
msgid "Before"
msgstr ""
-#. G;4q
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3442,7 +3098,6 @@ msgctxt ""
msgid "After"
msgstr ""
-#. Qx[/
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3452,7 +3107,6 @@ msgctxt ""
msgid "With Page St~yle"
msgstr ""
-#. A||6
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3462,7 +3116,6 @@ msgctxt ""
msgid "Page ~number"
msgstr ""
-#. 6B?@
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3472,7 +3125,6 @@ msgctxt ""
msgid "~Do not split paragraph"
msgstr ""
-#. \/51
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3482,7 +3134,6 @@ msgctxt ""
msgid "~Keep with next paragraph"
msgstr ""
-#. [q5c
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3492,7 +3143,6 @@ msgctxt ""
msgid "~Orphan control"
msgstr ""
-#. ;)R[
#: paragrph.src
#, fuzzy
msgctxt ""
@@ -3503,7 +3153,6 @@ msgctxt ""
msgid "Lines"
msgstr "~ربط"
-#. s_uO
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3513,7 +3162,6 @@ msgctxt ""
msgid "~Widow control"
msgstr ""
-#. =LpZ
#: paragrph.src
#, fuzzy
msgctxt ""
@@ -3524,7 +3172,6 @@ msgctxt ""
msgid "Lines"
msgstr "~ربط"
-#. n9mP
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3533,7 +3180,6 @@ msgctxt ""
msgid "Text Flow"
msgstr ""
-#. (Z.s
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3543,7 +3189,6 @@ msgctxt ""
msgid "Line change"
msgstr ""
-#. OaEY
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3553,7 +3198,6 @@ msgctxt ""
msgid "Apply list of forbidden characters to the beginning and end of lines"
msgstr ""
-#. -ajB
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3563,7 +3207,6 @@ msgctxt ""
msgid "Allow hanging punctuation"
msgstr ""
-#. _OC;
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3573,7 +3216,6 @@ msgctxt ""
msgid "Apply spacing between Asian, Latin and Complex text"
msgstr ""
-#. Wkuv
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3582,7 +3224,6 @@ msgctxt ""
msgid "Asian Typography"
msgstr ""
-#. Z|=E
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3591,7 +3232,6 @@ msgctxt ""
msgid "Example"
msgstr ""
-#. ]/7=
#: paragrph.src
msgctxt ""
"paragrph.src\n"
@@ -3600,7 +3240,6 @@ msgctxt ""
msgid "Page Style"
msgstr ""
-#. lJ(k
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3610,7 +3249,6 @@ msgctxt ""
msgid "Event"
msgstr ""
-#. i0E2
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3620,7 +3258,6 @@ msgctxt ""
msgid "Assigned macro"
msgstr ""
-#. qfu2
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3630,7 +3267,6 @@ msgctxt ""
msgid "~Existing macros\n"
msgstr ""
-#. ts5_
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3640,7 +3276,6 @@ msgctxt ""
msgid "~Assign"
msgstr ""
-#. Jft1
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3650,7 +3285,6 @@ msgctxt ""
msgid "~Remove"
msgstr ""
-#. \1di
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3660,7 +3294,6 @@ msgctxt ""
msgid "Macros"
msgstr ""
-#. mt7o
#: macroass.src
msgctxt ""
"macroass.src\n"
@@ -3669,7 +3302,6 @@ msgctxt ""
msgid "Assign Macro"
msgstr ""
-#. $-R1
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3679,7 +3311,6 @@ msgctxt ""
msgid "Replace"
msgstr ""
-#. %iDN
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3689,7 +3320,6 @@ msgctxt ""
msgid "Exceptions"
msgstr ""
-#. r$zB
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3699,7 +3329,6 @@ msgctxt ""
msgid "Options"
msgstr ""
-#. ]?@*
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3709,7 +3338,6 @@ msgctxt ""
msgid "Options"
msgstr ""
-#. h#j_
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3719,7 +3347,6 @@ msgctxt ""
msgid "Localized Options"
msgstr ""
-#. (O)t
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3729,7 +3356,6 @@ msgctxt ""
msgid "Word Completion"
msgstr ""
-#. K({T
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3739,7 +3365,6 @@ msgctxt ""
msgid "Smart Tags"
msgstr ""
-#. d@N`
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3749,7 +3374,6 @@ msgctxt ""
msgid "Replacements and exceptions for language:"
msgstr ""
-#. `jKj
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3758,7 +3382,6 @@ msgctxt ""
msgid "AutoCorrect"
msgstr ""
-#. mv.C
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3768,7 +3391,6 @@ msgctxt ""
msgid "Use replacement table"
msgstr ""
-#. 0X7D
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3778,7 +3400,6 @@ msgctxt ""
msgid "Correct TWo INitial CApitals"
msgstr ""
-#. FMV4
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3788,7 +3409,6 @@ msgctxt ""
msgid "Capitalize first letter of every sentence"
msgstr ""
-#. |L6G
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3798,7 +3418,6 @@ msgctxt ""
msgid "Automatic *bold* and _underline_"
msgstr ""
-#. H[+g
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3808,7 +3427,6 @@ msgctxt ""
msgid "Ignore double spaces"
msgstr ""
-#. X,n4
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3818,7 +3436,6 @@ msgctxt ""
msgid "URL Recognition"
msgstr ""
-#. S+Mv
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3828,7 +3445,6 @@ msgctxt ""
msgid "Replace dashes"
msgstr ""
-#. B`19
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3838,7 +3454,6 @@ msgctxt ""
msgid "Correct accidental use of cAPS LOCK key"
msgstr ""
-#. ukmo
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3847,7 +3462,6 @@ msgctxt ""
msgid "Settings"
msgstr ""
-#. kXDp
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3857,7 +3471,6 @@ msgctxt ""
msgid "~Edit..."
msgstr ""
-#. _iVG
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3867,7 +3480,6 @@ msgctxt ""
msgid "[M]"
msgstr ""
-#. E\g,
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3877,7 +3489,6 @@ msgctxt ""
msgid "[T]"
msgstr ""
-#. pT*_
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3887,7 +3498,6 @@ msgctxt ""
msgid "[M]: Replace while modifying existing text"
msgstr ""
-#. 0Qc8
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3897,7 +3507,6 @@ msgctxt ""
msgid "[T]: AutoFormat/AutoCorrect while typing"
msgstr ""
-#. M.gd
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3907,7 +3516,6 @@ msgctxt ""
msgid "Remove blank paragraphs"
msgstr ""
-#. `1g0
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3917,7 +3525,6 @@ msgctxt ""
msgid "Replace Custom Styles"
msgstr ""
-#. 3.Pp
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3927,7 +3534,6 @@ msgctxt ""
msgid "Replace bullets with: "
msgstr ""
-#. -j6z
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3937,7 +3543,6 @@ msgctxt ""
msgid "Combine single line paragraphs if length greater than"
msgstr ""
-#. ag=D
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3947,7 +3552,6 @@ msgctxt ""
msgid "Apply numbering - symbol: "
msgstr ""
-#. G_2y
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3957,7 +3561,6 @@ msgctxt ""
msgid "Apply border"
msgstr ""
-#. 0]MR
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3967,7 +3570,6 @@ msgctxt ""
msgid "Create table"
msgstr ""
-#. 8kir
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3977,7 +3579,6 @@ msgctxt ""
msgid "Apply Styles"
msgstr ""
-#. +[L8
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3987,7 +3588,6 @@ msgctxt ""
msgid "Delete spaces and tabs at beginning and end of paragraph"
msgstr ""
-#. ]UYr
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -3997,7 +3597,6 @@ msgctxt ""
msgid "Delete spaces and tabs at end and start of line"
msgstr ""
-#. ^1|!
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4007,7 +3606,6 @@ msgctxt ""
msgid "Minimum size"
msgstr ""
-#. 6\kd
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4016,7 +3614,6 @@ msgctxt ""
msgid "Combine"
msgstr ""
-#. Md6)
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4026,7 +3623,6 @@ msgctxt ""
msgid "Repla~ce"
msgstr ""
-#. v=7;
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4036,7 +3632,6 @@ msgctxt ""
msgid "~With:"
msgstr ""
-#. j!Eh
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4046,7 +3641,6 @@ msgctxt ""
msgid "~Text only"
msgstr ""
-#. ~H{[
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4056,7 +3650,6 @@ msgctxt ""
msgid "~New"
msgstr ""
-#. FeJZ
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4066,7 +3659,6 @@ msgctxt ""
msgid "~Delete"
msgstr ""
-#. 5=_`
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4076,7 +3668,6 @@ msgctxt ""
msgid "~Replace"
msgstr ""
-#. ECB7
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4086,7 +3677,6 @@ msgctxt ""
msgid "Abbreviations (no subsequent capital)"
msgstr ""
-#. qJB2
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4096,7 +3686,6 @@ msgctxt ""
msgid "~New"
msgstr ""
-#. )H[d
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4106,7 +3695,6 @@ msgctxt ""
msgid "~Delete"
msgstr ""
-#. )n=I
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4116,7 +3704,6 @@ msgctxt ""
msgid "~AutoInclude"
msgstr ""
-#. qji9
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4126,7 +3713,6 @@ msgctxt ""
msgid "Words with TWo INitial CApitals"
msgstr ""
-#. E{Gr
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4136,7 +3722,6 @@ msgctxt ""
msgid "Ne~w"
msgstr ""
-#. Jd!_
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4146,7 +3731,6 @@ msgctxt ""
msgid "Dele~te"
msgstr ""
-#. a7:W
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4156,7 +3740,6 @@ msgctxt ""
msgid "A~utoInclude"
msgstr ""
-#. ^}`W
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4166,7 +3749,6 @@ msgctxt ""
msgid "New abbreviations"
msgstr ""
-#. RSVZ
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4176,7 +3758,6 @@ msgctxt ""
msgid "Delete abbreviations"
msgstr ""
-#. auO@
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4186,7 +3767,6 @@ msgctxt ""
msgid "New words with two initial capitals"
msgstr ""
-#. A.R2
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4196,7 +3776,6 @@ msgctxt ""
msgid "Delete words with two initial capitals"
msgstr ""
-#. JFG?
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4206,7 +3785,6 @@ msgctxt ""
msgid "[M]"
msgstr ""
-#. dc!2
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4216,7 +3794,6 @@ msgctxt ""
msgid "[T]"
msgstr ""
-#. C+Ug
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4226,7 +3803,6 @@ msgctxt ""
msgid "Add non breaking space before specific punctuation marks in french text"
msgstr ""
-#. ]2VJ
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4236,7 +3812,6 @@ msgctxt ""
msgid "Format ordinal numbers suffixes (1st -> 1^st)"
msgstr ""
-#. -A%1
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4246,7 +3821,6 @@ msgctxt ""
msgid "Single quotes"
msgstr ""
-#. 2ie3
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4256,7 +3830,6 @@ msgctxt ""
msgid "Repla~ce"
msgstr ""
-#. B74f
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4266,7 +3839,6 @@ msgctxt ""
msgid "~Start quote:"
msgstr ""
-#. p/_n
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4276,7 +3848,6 @@ msgctxt ""
msgid "~End quote:"
msgstr ""
-#. EX/O
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4286,7 +3857,6 @@ msgctxt ""
msgid "~Default"
msgstr ""
-#. [iUT
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4296,7 +3866,6 @@ msgctxt ""
msgid "Double quotes"
msgstr ""
-#. )t3#
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4306,7 +3875,6 @@ msgctxt ""
msgid "Repl~ace"
msgstr ""
-#. DrFf
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4316,7 +3884,6 @@ msgctxt ""
msgid "Start q~uote:"
msgstr ""
-#. :3`Z
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4326,7 +3893,6 @@ msgctxt ""
msgid "E~nd quote:"
msgstr ""
-#. !7g6
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4336,7 +3902,6 @@ msgctxt ""
msgid "De~fault"
msgstr ""
-#. GPLo
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4346,7 +3911,6 @@ msgctxt ""
msgid "Start quote"
msgstr ""
-#. ).eR
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4356,7 +3920,6 @@ msgctxt ""
msgid "End quote"
msgstr ""
-#. N@eH
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4366,7 +3929,6 @@ msgctxt ""
msgid "Default"
msgstr ""
-#. ^)Z|
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4376,7 +3938,6 @@ msgctxt ""
msgid "Single quotes default"
msgstr ""
-#. |kXi
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4386,7 +3947,6 @@ msgctxt ""
msgid "Double quotes default"
msgstr ""
-#. 5X,b
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4396,7 +3956,6 @@ msgctxt ""
msgid "Start quote of single quotes"
msgstr ""
-#. ]QB^
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4406,7 +3965,6 @@ msgctxt ""
msgid "Start quote of double quotes"
msgstr ""
-#. $HU7
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4416,7 +3974,6 @@ msgctxt ""
msgid "End quote of single quotes"
msgstr ""
-#. SjPl
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4426,7 +3983,6 @@ msgctxt ""
msgid "End quote of double quotes"
msgstr ""
-#. LQ^p
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4435,7 +3991,6 @@ msgctxt ""
msgid "Localized Options"
msgstr ""
-#. bb2+
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4445,7 +4000,6 @@ msgctxt ""
msgid "Enable word ~completion"
msgstr ""
-#. ~kT\
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4455,7 +4009,6 @@ msgctxt ""
msgid "~Append space"
msgstr ""
-#. 5Ilv
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4465,7 +4018,6 @@ msgctxt ""
msgid "~Show as tip"
msgstr ""
-#. )rBV
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4475,7 +4027,6 @@ msgctxt ""
msgid "C~ollect words"
msgstr ""
-#. Ox(#
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4485,7 +4036,6 @@ msgctxt ""
msgid "~When closing a document, remove the words collected from it from the list"
msgstr ""
-#. k-1!
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4495,7 +4045,6 @@ msgctxt ""
msgid "Acc~ept with"
msgstr ""
-#. eogE
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4505,7 +4054,6 @@ msgctxt ""
msgid "Mi~n. word length"
msgstr ""
-#. %)vT
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4515,7 +4063,6 @@ msgctxt ""
msgid "~Max. entries"
msgstr ""
-#. 7RkL
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4525,7 +4072,6 @@ msgctxt ""
msgid "~Delete Entry"
msgstr ""
-#. zT|y
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4534,7 +4080,6 @@ msgctxt ""
msgid "Word Completion"
msgstr ""
-#. OGA)
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4544,7 +4089,6 @@ msgctxt ""
msgid "Label text with smart tags"
msgstr ""
-#. O4k5
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4554,7 +4098,6 @@ msgctxt ""
msgid "Currently installed smart tags"
msgstr ""
-#. Czo^
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4564,7 +4107,6 @@ msgctxt ""
msgid "Properties..."
msgstr ""
-#. ME8-
#: autocdlg.src
msgctxt ""
"autocdlg.src\n"
@@ -4573,7 +4115,6 @@ msgctxt ""
msgid "Smart Tags"
msgstr ""
-#. C%az
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4583,7 +4124,6 @@ msgctxt ""
msgid "Line properties"
msgstr ""
-#. 2RU!
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4593,7 +4133,6 @@ msgctxt ""
msgid "~Style"
msgstr ""
-#. @6!$
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4603,7 +4142,6 @@ msgctxt ""
msgid "Colo~r"
msgstr ""
-#. \D?-
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4613,7 +4151,6 @@ msgctxt ""
msgid "~Width"
msgstr ""
-#. -@}2
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4623,7 +4160,6 @@ msgctxt ""
msgid "~Transparency"
msgstr ""
-#. Hpp[
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4633,7 +4169,6 @@ msgctxt ""
msgid "Arrow styles"
msgstr ""
-#. 3OsL
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4643,7 +4178,6 @@ msgctxt ""
msgid "St~yle"
msgstr ""
-#. O7$H
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4653,7 +4187,6 @@ msgctxt ""
msgid "Wi~dth"
msgstr ""
-#. 6d+_
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4663,7 +4196,6 @@ msgctxt ""
msgid "Ce~nter"
msgstr ""
-#. (r[L
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4673,7 +4205,6 @@ msgctxt ""
msgid "C~enter"
msgstr ""
-#. ~=o$
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4683,7 +4214,6 @@ msgctxt ""
msgid "Synchroni~ze ends"
msgstr ""
-#. KoFj
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4693,7 +4223,6 @@ msgctxt ""
msgid "Corner and cap styles"
msgstr ""
-#. \lyH
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4703,7 +4232,6 @@ msgctxt ""
msgid "~Corner style"
msgstr ""
-#. (bCn
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4713,7 +4241,6 @@ msgctxt ""
msgid "Rounded"
msgstr ""
-#. s4nS
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4723,7 +4250,6 @@ msgctxt ""
msgid "- none -"
msgstr ""
-#. A[nJ
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4733,7 +4259,6 @@ msgctxt ""
msgid "Mitered"
msgstr ""
-#. XHol
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4743,7 +4268,6 @@ msgctxt ""
msgid "Beveled"
msgstr ""
-#. `e16
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4753,7 +4277,6 @@ msgctxt ""
msgid "Ca~p style"
msgstr ""
-#. /vXe
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4763,7 +4286,6 @@ msgctxt ""
msgid "Flat"
msgstr ""
-#. \%w@
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4773,7 +4295,6 @@ msgctxt ""
msgid "Round"
msgstr ""
-#. L}p.
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4783,7 +4304,6 @@ msgctxt ""
msgid "Square"
msgstr ""
-#. q.CD
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4793,7 +4313,6 @@ msgctxt ""
msgid "Icon"
msgstr ""
-#. @bEf
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4803,7 +4322,6 @@ msgctxt ""
msgid "No Symbol"
msgstr ""
-#. [HWA
#: tabline.src
#, fuzzy
msgctxt ""
@@ -4814,7 +4332,6 @@ msgctxt ""
msgid "Automatic"
msgstr "خودکار"
-#. wNoJ
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4824,7 +4341,6 @@ msgctxt ""
msgid "From file..."
msgstr ""
-#. /_t{
#: tabline.src
#, fuzzy
msgctxt ""
@@ -4835,7 +4351,6 @@ msgctxt ""
msgid "Gallery"
msgstr "دریچہ"
-#. Rrei
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4845,7 +4360,6 @@ msgctxt ""
msgid "Symbols"
msgstr ""
-#. e=WC
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4855,7 +4369,6 @@ msgctxt ""
msgid "Select..."
msgstr ""
-#. ,L[E
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4865,7 +4378,6 @@ msgctxt ""
msgid "Width"
msgstr ""
-#. faep
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4875,7 +4387,6 @@ msgctxt ""
msgid "Height"
msgstr ""
-#. O*%]
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4885,7 +4396,6 @@ msgctxt ""
msgid "Keep ratio"
msgstr ""
-#. Y[la
#: tabline.src
#, fuzzy
msgctxt ""
@@ -4896,7 +4406,6 @@ msgctxt ""
msgid "Style"
msgstr "انداز:"
-#. lB[j
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4906,7 +4415,6 @@ msgctxt ""
msgid "Start style"
msgstr ""
-#. d8%,
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4916,7 +4424,6 @@ msgctxt ""
msgid "End style"
msgstr ""
-#. kcar
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4926,7 +4433,6 @@ msgctxt ""
msgid "Start width"
msgstr ""
-#. pM`y
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4936,7 +4442,6 @@ msgctxt ""
msgid "End width"
msgstr ""
-#. %an!
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4946,7 +4451,6 @@ msgctxt ""
msgid "Start with center"
msgstr ""
-#. V-Kg
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4956,7 +4460,6 @@ msgctxt ""
msgid "End with center"
msgstr ""
-#. Y[a%
#: tabline.src
#, fuzzy
msgctxt ""
@@ -4966,7 +4469,6 @@ msgctxt ""
msgid "Lines"
msgstr "~ربط"
-#. R?]H
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4976,7 +4478,6 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. ;rab
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4986,7 +4487,6 @@ msgctxt ""
msgid "~Type"
msgstr ""
-#. RU*2
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -4996,7 +4496,6 @@ msgctxt ""
msgid "Dot"
msgstr ""
-#. )_!j
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5006,7 +4505,6 @@ msgctxt ""
msgid "Dash"
msgstr ""
-#. 7O2m
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5016,7 +4514,6 @@ msgctxt ""
msgid "Dot"
msgstr ""
-#. ^F}_
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5026,7 +4523,6 @@ msgctxt ""
msgid "Dash"
msgstr ""
-#. @,:%
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5036,7 +4532,6 @@ msgctxt ""
msgid "~Number"
msgstr ""
-#. 9wnD
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5046,7 +4541,6 @@ msgctxt ""
msgid "~Length"
msgstr ""
-#. W%eJ
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5056,7 +4550,6 @@ msgctxt ""
msgid "~Spacing"
msgstr ""
-#. #-OS
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5066,7 +4559,6 @@ msgctxt ""
msgid "~Fit to line width"
msgstr ""
-#. S^Zl
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5076,7 +4568,6 @@ msgctxt ""
msgid "Line style"
msgstr ""
-#. 4ov8
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5086,7 +4577,6 @@ msgctxt ""
msgid "~Add..."
msgstr ""
-#. }T1#
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5096,7 +4586,6 @@ msgctxt ""
msgid "~Modify..."
msgstr ""
-#. ?=2c
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5106,7 +4595,6 @@ msgctxt ""
msgid "~Delete..."
msgstr ""
-#. BF%@
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5116,7 +4604,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. 4Cd.
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5126,7 +4613,6 @@ msgctxt ""
msgid "Load Line Styles"
msgstr ""
-#. igk%
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5136,7 +4622,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. 7.fE
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5146,7 +4631,6 @@ msgctxt ""
msgid "Save Line Styles"
msgstr ""
-#. n%Vq
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5156,7 +4640,6 @@ msgctxt ""
msgid "Start type"
msgstr ""
-#. p}ZC
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5166,7 +4649,6 @@ msgctxt ""
msgid "End type"
msgstr ""
-#. vcqy
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5176,7 +4658,6 @@ msgctxt ""
msgid "Start number"
msgstr ""
-#. h3AC
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5186,7 +4667,6 @@ msgctxt ""
msgid "End number"
msgstr ""
-#. QtEh
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5196,7 +4676,6 @@ msgctxt ""
msgid "Start length"
msgstr ""
-#. ?3ke
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5206,7 +4685,6 @@ msgctxt ""
msgid "End length"
msgstr ""
-#. +}V3
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5215,7 +4693,6 @@ msgctxt ""
msgid "Define line styles"
msgstr ""
-#. eF$x
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5225,7 +4702,6 @@ msgctxt ""
msgid "Organize arrow styles"
msgstr ""
-#. dexG
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5235,7 +4711,6 @@ msgctxt ""
msgid "Add a selected object to create new arrow styles."
msgstr ""
-#. pN,$
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5245,7 +4720,6 @@ msgctxt ""
msgid "Arrow style"
msgstr ""
-#. ~Vj/
#: tabline.src
#, fuzzy
msgctxt ""
@@ -5256,7 +4730,6 @@ msgctxt ""
msgid "~Title"
msgstr "عنوان"
-#. ~-~j
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5266,7 +4739,6 @@ msgctxt ""
msgid "~Add..."
msgstr ""
-#. *5X^
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5276,7 +4748,6 @@ msgctxt ""
msgid "~Modify..."
msgstr ""
-#. gab$
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5286,7 +4757,6 @@ msgctxt ""
msgid "~Delete..."
msgstr ""
-#. =aen
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5296,7 +4766,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. JGf;
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5306,7 +4775,6 @@ msgctxt ""
msgid "Load Arrow Styles"
msgstr ""
-#. mdqE
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5316,7 +4784,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. ,)vS
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5326,7 +4793,6 @@ msgctxt ""
msgid "Save Arrow Styles"
msgstr ""
-#. g*JP
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5335,7 +4801,6 @@ msgctxt ""
msgid "Arrowheads"
msgstr ""
-#. ciPm
#: tabline.src
#, fuzzy
msgctxt ""
@@ -5346,7 +4811,6 @@ msgctxt ""
msgid "Line"
msgstr "~ربط"
-#. i$sT
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5356,7 +4820,6 @@ msgctxt ""
msgid "Shadow"
msgstr ""
-#. #0Y4
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5366,7 +4829,6 @@ msgctxt ""
msgid "Line Styles"
msgstr ""
-#. +,@9
#: tabline.src
msgctxt ""
"tabline.src\n"
@@ -5376,7 +4838,6 @@ msgctxt ""
msgid "Arrow Styles"
msgstr ""
-#. H-#b
#: tabline.src
#, fuzzy
msgctxt ""
@@ -5386,7 +4847,6 @@ msgctxt ""
msgid "Line"
msgstr "~ربط"
-#. /|U|
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5396,7 +4856,6 @@ msgctxt ""
msgid "~Category"
msgstr ""
-#. !Z5N
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5406,7 +4865,6 @@ msgctxt ""
msgid "All"
msgstr ""
-#. QQOp
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5416,7 +4874,6 @@ msgctxt ""
msgid "User-defined"
msgstr ""
-#. :I\4
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5426,7 +4883,6 @@ msgctxt ""
msgid "Number"
msgstr ""
-#. ^cP:
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5436,7 +4892,6 @@ msgctxt ""
msgid "Percent"
msgstr ""
-#. Q*F8
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5446,7 +4901,6 @@ msgctxt ""
msgid "Currency"
msgstr ""
-#. )s1O
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5456,7 +4910,6 @@ msgctxt ""
msgid "Date"
msgstr ""
-#. sG:@
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5466,7 +4919,6 @@ msgctxt ""
msgid "Time"
msgstr ""
-#. fj6?
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5476,7 +4928,6 @@ msgctxt ""
msgid "Scientific"
msgstr ""
-#. ^A8z
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5486,7 +4937,6 @@ msgctxt ""
msgid "Fraction"
msgstr ""
-#. (iMc
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5496,7 +4946,6 @@ msgctxt ""
msgid "Boolean Value"
msgstr ""
-#. cqPK
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5506,7 +4955,6 @@ msgctxt ""
msgid "Text"
msgstr ""
-#. |4Oa
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5516,7 +4964,6 @@ msgctxt ""
msgid "~Format code"
msgstr ""
-#. H[8Z
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5526,7 +4973,6 @@ msgctxt ""
msgid "F~ormat"
msgstr ""
-#. sq*T
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5536,7 +4982,6 @@ msgctxt ""
msgid "Automatically"
msgstr ""
-#. ,8.k
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5546,7 +4991,6 @@ msgctxt ""
msgid "~Decimal places"
msgstr ""
-#. !1fL
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5556,7 +5000,6 @@ msgctxt ""
msgid "Leading ~zeroes"
msgstr ""
-#. QV;e
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5566,7 +5009,6 @@ msgctxt ""
msgid "~Negative numbers red"
msgstr ""
-#. {Ro/
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5576,7 +5018,6 @@ msgctxt ""
msgid "~Thousands separator"
msgstr ""
-#. %3E4
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5586,7 +5027,6 @@ msgctxt ""
msgid "Options"
msgstr ""
-#. [O\)
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5596,7 +5036,6 @@ msgctxt ""
msgid "~Language"
msgstr ""
-#. X@}M
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5606,7 +5045,6 @@ msgctxt ""
msgid "So~urce format"
msgstr ""
-#. qG\P
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5616,7 +5054,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. G[Q(
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5626,7 +5063,6 @@ msgctxt ""
msgid "Add"
msgstr ""
-#. K,^/
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5636,7 +5072,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. *BMt
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5646,7 +5081,6 @@ msgctxt ""
msgid "Remove"
msgstr ""
-#. A/zQ
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5656,7 +5090,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. Q5D7
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5666,7 +5099,6 @@ msgctxt ""
msgid "Edit Comment"
msgstr ""
-#. bH#n
#: numfmt.src
#, fuzzy
msgctxt ""
@@ -5677,7 +5109,6 @@ msgctxt ""
msgid "Automatic"
msgstr "خودکار"
-#. DUv#
#: numfmt.src
msgctxt ""
"numfmt.src\n"
@@ -5686,7 +5117,6 @@ msgctxt ""
msgid "Number Format"
msgstr ""
-#. EWij
#: bbdlg.src
msgctxt ""
"bbdlg.src\n"
@@ -5696,7 +5126,6 @@ msgctxt ""
msgid "Borders"
msgstr ""
-#. ?^{_
#: bbdlg.src
msgctxt ""
"bbdlg.src\n"
@@ -5706,7 +5135,6 @@ msgctxt ""
msgid "Background"
msgstr ""
-#. b4iR
#: bbdlg.src
msgctxt ""
"bbdlg.src\n"
@@ -5715,7 +5143,6 @@ msgctxt ""
msgid "Border / Background"
msgstr ""
-#. NkV_
#: page.src
msgctxt ""
"page.src\n"
@@ -5725,7 +5152,6 @@ msgctxt ""
msgid "Paper format"
msgstr ""
-#. jQ+m
#: page.src
msgctxt ""
"page.src\n"
@@ -5735,7 +5161,6 @@ msgctxt ""
msgid "~Format"
msgstr ""
-#. *cE#
#: page.src
msgctxt ""
"page.src\n"
@@ -5745,7 +5170,6 @@ msgctxt ""
msgid "~Width"
msgstr ""
-#. 9a{M
#: page.src
msgctxt ""
"page.src\n"
@@ -5755,7 +5179,6 @@ msgctxt ""
msgid "~Height"
msgstr ""
-#. .8Jh
#: page.src
msgctxt ""
"page.src\n"
@@ -5765,7 +5188,6 @@ msgctxt ""
msgid "Orientation"
msgstr ""
-#. +Q$L
#: page.src
msgctxt ""
"page.src\n"
@@ -5775,7 +5197,6 @@ msgctxt ""
msgid "~Portrait"
msgstr ""
-#. \y3M
#: page.src
msgctxt ""
"page.src\n"
@@ -5785,7 +5206,6 @@ msgctxt ""
msgid "L~andscape"
msgstr ""
-#. x|e8
#: page.src
msgctxt ""
"page.src\n"
@@ -5795,7 +5215,6 @@ msgctxt ""
msgid "~Text direction"
msgstr ""
-#. B,2B
#: page.src
msgctxt ""
"page.src\n"
@@ -5805,7 +5224,6 @@ msgctxt ""
msgid "Paper ~tray"
msgstr ""
-#. -2`o
#: page.src
msgctxt ""
"page.src\n"
@@ -5815,7 +5233,6 @@ msgctxt ""
msgid "Margins"
msgstr ""
-#. Y/qs
#: page.src
msgctxt ""
"page.src\n"
@@ -5825,7 +5242,6 @@ msgctxt ""
msgid "~Left"
msgstr ""
-#. xn-)
#: page.src
msgctxt ""
"page.src\n"
@@ -5835,7 +5251,6 @@ msgctxt ""
msgid "~Right"
msgstr ""
-#. dmv8
#: page.src
msgctxt ""
"page.src\n"
@@ -5845,7 +5260,6 @@ msgctxt ""
msgid "~Top"
msgstr ""
-#. TXd3
#: page.src
msgctxt ""
"page.src\n"
@@ -5855,7 +5269,6 @@ msgctxt ""
msgid "~Bottom"
msgstr ""
-#. ;YeP
#: page.src
msgctxt ""
"page.src\n"
@@ -5865,7 +5278,6 @@ msgctxt ""
msgid "Layout settings"
msgstr ""
-#. \/\B
#: page.src
msgctxt ""
"page.src\n"
@@ -5875,7 +5287,6 @@ msgctxt ""
msgid "Page layout"
msgstr ""
-#. OKAX
#: page.src
msgctxt ""
"page.src\n"
@@ -5885,7 +5296,6 @@ msgctxt ""
msgid "Right and left"
msgstr ""
-#. d$K5
#: page.src
msgctxt ""
"page.src\n"
@@ -5895,7 +5305,6 @@ msgctxt ""
msgid "Mirrored"
msgstr ""
-#. zkb9
#: page.src
msgctxt ""
"page.src\n"
@@ -5905,7 +5314,6 @@ msgctxt ""
msgid "Only right"
msgstr ""
-#. ;*O#
#: page.src
msgctxt ""
"page.src\n"
@@ -5915,7 +5323,6 @@ msgctxt ""
msgid "Only left"
msgstr ""
-#. S_Tj
#: page.src
msgctxt ""
"page.src\n"
@@ -5925,7 +5332,6 @@ msgctxt ""
msgid "For~mat"
msgstr ""
-#. G%B}
#: page.src
msgctxt ""
"page.src\n"
@@ -5935,7 +5341,6 @@ msgctxt ""
msgid "1, 2, 3, ..."
msgstr ""
-#. *E(=
#: page.src
msgctxt ""
"page.src\n"
@@ -5945,7 +5350,6 @@ msgctxt ""
msgid "A, B, C, ..."
msgstr ""
-#. :qQZ
#: page.src
msgctxt ""
"page.src\n"
@@ -5955,7 +5359,6 @@ msgctxt ""
msgid "a, b, c, ..."
msgstr ""
-#. +kV=
#: page.src
msgctxt ""
"page.src\n"
@@ -5965,7 +5368,6 @@ msgctxt ""
msgid "I, II, III, ..."
msgstr ""
-#. T|%B
#: page.src
msgctxt ""
"page.src\n"
@@ -5975,7 +5377,6 @@ msgctxt ""
msgid "i, ii, iii, ..."
msgstr ""
-#. m\b/
#: page.src
msgctxt ""
"page.src\n"
@@ -5985,7 +5386,6 @@ msgctxt ""
msgid "None"
msgstr ""
-#. Z_dU
#: page.src
msgctxt ""
"page.src\n"
@@ -5995,7 +5395,6 @@ msgctxt ""
msgid "A, .., AA, .., AAA, ..."
msgstr ""
-#. A[8%
#: page.src
msgctxt ""
"page.src\n"
@@ -6005,7 +5404,6 @@ msgctxt ""
msgid "a, .., aa, .., aaa, ..."
msgstr ""
-#. [e-7
#: page.src
msgctxt ""
"page.src\n"
@@ -6015,7 +5413,6 @@ msgctxt ""
msgid "Native Numbering"
msgstr ""
-#. PpFS
#: page.src
msgctxt ""
"page.src\n"
@@ -6025,7 +5422,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
msgstr ""
-#. 7P:)
#: page.src
msgctxt ""
"page.src\n"
@@ -6035,7 +5431,6 @@ msgctxt ""
msgid "а, б, .., аа, аб, ... (Bulgarian)"
msgstr ""
-#. Z1l@
#: page.src
msgctxt ""
"page.src\n"
@@ -6045,7 +5440,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
msgstr ""
-#. Ql$!
#: page.src
msgctxt ""
"page.src\n"
@@ -6055,7 +5449,6 @@ msgctxt ""
msgid "а, б, .., аа, бб, ... (Bulgarian)"
msgstr ""
-#. *eo*
#: page.src
msgctxt ""
"page.src\n"
@@ -6065,7 +5458,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Аб, ... (Russian)"
msgstr ""
-#. :C\_
#: page.src
msgctxt ""
"page.src\n"
@@ -6075,7 +5467,6 @@ msgctxt ""
msgid "а, б, .., аа, аб, ... (Russian)"
msgstr ""
-#. [NVz
#: page.src
msgctxt ""
"page.src\n"
@@ -6085,7 +5476,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Бб, ... (Russian)"
msgstr ""
-#. VPcI
#: page.src
msgctxt ""
"page.src\n"
@@ -6095,7 +5485,6 @@ msgctxt ""
msgid "а, б, .., аа, бб, ... (Russian)"
msgstr ""
-#. ;K\[
#: page.src
msgctxt ""
"page.src\n"
@@ -6105,7 +5494,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Аб, ... (Serbian)"
msgstr ""
-#. 2Ii3
#: page.src
msgctxt ""
"page.src\n"
@@ -6115,7 +5503,6 @@ msgctxt ""
msgid "а, б, .., аа, аб, ... (Serbian)"
msgstr ""
-#. C/`.
#: page.src
msgctxt ""
"page.src\n"
@@ -6125,7 +5512,6 @@ msgctxt ""
msgid "А, Б, .., Аа, Бб, ... (Serbian)"
msgstr ""
-#. no[X
#: page.src
msgctxt ""
"page.src\n"
@@ -6135,7 +5521,6 @@ msgctxt ""
msgid "а, б, .., аа, бб, ... (Serbian)"
msgstr ""
-#. #/VS
#: page.src
msgctxt ""
"page.src\n"
@@ -6145,7 +5530,6 @@ msgctxt ""
msgid "Α, Β, Γ, ... (Greek Upper Letter)"
msgstr ""
-#. GQ[7
#: page.src
msgctxt ""
"page.src\n"
@@ -6155,7 +5539,6 @@ msgctxt ""
msgid "α, β, γ, ... (Greek Lower Letter)"
msgstr ""
-#. +;j#
#: page.src
msgctxt ""
"page.src\n"
@@ -6165,7 +5548,6 @@ msgctxt ""
msgid "Table alignment"
msgstr ""
-#. #0G_
#: page.src
msgctxt ""
"page.src\n"
@@ -6175,7 +5557,6 @@ msgctxt ""
msgid "Hori~zontal"
msgstr ""
-#. $ki7
#: page.src
msgctxt ""
"page.src\n"
@@ -6185,7 +5566,6 @@ msgctxt ""
msgid "~Vertical"
msgstr ""
-#. H#|a
#: page.src
msgctxt ""
"page.src\n"
@@ -6195,7 +5575,6 @@ msgctxt ""
msgid "~Fit object to paper format"
msgstr ""
-#. #)#b
#: page.src
msgctxt ""
"page.src\n"
@@ -6205,7 +5584,6 @@ msgctxt ""
msgid "Register-true"
msgstr ""
-#. [5ro
#: page.src
msgctxt ""
"page.src\n"
@@ -6215,7 +5593,6 @@ msgctxt ""
msgid "Reference ~Style"
msgstr ""
-#. j1Jh
#: page.src
msgctxt ""
"page.src\n"
@@ -6225,7 +5602,6 @@ msgctxt ""
msgid "I~nner"
msgstr ""
-#. M]|d
#: page.src
msgctxt ""
"page.src\n"
@@ -6235,7 +5611,6 @@ msgctxt ""
msgid "O~uter"
msgstr ""
-#. 8-Fc
#: page.src
msgctxt ""
"page.src\n"
@@ -6248,7 +5623,6 @@ msgid ""
"Do you still want to apply these settings?"
msgstr ""
-#. 0fkz
#: page.src
msgctxt ""
"page.src\n"
@@ -6258,7 +5632,6 @@ msgctxt ""
msgid "A6"
msgstr ""
-#. X`J2
#: page.src
msgctxt ""
"page.src\n"
@@ -6268,7 +5641,6 @@ msgctxt ""
msgid "A5"
msgstr ""
-#. [3Dd
#: page.src
msgctxt ""
"page.src\n"
@@ -6278,7 +5650,6 @@ msgctxt ""
msgid "A4"
msgstr ""
-#. 3NNO
#: page.src
msgctxt ""
"page.src\n"
@@ -6288,7 +5659,6 @@ msgctxt ""
msgid "A3"
msgstr ""
-#. r;+o
#: page.src
msgctxt ""
"page.src\n"
@@ -6298,7 +5668,6 @@ msgctxt ""
msgid "B6 (ISO)"
msgstr ""
-#. )^.Y
#: page.src
msgctxt ""
"page.src\n"
@@ -6308,7 +5677,6 @@ msgctxt ""
msgid "B5 (ISO)"
msgstr ""
-#. d/2L
#: page.src
msgctxt ""
"page.src\n"
@@ -6318,7 +5686,6 @@ msgctxt ""
msgid "B4 (ISO)"
msgstr ""
-#. |G=H
#: page.src
msgctxt ""
"page.src\n"
@@ -6328,7 +5695,6 @@ msgctxt ""
msgid "Letter"
msgstr ""
-#. \.[f
#: page.src
msgctxt ""
"page.src\n"
@@ -6338,7 +5704,6 @@ msgctxt ""
msgid "Legal"
msgstr ""
-#. \(K)
#: page.src
msgctxt ""
"page.src\n"
@@ -6348,7 +5713,6 @@ msgctxt ""
msgid "Long Bond"
msgstr ""
-#. X{,.
#: page.src
msgctxt ""
"page.src\n"
@@ -6358,7 +5722,6 @@ msgctxt ""
msgid "Tabloid"
msgstr ""
-#. q.!A
#: page.src
msgctxt ""
"page.src\n"
@@ -6368,7 +5731,6 @@ msgctxt ""
msgid "B6 (JIS)"
msgstr ""
-#. $nO2
#: page.src
msgctxt ""
"page.src\n"
@@ -6378,7 +5740,6 @@ msgctxt ""
msgid "B5 (JIS)"
msgstr ""
-#. =4[)
#: page.src
msgctxt ""
"page.src\n"
@@ -6388,7 +5749,6 @@ msgctxt ""
msgid "B4 (JIS)"
msgstr ""
-#. XOb`
#: page.src
msgctxt ""
"page.src\n"
@@ -6398,7 +5758,6 @@ msgctxt ""
msgid "16 Kai"
msgstr ""
-#. py5m
#: page.src
msgctxt ""
"page.src\n"
@@ -6408,7 +5767,6 @@ msgctxt ""
msgid "32 Kai"
msgstr ""
-#. z:bV
#: page.src
msgctxt ""
"page.src\n"
@@ -6418,7 +5776,6 @@ msgctxt ""
msgid "Big 32 Kai"
msgstr ""
-#. l**]
#: page.src
msgctxt ""
"page.src\n"
@@ -6428,7 +5785,6 @@ msgctxt ""
msgid "User"
msgstr ""
-#. .*!q
#: page.src
msgctxt ""
"page.src\n"
@@ -6438,7 +5794,6 @@ msgctxt ""
msgid "DL Envelope"
msgstr ""
-#. Vmv8
#: page.src
msgctxt ""
"page.src\n"
@@ -6448,7 +5803,6 @@ msgctxt ""
msgid "C6 Envelope"
msgstr ""
-#. @*@R
#: page.src
msgctxt ""
"page.src\n"
@@ -6458,7 +5812,6 @@ msgctxt ""
msgid "C6/5 Envelope"
msgstr ""
-#. %vH`
#: page.src
msgctxt ""
"page.src\n"
@@ -6468,7 +5821,6 @@ msgctxt ""
msgid "C5 Envelope"
msgstr ""
-#. ij/h
#: page.src
msgctxt ""
"page.src\n"
@@ -6478,7 +5830,6 @@ msgctxt ""
msgid "C4 Envelope"
msgstr ""
-#. 5aab
#: page.src
msgctxt ""
"page.src\n"
@@ -6488,7 +5839,6 @@ msgctxt ""
msgid "#6 3/4 (Personal) Envelope"
msgstr ""
-#. 1k)*
#: page.src
msgctxt ""
"page.src\n"
@@ -6498,7 +5848,6 @@ msgctxt ""
msgid "#8 (Monarch) Envelope"
msgstr ""
-#. Z}ug
#: page.src
msgctxt ""
"page.src\n"
@@ -6508,7 +5857,6 @@ msgctxt ""
msgid "#9 Envelope"
msgstr ""
-#. $WZ,
#: page.src
msgctxt ""
"page.src\n"
@@ -6518,7 +5866,6 @@ msgctxt ""
msgid "#10 Envelope"
msgstr ""
-#. V==k
#: page.src
msgctxt ""
"page.src\n"
@@ -6528,7 +5875,6 @@ msgctxt ""
msgid "#11 Envelope"
msgstr ""
-#. ?EpA
#: page.src
msgctxt ""
"page.src\n"
@@ -6538,7 +5884,6 @@ msgctxt ""
msgid "#12 Envelope"
msgstr ""
-#. Rb3s
#: page.src
msgctxt ""
"page.src\n"
@@ -6548,7 +5893,6 @@ msgctxt ""
msgid "Japanese Postcard"
msgstr ""
-#. Z}X4
#: page.src
msgctxt ""
"page.src\n"
@@ -6558,7 +5902,6 @@ msgctxt ""
msgid "A6"
msgstr ""
-#. .(D,
#: page.src
msgctxt ""
"page.src\n"
@@ -6568,7 +5911,6 @@ msgctxt ""
msgid "A5"
msgstr ""
-#. SsJl
#: page.src
msgctxt ""
"page.src\n"
@@ -6578,7 +5920,6 @@ msgctxt ""
msgid "A4"
msgstr ""
-#. ]uFl
#: page.src
msgctxt ""
"page.src\n"
@@ -6588,7 +5929,6 @@ msgctxt ""
msgid "A3"
msgstr ""
-#. V$N(
#: page.src
msgctxt ""
"page.src\n"
@@ -6598,7 +5938,6 @@ msgctxt ""
msgid "A2"
msgstr ""
-#. P06I
#: page.src
msgctxt ""
"page.src\n"
@@ -6608,7 +5947,6 @@ msgctxt ""
msgid "A1"
msgstr ""
-#. -k#Y
#: page.src
msgctxt ""
"page.src\n"
@@ -6618,7 +5956,6 @@ msgctxt ""
msgid "A0"
msgstr ""
-#. eT3W
#: page.src
msgctxt ""
"page.src\n"
@@ -6628,7 +5965,6 @@ msgctxt ""
msgid "B6 (ISO)"
msgstr ""
-#. E4#h
#: page.src
msgctxt ""
"page.src\n"
@@ -6638,7 +5974,6 @@ msgctxt ""
msgid "B5 (ISO)"
msgstr ""
-#. BMq@
#: page.src
msgctxt ""
"page.src\n"
@@ -6648,7 +5983,6 @@ msgctxt ""
msgid "B4 (ISO)"
msgstr ""
-#. ;gT~
#: page.src
msgctxt ""
"page.src\n"
@@ -6658,7 +5992,6 @@ msgctxt ""
msgid "Letter"
msgstr ""
-#. `sBE
#: page.src
msgctxt ""
"page.src\n"
@@ -6668,7 +6001,6 @@ msgctxt ""
msgid "Legal"
msgstr ""
-#. -In)
#: page.src
msgctxt ""
"page.src\n"
@@ -6678,7 +6010,6 @@ msgctxt ""
msgid "Long Bond"
msgstr ""
-#. IP*F
#: page.src
msgctxt ""
"page.src\n"
@@ -6688,7 +6019,6 @@ msgctxt ""
msgid "Tabloid"
msgstr ""
-#. 2}2K
#: page.src
msgctxt ""
"page.src\n"
@@ -6698,7 +6028,6 @@ msgctxt ""
msgid "B6 (JIS)"
msgstr ""
-#. 9A5-
#: page.src
msgctxt ""
"page.src\n"
@@ -6708,7 +6037,6 @@ msgctxt ""
msgid "B5 (JIS)"
msgstr ""
-#. tb9*
#: page.src
msgctxt ""
"page.src\n"
@@ -6718,7 +6046,6 @@ msgctxt ""
msgid "B4 (JIS)"
msgstr ""
-#. bZe|
#: page.src
msgctxt ""
"page.src\n"
@@ -6728,7 +6055,6 @@ msgctxt ""
msgid "16 Kai"
msgstr ""
-#. 2-.U
#: page.src
msgctxt ""
"page.src\n"
@@ -6738,7 +6064,6 @@ msgctxt ""
msgid "32 Kai"
msgstr ""
-#. 2RO}
#: page.src
msgctxt ""
"page.src\n"
@@ -6748,7 +6073,6 @@ msgctxt ""
msgid "Big 32 Kai"
msgstr ""
-#. =/Ol
#: page.src
msgctxt ""
"page.src\n"
@@ -6758,7 +6082,6 @@ msgctxt ""
msgid "User"
msgstr ""
-#. RPXm
#: page.src
msgctxt ""
"page.src\n"
@@ -6768,7 +6091,6 @@ msgctxt ""
msgid "DL Envelope"
msgstr ""
-#. 2Y8\
#: page.src
msgctxt ""
"page.src\n"
@@ -6778,7 +6100,6 @@ msgctxt ""
msgid "C6 Envelope"
msgstr ""
-#. 024q
#: page.src
msgctxt ""
"page.src\n"
@@ -6788,7 +6109,6 @@ msgctxt ""
msgid "C6/5 Envelope"
msgstr ""
-#. ?^U$
#: page.src
msgctxt ""
"page.src\n"
@@ -6798,7 +6118,6 @@ msgctxt ""
msgid "C5 Envelope"
msgstr ""
-#. $7,l
#: page.src
msgctxt ""
"page.src\n"
@@ -6808,7 +6127,6 @@ msgctxt ""
msgid "C4 Envelope"
msgstr ""
-#. A0o)
#: page.src
msgctxt ""
"page.src\n"
@@ -6818,7 +6136,6 @@ msgctxt ""
msgid "Dia Slide"
msgstr ""
-#. W++{
#: page.src
msgctxt ""
"page.src\n"
@@ -6828,7 +6145,6 @@ msgctxt ""
msgid "Screen 4:3"
msgstr ""
-#. }77H
#: page.src
msgctxt ""
"page.src\n"
@@ -6838,7 +6154,6 @@ msgctxt ""
msgid "Screen 16:9"
msgstr ""
-#. -A-/
#: page.src
msgctxt ""
"page.src\n"
@@ -6848,7 +6163,6 @@ msgctxt ""
msgid "Screen 16:10"
msgstr ""
-#. ;mpl
#: page.src
msgctxt ""
"page.src\n"
@@ -6858,7 +6172,6 @@ msgctxt ""
msgid "Japanese Postcard"
msgstr ""
-#. v3v3
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6867,7 +6180,6 @@ msgctxt ""
msgid "Unlinked graphic"
msgstr ""
-#. ,V~k
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6877,7 +6189,6 @@ msgctxt ""
msgid "A~s"
msgstr ""
-#. e!QI
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6887,7 +6198,6 @@ msgctxt ""
msgid "Color"
msgstr ""
-#. H[3@
#: backgrnd.src
#, fuzzy
msgctxt ""
@@ -6898,7 +6208,6 @@ msgctxt ""
msgid "Graphic"
msgstr "نقوش"
-#. n7T@
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6908,7 +6217,6 @@ msgctxt ""
msgid "F~or"
msgstr ""
-#. /X$p
#: backgrnd.src
#, fuzzy
msgctxt ""
@@ -6919,7 +6227,6 @@ msgctxt ""
msgid "Cell"
msgstr "خانے"
-#. 7d`s
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6929,7 +6236,6 @@ msgctxt ""
msgid "Row"
msgstr ""
-#. 1yIP
#: backgrnd.src
#, fuzzy
msgctxt ""
@@ -6940,7 +6246,6 @@ msgctxt ""
msgid "Table"
msgstr "جدول"
-#. Jp7R
#: backgrnd.src
#, fuzzy
msgctxt ""
@@ -6951,7 +6256,6 @@ msgctxt ""
msgid "Paragraph"
msgstr "بند"
-#. W_af
#: backgrnd.src
#, fuzzy
msgctxt ""
@@ -6962,7 +6266,6 @@ msgctxt ""
msgid "Character"
msgstr "حروف"
-#. e]|x
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6972,7 +6275,6 @@ msgctxt ""
msgid "Background color"
msgstr ""
-#. a+(q
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6982,7 +6284,6 @@ msgctxt ""
msgid "~Transparency"
msgstr ""
-#. dqI8
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -6992,7 +6293,6 @@ msgctxt ""
msgid "File"
msgstr ""
-#. [-%/
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7002,7 +6302,6 @@ msgctxt ""
msgid "~Browse..."
msgstr ""
-#. s+{F
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7012,7 +6311,6 @@ msgctxt ""
msgid "~Link"
msgstr "~ربط"
-#. 4p/T
#: backgrnd.src
#, fuzzy
msgctxt ""
@@ -7023,7 +6321,6 @@ msgctxt ""
msgid "Type"
msgstr "نوعیت:"
-#. hN!D
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7033,7 +6330,6 @@ msgctxt ""
msgid "~Position"
msgstr ""
-#. vIpk
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7043,7 +6339,6 @@ msgctxt ""
msgid "Ar~ea"
msgstr ""
-#. ,ln_
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7053,7 +6348,6 @@ msgctxt ""
msgid "~Tile"
msgstr ""
-#. qp^.
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7063,7 +6357,6 @@ msgctxt ""
msgid "Transparency"
msgstr ""
-#. J[oD
#: backgrnd.src
#, fuzzy
msgctxt ""
@@ -7074,7 +6367,6 @@ msgctxt ""
msgid "Pre~view"
msgstr "مشاہد~ہ"
-#. m({C
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7084,7 +6376,6 @@ msgctxt ""
msgid "Find graphics"
msgstr ""
-#. d92{
#: backgrnd.src
msgctxt ""
"backgrnd.src\n"
@@ -7093,7 +6384,6 @@ msgctxt ""
msgid "Background"
msgstr ""
-#. n^lK
#: border.src
msgctxt ""
"border.src\n"
@@ -7103,7 +6393,6 @@ msgctxt ""
msgid "Line arrangement"
msgstr ""
-#. ]/%T
#: border.src
msgctxt ""
"border.src\n"
@@ -7113,7 +6402,6 @@ msgctxt ""
msgid "~Default"
msgstr ""
-#. ~#B*
#: border.src
msgctxt ""
"border.src\n"
@@ -7123,7 +6411,6 @@ msgctxt ""
msgid "~User-defined"
msgstr ""
-#. cJ_Y
#: border.src
#, fuzzy
msgctxt ""
@@ -7134,7 +6421,6 @@ msgctxt ""
msgid "Line"
msgstr "~ربط"
-#. 08X/
#: border.src
msgctxt ""
"border.src\n"
@@ -7144,7 +6430,6 @@ msgctxt ""
msgid "St~yle"
msgstr ""
-#. 25#7
#: border.src
msgctxt ""
"border.src\n"
@@ -7154,7 +6439,6 @@ msgctxt ""
msgid "~Width"
msgstr ""
-#. TpdV
#: border.src
msgctxt ""
"border.src\n"
@@ -7164,7 +6448,6 @@ msgctxt ""
msgid "~Color"
msgstr ""
-#. +@J2
#: border.src
msgctxt ""
"border.src\n"
@@ -7174,7 +6457,6 @@ msgctxt ""
msgid "~Left"
msgstr ""
-#. :=*:
#: border.src
msgctxt ""
"border.src\n"
@@ -7184,7 +6466,6 @@ msgctxt ""
msgid "Right"
msgstr ""
-#. !J6X
#: border.src
msgctxt ""
"border.src\n"
@@ -7194,7 +6475,6 @@ msgctxt ""
msgid "~Top"
msgstr ""
-#. Ecpy
#: border.src
msgctxt ""
"border.src\n"
@@ -7204,7 +6484,6 @@ msgctxt ""
msgid "~Bottom"
msgstr ""
-#. _;;X
#: border.src
msgctxt ""
"border.src\n"
@@ -7214,7 +6493,6 @@ msgctxt ""
msgid "Synchronize"
msgstr ""
-#. ($FG
#: border.src
msgctxt ""
"border.src\n"
@@ -7224,7 +6502,6 @@ msgctxt ""
msgid "Spacing to contents"
msgstr ""
-#. b#%R
#: border.src
msgctxt ""
"border.src\n"
@@ -7234,7 +6511,6 @@ msgctxt ""
msgid "~Position"
msgstr ""
-#. m7lu
#: border.src
msgctxt ""
"border.src\n"
@@ -7244,7 +6520,6 @@ msgctxt ""
msgid "Distan~ce"
msgstr ""
-#. Ysn3
#: border.src
msgctxt ""
"border.src\n"
@@ -7254,7 +6529,6 @@ msgctxt ""
msgid "C~olor"
msgstr ""
-#. X3X[
#: border.src
msgctxt ""
"border.src\n"
@@ -7264,7 +6538,6 @@ msgctxt ""
msgid "Shadow style"
msgstr ""
-#. d/!4
#: border.src
msgctxt ""
"border.src\n"
@@ -7274,7 +6547,6 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. 2^:K
#: border.src
msgctxt ""
"border.src\n"
@@ -7284,7 +6556,6 @@ msgctxt ""
msgid "~Merge with next paragraph"
msgstr ""
-#. =\k{
#: border.src
msgctxt ""
"border.src\n"
@@ -7294,7 +6565,6 @@ msgctxt ""
msgid "~Merge adjacent line styles"
msgstr ""
-#. DHQ^
#: border.src
msgctxt ""
"border.src\n"
@@ -7303,7 +6573,6 @@ msgctxt ""
msgid "Borders"
msgstr ""
-#. DhrX
#: border.src
msgctxt ""
"border.src\n"
@@ -7312,7 +6581,6 @@ msgctxt ""
msgid "Set No Borders"
msgstr ""
-#. z[PB
#: border.src
msgctxt ""
"border.src\n"
@@ -7321,7 +6589,6 @@ msgctxt ""
msgid "Set Outer Border Only"
msgstr ""
-#. #bvo
#: border.src
msgctxt ""
"border.src\n"
@@ -7330,7 +6597,6 @@ msgctxt ""
msgid "Set Outer Border and Horizontal Lines"
msgstr ""
-#. d,4j
#: border.src
msgctxt ""
"border.src\n"
@@ -7339,7 +6605,6 @@ msgctxt ""
msgid "Set Outer Border and All Inner Lines"
msgstr ""
-#. |I`P
#: border.src
msgctxt ""
"border.src\n"
@@ -7348,7 +6613,6 @@ msgctxt ""
msgid "Set Outer Border Without Changing Inner Lines"
msgstr ""
-#. q5Ra
#: border.src
msgctxt ""
"border.src\n"
@@ -7357,7 +6621,6 @@ msgctxt ""
msgid "Set Diagonal Lines Only"
msgstr ""
-#. @r`[
#: border.src
msgctxt ""
"border.src\n"
@@ -7366,7 +6629,6 @@ msgctxt ""
msgid "Set All Four Borders"
msgstr ""
-#. J=C/
#: border.src
msgctxt ""
"border.src\n"
@@ -7375,7 +6637,6 @@ msgctxt ""
msgid "Set Left and Right Borders Only"
msgstr ""
-#. 6WwJ
#: border.src
msgctxt ""
"border.src\n"
@@ -7384,7 +6645,6 @@ msgctxt ""
msgid "Set Top and Bottom Borders Only"
msgstr ""
-#. *BB2
#: border.src
msgctxt ""
"border.src\n"
@@ -7393,7 +6653,6 @@ msgctxt ""
msgid "Set Left Border Only"
msgstr ""
-#. [qV2
#: border.src
msgctxt ""
"border.src\n"
@@ -7402,7 +6661,6 @@ msgctxt ""
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#. ~x/;
#: border.src
msgctxt ""
"border.src\n"
@@ -7411,7 +6669,6 @@ msgctxt ""
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr ""
-#. J{ud
#: border.src
msgctxt ""
"border.src\n"
@@ -7420,7 +6677,6 @@ msgctxt ""
msgid "No Shadow"
msgstr ""
-#. PbcA
#: border.src
msgctxt ""
"border.src\n"
@@ -7429,7 +6685,6 @@ msgctxt ""
msgid "Cast Shadow to Bottom Right"
msgstr ""
-#. fiV;
#: border.src
msgctxt ""
"border.src\n"
@@ -7438,7 +6693,6 @@ msgctxt ""
msgid "Cast Shadow to Top Right"
msgstr ""
-#. Q!Ng
#: border.src
msgctxt ""
"border.src\n"
@@ -7447,7 +6701,6 @@ msgctxt ""
msgid "Cast Shadow to Bottom Left"
msgstr ""
-#. _n^j
#: border.src
msgctxt ""
"border.src\n"
@@ -7456,7 +6709,6 @@ msgctxt ""
msgid "Cast Shadow to Top Left"
msgstr ""
-#. n`vD
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7466,7 +6718,6 @@ msgctxt ""
msgid "Position"
msgstr ""
-#. -~ZG
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7476,7 +6727,6 @@ msgctxt ""
msgid "Position ~X"
msgstr ""
-#. R@*.
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7486,7 +6736,6 @@ msgctxt ""
msgid "Position ~Y"
msgstr ""
-#. wfoH
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7496,7 +6745,6 @@ msgctxt ""
msgid "Base point"
msgstr ""
-#. Es_c
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7506,7 +6754,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. :.As
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7516,7 +6763,6 @@ msgctxt ""
msgid "Base point"
msgstr ""
-#. Xt|8
#: transfrm.src
#, fuzzy
msgctxt ""
@@ -7527,7 +6773,6 @@ msgctxt ""
msgid "Size"
msgstr "حجم:"
-#. q^/k
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7537,7 +6782,6 @@ msgctxt ""
msgid "Wi~dth"
msgstr ""
-#. j^`5
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7547,7 +6791,6 @@ msgctxt ""
msgid "H~eight"
msgstr ""
-#. O2k/
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7557,7 +6800,6 @@ msgctxt ""
msgid "Base point"
msgstr ""
-#. |`{p
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7567,7 +6809,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. j{C(
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7577,7 +6818,6 @@ msgctxt ""
msgid "Base point"
msgstr ""
-#. ^MPq
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7587,7 +6827,6 @@ msgctxt ""
msgid "~Keep ratio"
msgstr ""
-#. XQKj
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7597,7 +6836,6 @@ msgctxt ""
msgid "Protect"
msgstr ""
-#. LDZh
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7607,7 +6845,6 @@ msgctxt ""
msgid "Position"
msgstr ""
-#. Qr=j
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7617,7 +6854,6 @@ msgctxt ""
msgid "~Size"
msgstr ""
-#. ,)fg
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7627,7 +6863,6 @@ msgctxt ""
msgid "Adapt"
msgstr ""
-#. 18bt
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7637,7 +6872,6 @@ msgctxt ""
msgid "~Fit width to text"
msgstr ""
-#. _6pH
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7647,7 +6881,6 @@ msgctxt ""
msgid "Fit ~height to text"
msgstr ""
-#. NcZW
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7657,7 +6890,6 @@ msgctxt ""
msgid "Anchor"
msgstr ""
-#. p@Sq
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7667,7 +6899,6 @@ msgctxt ""
msgid "~Anchor"
msgstr ""
-#. gzF1
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7677,7 +6908,6 @@ msgctxt ""
msgid "To paragraph"
msgstr ""
-#. hHJC
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7687,7 +6917,6 @@ msgctxt ""
msgid "As character"
msgstr ""
-#. PSai
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7697,7 +6926,6 @@ msgctxt ""
msgid "To page"
msgstr ""
-#. yIcZ
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7707,7 +6935,6 @@ msgctxt ""
msgid "To frame"
msgstr ""
-#. Ue[1
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7717,7 +6944,6 @@ msgctxt ""
msgid "P~osition"
msgstr ""
-#. !FM]
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7727,7 +6953,6 @@ msgctxt ""
msgid "From top"
msgstr ""
-#. e{\b
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7737,7 +6962,6 @@ msgctxt ""
msgid "Above"
msgstr ""
-#. b/n(
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7747,7 +6971,6 @@ msgctxt ""
msgid "Centered"
msgstr ""
-#. ED^R
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7757,7 +6980,6 @@ msgctxt ""
msgid "Below"
msgstr ""
-#. (l^+
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7767,7 +6989,6 @@ msgctxt ""
msgid "Top of character"
msgstr ""
-#. arW=
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7777,7 +6998,6 @@ msgctxt ""
msgid "Center of character"
msgstr ""
-#. +T?`
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7787,7 +7007,6 @@ msgctxt ""
msgid "Bottom of character"
msgstr ""
-#. ^e}}
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7797,7 +7016,6 @@ msgctxt ""
msgid "Top of line"
msgstr ""
-#. $8m,
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7807,7 +7025,6 @@ msgctxt ""
msgid "Center of line"
msgstr ""
-#. s2aP
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7817,7 +7034,6 @@ msgctxt ""
msgid "Bottom of line"
msgstr ""
-#. nS.J
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7826,7 +7042,6 @@ msgctxt ""
msgid "Position and Size"
msgstr ""
-#. )IQS
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7836,7 +7051,6 @@ msgctxt ""
msgid "Pivot point"
msgstr ""
-#. +77j
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7846,7 +7060,6 @@ msgctxt ""
msgid "Position ~X"
msgstr ""
-#. )mec
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7856,7 +7069,6 @@ msgctxt ""
msgid "Position ~Y"
msgstr ""
-#. u`\N
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7866,7 +7078,6 @@ msgctxt ""
msgid "Default settings"
msgstr ""
-#. YF-T
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7876,7 +7087,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. UME]
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7886,7 +7096,6 @@ msgctxt ""
msgid "Rotation point"
msgstr ""
-#. j#M[
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7896,7 +7105,6 @@ msgctxt ""
msgid "Rotation angle"
msgstr ""
-#. jrEA
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7906,7 +7114,6 @@ msgctxt ""
msgid "~Angle"
msgstr ""
-#. O^KI
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7916,7 +7123,6 @@ msgctxt ""
msgid "Default settings"
msgstr ""
-#. /j7F
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7926,7 +7132,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. )zS$
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7936,7 +7141,6 @@ msgctxt ""
msgid "Rotation Angle"
msgstr ""
-#. 3k$u
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7945,7 +7149,6 @@ msgctxt ""
msgid "Angle"
msgstr ""
-#. XXwz
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7955,7 +7158,6 @@ msgctxt ""
msgid "Corner radius"
msgstr ""
-#. 3dk$
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7965,7 +7167,6 @@ msgctxt ""
msgid "~Radius"
msgstr ""
-#. #1R@
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7975,7 +7176,6 @@ msgctxt ""
msgid "Slant"
msgstr ""
-#. raS]
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7985,7 +7185,6 @@ msgctxt ""
msgid "~Angle"
msgstr ""
-#. ZwNz
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -7995,7 +7194,6 @@ msgctxt ""
msgid " degrees"
msgstr ""
-#. (tq)
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8004,7 +7202,6 @@ msgctxt ""
msgid "Slant & Corner Radius"
msgstr ""
-#. @R?d
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8013,7 +7210,6 @@ msgctxt ""
msgid "Position and Size"
msgstr ""
-#. m+f:
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8023,7 +7219,6 @@ msgctxt ""
msgid "Rotation"
msgstr ""
-#. 9TS\
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8033,7 +7228,6 @@ msgctxt ""
msgid "Slant & Corner Radius"
msgstr ""
-#. (C)n
#: transfrm.src
msgctxt ""
"transfrm.src\n"
@@ -8042,7 +7236,6 @@ msgctxt ""
msgid "Position and Size"
msgstr ""
-#. F4#l
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8052,7 +7245,6 @@ msgctxt ""
msgid "Crop"
msgstr ""
-#. 18dG
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8062,7 +7254,6 @@ msgctxt ""
msgid "~Left"
msgstr ""
-#. mvqk
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8072,7 +7263,6 @@ msgctxt ""
msgid "~Right"
msgstr ""
-#. oa]v
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8082,7 +7272,6 @@ msgctxt ""
msgid "~Top"
msgstr ""
-#. CA$2
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8092,7 +7281,6 @@ msgctxt ""
msgid "~Bottom"
msgstr ""
-#. Xl2o
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8102,7 +7290,6 @@ msgctxt ""
msgid "Keep image si~ze"
msgstr ""
-#. L?Pb
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8112,7 +7299,6 @@ msgctxt ""
msgid "Keep ~scale"
msgstr ""
-#. FQ3(
#: grfpage.src
#, fuzzy
msgctxt ""
@@ -8123,7 +7309,6 @@ msgctxt ""
msgid "Scale"
msgstr "تغیر شدہ"
-#. T,g[
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8133,7 +7318,6 @@ msgctxt ""
msgid "~Width"
msgstr ""
-#. [Rjf
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8143,7 +7327,6 @@ msgctxt ""
msgid "H~eight"
msgstr ""
-#. ruSg
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8153,7 +7336,6 @@ msgctxt ""
msgid "Image size"
msgstr ""
-#. A-[r
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8163,7 +7345,6 @@ msgctxt ""
msgid "~Width"
msgstr ""
-#. s72f
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8173,7 +7354,6 @@ msgctxt ""
msgid "H~eight"
msgstr ""
-#. UX0u
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8184,7 +7364,6 @@ msgid "~Original Size"
msgstr ""
#. PPI is pixel per inch, %1 is a number
-#. *HN@
#: grfpage.src
msgctxt ""
"grfpage.src\n"
@@ -8193,7 +7372,6 @@ msgctxt ""
msgid "(%1 PPI)"
msgstr ""
-#. L~e:
#: measure.src
#, fuzzy
msgctxt ""
@@ -8204,7 +7382,6 @@ msgctxt ""
msgid "Line"
msgstr "~ربط"
-#. T/=p
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8214,7 +7391,6 @@ msgctxt ""
msgid "Line ~distance"
msgstr ""
-#. HuP%
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8224,7 +7400,6 @@ msgctxt ""
msgid "Guide ~overhang"
msgstr ""
-#. 4@kv
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8234,7 +7409,6 @@ msgctxt ""
msgid "~Guide distance"
msgstr ""
-#. ^Y\3
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8244,7 +7418,6 @@ msgctxt ""
msgid "~Left guide"
msgstr ""
-#. Z/d!
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8254,7 +7427,6 @@ msgctxt ""
msgid "~Right guide"
msgstr ""
-#. J%hw
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8264,7 +7436,6 @@ msgctxt ""
msgid "Measure ~below object"
msgstr ""
-#. \?3I
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8274,7 +7445,6 @@ msgctxt ""
msgid "Decimal places"
msgstr ""
-#. pO,3
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8284,7 +7454,6 @@ msgctxt ""
msgid "Legend"
msgstr ""
-#. Mhm!
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8294,7 +7463,6 @@ msgctxt ""
msgid "~Text position"
msgstr ""
-#. 9M%e
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8304,7 +7472,6 @@ msgctxt ""
msgid "~AutoVertical"
msgstr ""
-#. U,m6
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8314,7 +7481,6 @@ msgctxt ""
msgid "A~utoHorizontal"
msgstr ""
-#. sASP
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8324,7 +7490,6 @@ msgctxt ""
msgid "~Parallel to line"
msgstr ""
-#. $Di1
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8334,7 +7499,6 @@ msgctxt ""
msgid "Show ~meas. units"
msgstr ""
-#. 6DJ8
#: measure.src
#, fuzzy
msgctxt ""
@@ -8345,7 +7509,6 @@ msgctxt ""
msgid "Automatic"
msgstr "خودکار"
-#. HT!4
#: measure.src
msgctxt ""
"measure.src\n"
@@ -8354,7 +7517,6 @@ msgctxt ""
msgid "Dimensioning"
msgstr ""
-#. ;b7$
#: swpossizetabpage.src
#, fuzzy
msgctxt ""
@@ -8365,7 +7527,6 @@ msgctxt ""
msgid "Size"
msgstr "حجم:"
-#. Bf8G
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8375,7 +7536,6 @@ msgctxt ""
msgid "~Width"
msgstr ""
-#. FLTc
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8385,7 +7545,6 @@ msgctxt ""
msgid "H~eight"
msgstr ""
-#. c??#
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8395,7 +7554,6 @@ msgctxt ""
msgid "~Keep ratio"
msgstr ""
-#. lJ{^
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8405,7 +7563,6 @@ msgctxt ""
msgid "Anchor"
msgstr ""
-#. $s[M
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8415,7 +7572,6 @@ msgctxt ""
msgid "To ~page"
msgstr ""
-#. Ogur
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8425,7 +7581,6 @@ msgctxt ""
msgid "To paragrap~h"
msgstr ""
-#. (6,q
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8435,7 +7590,6 @@ msgctxt ""
msgid "To cha~racter"
msgstr ""
-#. Z#V^
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8445,7 +7599,6 @@ msgctxt ""
msgid "~As character"
msgstr ""
-#. kPsZ
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8455,7 +7608,6 @@ msgctxt ""
msgid "To ~frame"
msgstr ""
-#. E!fZ
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8465,7 +7617,6 @@ msgctxt ""
msgid "Protect"
msgstr ""
-#. .4T7
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8475,7 +7626,6 @@ msgctxt ""
msgid "Position"
msgstr ""
-#. N6}0
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8485,7 +7635,6 @@ msgctxt ""
msgid "~Size"
msgstr ""
-#. )8~0
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8495,7 +7644,6 @@ msgctxt ""
msgid "Position"
msgstr ""
-#. F/Xo
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8505,7 +7653,6 @@ msgctxt ""
msgid "Hori~zontal"
msgstr ""
-#. f.o[
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8515,7 +7662,6 @@ msgctxt ""
msgid "b~y"
msgstr ""
-#. H-[L
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8525,7 +7671,6 @@ msgctxt ""
msgid "~to"
msgstr ""
-#. YCRC
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8535,7 +7680,6 @@ msgctxt ""
msgid "~Mirror on even pages"
msgstr ""
-#. NI9r
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8545,7 +7689,6 @@ msgctxt ""
msgid "~Vertical"
msgstr ""
-#. FA+q
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8555,7 +7698,6 @@ msgctxt ""
msgid "by"
msgstr ""
-#. Q60h
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8565,7 +7707,6 @@ msgctxt ""
msgid "t~o"
msgstr ""
-#. nTd)
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8575,7 +7716,6 @@ msgctxt ""
msgid "Follow text flow"
msgstr ""
-#. j~Hw
#: swpossizetabpage.src
msgctxt ""
"swpossizetabpage.src\n"
@@ -8584,7 +7724,6 @@ msgctxt ""
msgid "Position and Size"
msgstr ""
-#. \~Gz
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8594,7 +7733,6 @@ msgctxt ""
msgid "Horizontal"
msgstr ""
-#. ,KGs
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8604,7 +7742,6 @@ msgctxt ""
msgid "~None"
msgstr ""
-#. 0]qv
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8614,7 +7751,6 @@ msgctxt ""
msgid "~Left"
msgstr ""
-#. n_6%
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8624,7 +7760,6 @@ msgctxt ""
msgid "~Center"
msgstr ""
-#. sfIs
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8634,7 +7769,6 @@ msgctxt ""
msgid "~Spacing"
msgstr ""
-#. EB2X
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8644,7 +7778,6 @@ msgctxt ""
msgid "~Right"
msgstr ""
-#. _@wT
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8654,7 +7787,6 @@ msgctxt ""
msgid "Vertical"
msgstr ""
-#. jGF%
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8664,7 +7796,6 @@ msgctxt ""
msgid "N~one"
msgstr ""
-#. 1/;R
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8674,7 +7805,6 @@ msgctxt ""
msgid "~Top"
msgstr ""
-#. 4_W6
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8684,7 +7814,6 @@ msgctxt ""
msgid "C~enter"
msgstr ""
-#. aMx.
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8694,7 +7823,6 @@ msgctxt ""
msgid "S~pacing"
msgstr ""
-#. U-A9
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8704,7 +7832,6 @@ msgctxt ""
msgid "~Bottom"
msgstr ""
-#. 2Lu}
#: dstribut.src
msgctxt ""
"dstribut.src\n"
@@ -8713,7 +7840,6 @@ msgctxt ""
msgid "Distribution"
msgstr ""
-#. 8@$\
#: align.src
msgctxt ""
"align.src\n"
@@ -8723,7 +7849,6 @@ msgctxt ""
msgid "Text alignment"
msgstr ""
-#. C+eC
#: align.src
msgctxt ""
"align.src\n"
@@ -8733,7 +7858,6 @@ msgctxt ""
msgid "Hori~zontal"
msgstr ""
-#. XZp4
#: align.src
msgctxt ""
"align.src\n"
@@ -8743,7 +7867,6 @@ msgctxt ""
msgid "Default"
msgstr ""
-#. c(al
#: align.src
msgctxt ""
"align.src\n"
@@ -8753,7 +7876,6 @@ msgctxt ""
msgid "Left"
msgstr ""
-#. SqI!
#: align.src
msgctxt ""
"align.src\n"
@@ -8763,7 +7885,6 @@ msgctxt ""
msgid "Center"
msgstr ""
-#. 0J*Q
#: align.src
msgctxt ""
"align.src\n"
@@ -8773,7 +7894,6 @@ msgctxt ""
msgid "Right"
msgstr ""
-#. v04T
#: align.src
msgctxt ""
"align.src\n"
@@ -8783,7 +7903,6 @@ msgctxt ""
msgid "Justified"
msgstr ""
-#. ^gMh
#: align.src
msgctxt ""
"align.src\n"
@@ -8793,7 +7912,6 @@ msgctxt ""
msgid "Filled"
msgstr ""
-#. oh4s
#: align.src
msgctxt ""
"align.src\n"
@@ -8803,7 +7921,6 @@ msgctxt ""
msgid "Distributed"
msgstr ""
-#. zgG^
#: align.src
msgctxt ""
"align.src\n"
@@ -8813,7 +7930,6 @@ msgctxt ""
msgid "I~ndent"
msgstr ""
-#. eOO.
#: align.src
msgctxt ""
"align.src\n"
@@ -8823,7 +7939,6 @@ msgctxt ""
msgid "~Vertical"
msgstr ""
-#. Xag:
#: align.src
msgctxt ""
"align.src\n"
@@ -8833,7 +7948,6 @@ msgctxt ""
msgid "Default"
msgstr ""
-#. ;#Aq
#: align.src
msgctxt ""
"align.src\n"
@@ -8843,7 +7957,6 @@ msgctxt ""
msgid "Top"
msgstr ""
-#. i+n%
#: align.src
msgctxt ""
"align.src\n"
@@ -8853,7 +7966,6 @@ msgctxt ""
msgid "Middle"
msgstr ""
-#. !]9-
#: align.src
msgctxt ""
"align.src\n"
@@ -8863,7 +7975,6 @@ msgctxt ""
msgid "Bottom"
msgstr ""
-#. -01E
#: align.src
msgctxt ""
"align.src\n"
@@ -8873,7 +7984,6 @@ msgctxt ""
msgid "Justified"
msgstr ""
-#. mTAR
#: align.src
msgctxt ""
"align.src\n"
@@ -8883,7 +7993,6 @@ msgctxt ""
msgid "Distributed"
msgstr ""
-#. VUn^
#: align.src
msgctxt ""
"align.src\n"
@@ -8893,7 +8002,6 @@ msgctxt ""
msgid "Text orientation"
msgstr ""
-#. {9pT
#: align.src
msgctxt ""
"align.src\n"
@@ -8903,7 +8011,6 @@ msgctxt ""
msgid "Ve~rtically stacked"
msgstr ""
-#. Mj;\
#: align.src
msgctxt ""
"align.src\n"
@@ -8913,7 +8020,6 @@ msgctxt ""
msgid "De~grees"
msgstr ""
-#. -bmx
#: align.src
msgctxt ""
"align.src\n"
@@ -8923,7 +8029,6 @@ msgctxt ""
msgid "Re~ference edge"
msgstr ""
-#. G-fc
#: align.src
msgctxt ""
"align.src\n"
@@ -8933,7 +8038,6 @@ msgctxt ""
msgid "Asian layout ~mode"
msgstr ""
-#. Q$PC
#: align.src
msgctxt ""
"align.src\n"
@@ -8943,7 +8047,6 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. eiS^
#: align.src
msgctxt ""
"align.src\n"
@@ -8953,7 +8056,6 @@ msgctxt ""
msgid "~Wrap text automatically"
msgstr ""
-#. ~58)
#: align.src
msgctxt ""
"align.src\n"
@@ -8963,7 +8065,6 @@ msgctxt ""
msgid "Hyphenation ~active"
msgstr ""
-#. rJ[X
#: align.src
msgctxt ""
"align.src\n"
@@ -8973,7 +8074,6 @@ msgctxt ""
msgid "~Shrink to fit cell size"
msgstr ""
-#. jKGh
#: align.src
msgctxt ""
"align.src\n"
@@ -8983,7 +8083,6 @@ msgctxt ""
msgid "Te~xt direction"
msgstr ""
-#. $RvI
#: align.src
msgctxt ""
"align.src\n"
@@ -8993,7 +8092,6 @@ msgctxt ""
msgid "Text Extension From Lower Cell Border"
msgstr ""
-#. Bsa~
#: align.src
msgctxt ""
"align.src\n"
@@ -9003,7 +8101,6 @@ msgctxt ""
msgid "Text Extension From Upper Cell Border"
msgstr ""
-#. ?pg9
#: align.src
msgctxt ""
"align.src\n"
@@ -9013,7 +8110,6 @@ msgctxt ""
msgid "Text Extension Inside Cell"
msgstr ""
-#. G63q
#: align.src
msgctxt ""
"align.src\n"
@@ -9022,7 +8118,6 @@ msgctxt ""
msgid "Alignment"
msgstr ""
-#. 1XZu
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9031,7 +8126,6 @@ msgctxt ""
msgid "Left-to-right"
msgstr ""
-#. @.,U
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9040,7 +8134,6 @@ msgctxt ""
msgid "Right-to-left"
msgstr ""
-#. B3w1
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9049,7 +8142,6 @@ msgctxt ""
msgid "Use superordinate object settings"
msgstr ""
-#. y_lb
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9058,7 +8150,6 @@ msgctxt ""
msgid "Left-to-right (horizontal)"
msgstr ""
-#. f6OC
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9067,7 +8158,6 @@ msgctxt ""
msgid "Right-to-left (horizontal)"
msgstr ""
-#. 0Bn*
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9076,7 +8166,6 @@ msgctxt ""
msgid "Right-to-left (vertical)"
msgstr ""
-#. s3_Q
#: frmdirlbox.src
msgctxt ""
"frmdirlbox.src\n"
@@ -9085,7 +8174,6 @@ msgctxt ""
msgid "Left-to-right (vertical)"
msgstr ""
-#. 0!5}
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9095,7 +8183,6 @@ msgctxt ""
msgid "Text"
msgstr ""
-#. s:zK
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9105,7 +8192,6 @@ msgctxt ""
msgid "Fit wi~dth to text"
msgstr ""
-#. ;m5h
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9115,7 +8201,6 @@ msgctxt ""
msgid "Fit h~eight to text"
msgstr ""
-#. D.[+
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9125,7 +8210,6 @@ msgctxt ""
msgid "~Fit to frame"
msgstr ""
-#. 1{_R
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9135,7 +8219,6 @@ msgctxt ""
msgid "~Adjust to contour"
msgstr ""
-#. yw5g
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9145,7 +8228,6 @@ msgctxt ""
msgid "~Word wrap text in shape"
msgstr ""
-#. J1[T
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9155,7 +8237,6 @@ msgctxt ""
msgid "~Resize shape to fit text"
msgstr ""
-#. GKRS
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9165,7 +8246,6 @@ msgctxt ""
msgid "Spacing to borders"
msgstr ""
-#. /Vk7
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9175,7 +8255,6 @@ msgctxt ""
msgid "~Left"
msgstr ""
-#. XPNI
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9185,7 +8264,6 @@ msgctxt ""
msgid "~Right"
msgstr ""
-#. pQk#
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9195,7 +8273,6 @@ msgctxt ""
msgid "~Top"
msgstr ""
-#. Bj$F
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9205,7 +8282,6 @@ msgctxt ""
msgid "~Bottom"
msgstr ""
-#. 1*/l
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9215,7 +8291,6 @@ msgctxt ""
msgid "Text anchor"
msgstr ""
-#. j;7?
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9225,7 +8300,6 @@ msgctxt ""
msgid "Full ~width"
msgstr ""
-#. %oGK
#: textattr.src
msgctxt ""
"textattr.src\n"
@@ -9234,7 +8308,6 @@ msgctxt ""
msgid "Text"
msgstr ""
-#. h^Y0
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9244,7 +8317,6 @@ msgctxt ""
msgid "~Type"
msgstr ""
-#. ^*_l
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9254,7 +8326,6 @@ msgctxt ""
msgid "Line skew"
msgstr ""
-#. p^,B
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9264,7 +8335,6 @@ msgctxt ""
msgid "Line ~1"
msgstr ""
-#. HmZG
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9274,7 +8344,6 @@ msgctxt ""
msgid "Line ~2"
msgstr ""
-#. _ImA
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9284,7 +8353,6 @@ msgctxt ""
msgid "Line ~3"
msgstr ""
-#. +?hF
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9294,7 +8362,6 @@ msgctxt ""
msgid "Line spacing"
msgstr ""
-#. Qk%$
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9304,7 +8371,6 @@ msgctxt ""
msgid "~Begin horizontal"
msgstr ""
-#. 9;sg
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9314,7 +8380,6 @@ msgctxt ""
msgid "End ~horizontal"
msgstr ""
-#. H?@d
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9324,7 +8389,6 @@ msgctxt ""
msgid "Begin ~vertical"
msgstr ""
-#. B8~L
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9334,7 +8398,6 @@ msgctxt ""
msgid "~End vertical"
msgstr ""
-#. rg\6
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9344,7 +8407,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. G./+
#: connect.src
#, fuzzy
msgctxt ""
@@ -9355,7 +8417,6 @@ msgctxt ""
msgid "Preview"
msgstr "مشاہد~ہ"
-#. EiaR
#: connect.src
msgctxt ""
"connect.src\n"
@@ -9364,7 +8425,6 @@ msgctxt ""
msgid "Connector"
msgstr ""
-#. Ib+e
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9374,7 +8434,6 @@ msgctxt ""
msgid "~Spacing"
msgstr ""
-#. K`^?
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9384,7 +8443,6 @@ msgctxt ""
msgid "~Angle"
msgstr ""
-#. ~^@J
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9394,7 +8452,6 @@ msgctxt ""
msgid "Free"
msgstr ""
-#. ;$)X
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9404,7 +8461,6 @@ msgctxt ""
msgid "30 Degrees"
msgstr ""
-#. +mfh
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9414,7 +8470,6 @@ msgctxt ""
msgid "45 Degrees"
msgstr ""
-#. gaT3
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9424,7 +8479,6 @@ msgctxt ""
msgid "60 Degrees"
msgstr ""
-#. eHvk
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9434,7 +8488,6 @@ msgctxt ""
msgid "90 Degrees"
msgstr ""
-#. W.Q7
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9444,7 +8497,6 @@ msgctxt ""
msgid "~Extension"
msgstr ""
-#. Jc5Q
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9454,7 +8506,6 @@ msgctxt ""
msgid "Optimal"
msgstr ""
-#. BM[a
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9464,7 +8515,6 @@ msgctxt ""
msgid "From top"
msgstr ""
-#. L,ff
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9474,7 +8524,6 @@ msgctxt ""
msgid "From left"
msgstr ""
-#. ;rcV
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9484,7 +8533,6 @@ msgctxt ""
msgid "Horizontal"
msgstr ""
-#. ^NyI
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9494,7 +8542,6 @@ msgctxt ""
msgid "Vertical"
msgstr ""
-#. 3ZTk
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9504,7 +8551,6 @@ msgctxt ""
msgid "~By"
msgstr ""
-#. y_yp
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9514,7 +8560,6 @@ msgctxt ""
msgid "~Position"
msgstr ""
-#. Hz4o
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9524,7 +8569,6 @@ msgctxt ""
msgid "~Length"
msgstr ""
-#. `[\;
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9534,7 +8578,6 @@ msgctxt ""
msgid "~Optimal"
msgstr ""
-#. =%x?
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9544,7 +8587,6 @@ msgctxt ""
msgid "Straight Line"
msgstr ""
-#. kW,`
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9554,7 +8596,6 @@ msgctxt ""
msgid "Angled Line"
msgstr ""
-#. %V_/
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9564,7 +8605,6 @@ msgctxt ""
msgid "Angled Connector Line"
msgstr ""
-#. V,^$
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9574,7 +8614,6 @@ msgctxt ""
msgid "Double-angled line"
msgstr ""
-#. Bc\h
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9584,7 +8623,6 @@ msgctxt ""
msgid "Top;Middle;Bottom"
msgstr ""
-#. xt/V
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9594,7 +8632,6 @@ msgctxt ""
msgid "Left;Middle;Right"
msgstr ""
-#. #;mU
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9603,7 +8640,6 @@ msgctxt ""
msgid "Callouts"
msgstr ""
-#. Y|g\
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9612,7 +8648,6 @@ msgctxt ""
msgid "Position and Size"
msgstr ""
-#. VrQo
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9622,7 +8657,6 @@ msgctxt ""
msgid "Callout"
msgstr ""
-#. Wia\
#: labdlg.src
msgctxt ""
"labdlg.src\n"
@@ -9631,7 +8665,6 @@ msgctxt ""
msgid "Callouts"
msgstr ""
-#. ;}xQ
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9641,7 +8674,6 @@ msgctxt ""
msgid "Position"
msgstr ""
-#. h~0G
#: tabstpge.src
#, fuzzy
msgctxt ""
@@ -9652,7 +8684,6 @@ msgctxt ""
msgid "Type"
msgstr "نوعیت:"
-#. ^+n6
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9662,7 +8693,6 @@ msgctxt ""
msgid "~Left"
msgstr ""
-#. 1h{,
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9672,7 +8702,6 @@ msgctxt ""
msgid "Righ~t"
msgstr ""
-#. J.@7
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9682,7 +8711,6 @@ msgctxt ""
msgid "C~entered"
msgstr ""
-#. fA1r
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9692,7 +8720,6 @@ msgctxt ""
msgid "Deci~mal"
msgstr ""
-#. MFNj
#: tabstpge.src
#, fuzzy
msgctxt ""
@@ -9703,7 +8730,6 @@ msgctxt ""
msgid "~Character"
msgstr "حروف"
-#. 0KSL
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9713,7 +8739,6 @@ msgctxt ""
msgid "Fill character"
msgstr ""
-#. Hn3e
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9723,7 +8748,6 @@ msgctxt ""
msgid "N~one"
msgstr ""
-#. LLSZ
#: tabstpge.src
#, fuzzy
msgctxt ""
@@ -9734,7 +8758,6 @@ msgctxt ""
msgid "Character"
msgstr "حروف"
-#. E]XT
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9744,7 +8767,6 @@ msgctxt ""
msgid "~New"
msgstr ""
-#. v5s\
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9754,7 +8776,6 @@ msgctxt ""
msgid "Delete ~All"
msgstr ""
-#. ls9o
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9764,7 +8785,6 @@ msgctxt ""
msgid "~Delete"
msgstr ""
-#. ~Q-s
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9774,7 +8794,6 @@ msgctxt ""
msgid "~Left/Top"
msgstr ""
-#. c~t_
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
@@ -9784,7 +8803,6 @@ msgctxt ""
msgid "Righ~t/Bottom"
msgstr ""
-#. w-%8
#: tabstpge.src
#, fuzzy
msgctxt ""
@@ -9795,7 +8813,6 @@ msgctxt ""
msgid "Character"
msgstr "حروف"
-#. 94_f
#: tabstpge.src
msgctxt ""
"tabstpge.src\n"
diff --git a/source/ur/cui/uiconfig/ui.po b/source/ur/cui/uiconfig/ui.po
index 6b7d0801471..b38db6cd652 100644
--- a/source/ur/cui/uiconfig/ui.po
+++ b/source/ur/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-11-17 19:02+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. fzF8
#: insertoleobject.ui
msgctxt ""
"insertoleobject.ui\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Insert OLE Object"
msgstr ""
-#. ^M4J
#: insertoleobject.ui
msgctxt ""
"insertoleobject.ui\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "Create new"
msgstr ""
-#. bOEw
#: insertoleobject.ui
msgctxt ""
"insertoleobject.ui\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "Create from file"
msgstr ""
-#. \KD3
#: insertoleobject.ui
msgctxt ""
"insertoleobject.ui\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "Object type"
msgstr ""
-#. phV%
#: insertoleobject.ui
msgctxt ""
"insertoleobject.ui\n"
@@ -64,7 +59,6 @@ msgctxt ""
msgid "Search ..."
msgstr ""
-#. jAF*
#: insertoleobject.ui
msgctxt ""
"insertoleobject.ui\n"
@@ -74,7 +68,6 @@ msgctxt ""
msgid "Link to file"
msgstr ""
-#. w:,;
#: insertoleobject.ui
msgctxt ""
"insertoleobject.ui\n"
@@ -84,7 +77,6 @@ msgctxt ""
msgid "File"
msgstr ""
-#. HX-2
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -94,7 +86,6 @@ msgctxt ""
msgid "Superscript"
msgstr ""
-#. 9rL|
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -104,7 +95,6 @@ msgctxt ""
msgid "Normal"
msgstr ""
-#. 3IJk
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -114,7 +104,6 @@ msgctxt ""
msgid "Subscript"
msgstr ""
-#. pp6o
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -124,7 +113,6 @@ msgctxt ""
msgid "Raise/lower by"
msgstr ""
-#. 45,!
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -134,7 +122,6 @@ msgctxt ""
msgid "Relative font size"
msgstr ""
-#. 5Vhf
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -145,7 +132,6 @@ msgctxt ""
msgid "Automatic"
msgstr "خودکار"
-#. H~EV
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -155,7 +141,6 @@ msgctxt ""
msgid "Position"
msgstr ""
-#. _c{-
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -165,7 +150,6 @@ msgctxt ""
msgid "0 degrees"
msgstr ""
-#. bp*2
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -175,7 +159,6 @@ msgctxt ""
msgid "90 degrees"
msgstr ""
-#. =%Q*
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -185,7 +168,6 @@ msgctxt ""
msgid "270 degrees"
msgstr ""
-#. CKMx
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -195,7 +177,6 @@ msgctxt ""
msgid "Fit to line"
msgstr ""
-#. W.Y0
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -205,7 +186,6 @@ msgctxt ""
msgid "Scale width"
msgstr ""
-#. 20.0
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -215,7 +195,6 @@ msgctxt ""
msgid "Rotation / Scaling"
msgstr ""
-#. j5E0
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -225,7 +204,6 @@ msgctxt ""
msgid "Rotation"
msgstr ""
-#. 1|Si
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -235,7 +213,6 @@ msgctxt ""
msgid "by"
msgstr ""
-#. @lw^
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -245,7 +222,6 @@ msgctxt ""
msgid "Pair kerning"
msgstr ""
-#. 8hG)
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -255,7 +231,6 @@ msgctxt ""
msgid "Spacing"
msgstr ""
-#. mRP9
#: positionpage.ui
#, fuzzy
msgctxt ""
@@ -266,7 +241,6 @@ msgctxt ""
msgid "Preview"
msgstr "مشاہد~ہ"
-#. x2;W
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -276,7 +250,6 @@ msgctxt ""
msgid "Default"
msgstr ""
-#. YKj+
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -286,7 +259,6 @@ msgctxt ""
msgid "Expanded"
msgstr ""
-#. GJ83
#: positionpage.ui
msgctxt ""
"positionpage.ui\n"
@@ -296,7 +268,6 @@ msgctxt ""
msgid "Condensed"
msgstr ""
-#. T{W/
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -306,7 +277,6 @@ msgctxt ""
msgid "Write in double lines"
msgstr ""
-#. Fdn%
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -316,7 +286,6 @@ msgctxt ""
msgid "Double-lined"
msgstr ""
-#. IO4p
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -326,7 +295,6 @@ msgctxt ""
msgid "Initial character"
msgstr ""
-#. |fLC
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -336,7 +304,6 @@ msgctxt ""
msgid "Final character"
msgstr ""
-#. QAfs
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -346,7 +313,6 @@ msgctxt ""
msgid "Enclosing character"
msgstr ""
-#. wYR*
#: twolinespage.ui
#, fuzzy
msgctxt ""
@@ -357,7 +323,6 @@ msgctxt ""
msgid "Preview"
msgstr "مشاہد~ہ"
-#. ;Y8`
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -367,7 +332,6 @@ msgctxt ""
msgid "(None)"
msgstr ""
-#. =eLM
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -377,7 +341,6 @@ msgctxt ""
msgid "("
msgstr ""
-#. T4x(
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -387,7 +350,6 @@ msgctxt ""
msgid "["
msgstr ""
-#. ZMJ^
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -397,7 +359,6 @@ msgctxt ""
msgid "<"
msgstr ""
-#. .)fW
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -407,7 +368,6 @@ msgctxt ""
msgid "{"
msgstr ""
-#. 8{1%
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -417,7 +377,6 @@ msgctxt ""
msgid "Other Characters..."
msgstr ""
-#. IRms
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -427,7 +386,6 @@ msgctxt ""
msgid "(None)"
msgstr ""
-#. chCs
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -437,7 +395,6 @@ msgctxt ""
msgid ")"
msgstr ""
-#. EPeh
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -447,7 +404,6 @@ msgctxt ""
msgid "]"
msgstr ""
-#. Fy=F
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -457,7 +413,6 @@ msgctxt ""
msgid ">"
msgstr ""
-#. i(WD
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -467,7 +422,6 @@ msgctxt ""
msgid "}"
msgstr ""
-#. @{Yt
#: twolinespage.ui
msgctxt ""
"twolinespage.ui\n"
@@ -477,7 +431,6 @@ msgctxt ""
msgid "Other Characters..."
msgstr ""
-#. 0LTV
#: scriptorganizer.ui
msgctxt ""
"scriptorganizer.ui\n"
@@ -487,7 +440,6 @@ msgctxt ""
msgid "%MACROLANG Macros"
msgstr ""
-#. 3NqI
#: scriptorganizer.ui
msgctxt ""
"scriptorganizer.ui\n"
@@ -497,7 +449,6 @@ msgctxt ""
msgid "Macros"
msgstr ""
-#. Lo_D
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -507,7 +458,6 @@ msgctxt ""
msgid "Zoom & View Layout"
msgstr ""
-#. Q!;e
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -517,7 +467,6 @@ msgctxt ""
msgid "Optimal"
msgstr ""
-#. 9q=w
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -527,7 +476,6 @@ msgctxt ""
msgid "Fit width and height"
msgstr ""
-#. ]~JW
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -537,7 +485,6 @@ msgctxt ""
msgid "Fit width"
msgstr ""
-#. _H?+
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -547,7 +494,6 @@ msgctxt ""
msgid "100%"
msgstr "100%"
-#. Xg#s
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -557,7 +503,6 @@ msgctxt ""
msgid "Variable"
msgstr ""
-#. s\dE
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -567,7 +512,6 @@ msgctxt ""
msgid "Zoom factor"
msgstr ""
-#. fMR4
#: zoomdialog.ui
#, fuzzy
msgctxt ""
@@ -578,7 +522,6 @@ msgctxt ""
msgid "Automatic"
msgstr "خودکار"
-#. k$e(
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -588,7 +531,6 @@ msgctxt ""
msgid "Single page"
msgstr ""
-#. )rgt
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -598,7 +540,6 @@ msgctxt ""
msgid "Columns"
msgstr ""
-#. @~{`
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -608,7 +549,6 @@ msgctxt ""
msgid "Book mode"
msgstr ""
-#. l30c
#: zoomdialog.ui
msgctxt ""
"zoomdialog.ui\n"
@@ -618,7 +558,6 @@ msgctxt ""
msgid "View layout"
msgstr ""
-#. ]e:q
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -628,7 +567,6 @@ msgctxt ""
msgid "Macro Selector"
msgstr ""
-#. hM|8
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -638,7 +576,6 @@ msgctxt ""
msgid "Select the library that contains the macro you want. Then select the macro under 'Macro name'."
msgstr ""
-#. ^VMl
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -648,7 +585,6 @@ msgctxt ""
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 ""
-#. l-*E
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -658,7 +594,6 @@ msgctxt ""
msgid "Library"
msgstr ""
-#. Xd;?
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -668,7 +603,6 @@ msgctxt ""
msgid "Category"
msgstr ""
-#. (.AE
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -678,7 +612,6 @@ msgctxt ""
msgid "Macro name"
msgstr ""
-#. hft9
#: macroselectordialog.ui
#, fuzzy
msgctxt ""
@@ -689,7 +622,6 @@ msgctxt ""
msgid "Commands"
msgstr "آراء"
-#. P\TL
#: macroselectordialog.ui
msgctxt ""
"macroselectordialog.ui\n"
@@ -699,7 +631,6 @@ msgctxt ""
msgid "Description"
msgstr "وضاحت"
-#. ONGJ
#: thesaurus.ui
msgctxt ""
"thesaurus.ui\n"
@@ -709,7 +640,6 @@ msgctxt ""
msgid "Thesaurus"
msgstr ""
-#. ijR5
#: thesaurus.ui
msgctxt ""
"thesaurus.ui\n"
@@ -719,7 +649,6 @@ msgctxt ""
msgid "Replace"
msgstr ""
-#. 8$!3
#: thesaurus.ui
msgctxt ""
"thesaurus.ui\n"
@@ -729,7 +658,6 @@ msgctxt ""
msgid "Current word"
msgstr ""
-#. #AXW
#: thesaurus.ui
msgctxt ""
"thesaurus.ui\n"
@@ -739,7 +667,6 @@ msgctxt ""
msgid "Alternatives"
msgstr ""
-#. Q+)g
#: thesaurus.ui
msgctxt ""
"thesaurus.ui\n"
@@ -749,7 +676,6 @@ msgctxt ""
msgid "Replace with"
msgstr ""
-#. q#i6
#: thesaurus.ui
msgctxt ""
"thesaurus.ui\n"
@@ -759,7 +685,6 @@ msgctxt ""
msgid "label"
msgstr ""
-#. `7#G
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -769,7 +694,6 @@ msgctxt ""
msgid "Font color"
msgstr ""
-#. 5W_D
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -779,7 +703,6 @@ msgctxt ""
msgid "Effects"
msgstr ""
-#. iE1D
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -789,7 +712,6 @@ msgctxt ""
msgid "Relief"
msgstr ""
-#. dKiS
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -799,7 +721,6 @@ msgctxt ""
msgid "Overlining"
msgstr ""
-#. nB`/
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -809,7 +730,6 @@ msgctxt ""
msgid "Strikethrough"
msgstr ""
-#. VjM$
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -819,7 +739,6 @@ msgctxt ""
msgid "Underlining"
msgstr ""
-#. 6O?$
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -829,7 +748,6 @@ msgctxt ""
msgid "Overline color"
msgstr ""
-#. aUBk
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -839,7 +757,6 @@ msgctxt ""
msgid "Underline Color"
msgstr ""
-#. ;H;`
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -849,7 +766,6 @@ msgctxt ""
msgid "Outline"
msgstr ""
-#. dhPb
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -859,7 +775,6 @@ msgctxt ""
msgid "Shadow"
msgstr ""
-#. X29q
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -869,7 +784,6 @@ msgctxt ""
msgid "Blinking"
msgstr ""
-#. Kwf+
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -879,7 +793,6 @@ msgctxt ""
msgid "Hidden"
msgstr ""
-#. ~\DY
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -889,7 +802,6 @@ msgctxt ""
msgid "Individual words"
msgstr ""
-#. Go^Z
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -899,7 +811,6 @@ msgctxt ""
msgid "Position"
msgstr ""
-#. v:D]
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -909,7 +820,6 @@ msgctxt ""
msgid "Emphasis mark"
msgstr ""
-#. Mo4/
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -919,7 +829,6 @@ msgctxt ""
msgid "Options"
msgstr ""
-#. 0@E?
#: effectspage.ui
#, fuzzy
msgctxt ""
@@ -930,7 +839,6 @@ msgctxt ""
msgid "Preview"
msgstr "مشاہد~ہ"
-#. +fQ_
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -940,7 +848,6 @@ msgctxt ""
msgid "(Without)"
msgstr ""
-#. )1Tc
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -950,7 +857,6 @@ msgctxt ""
msgid "Capitals"
msgstr ""
-#. bPMC
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -960,7 +866,6 @@ msgctxt ""
msgid "Lowercase"
msgstr ""
-#. #KbY
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -970,7 +875,6 @@ msgctxt ""
msgid "Title"
msgstr "عنوان"
-#. 45Au
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -980,7 +884,6 @@ msgctxt ""
msgid "Small capitals"
msgstr ""
-#. Fk%]
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -990,7 +893,6 @@ msgctxt ""
msgid "(Without)"
msgstr ""
-#. k/N[
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1000,7 +902,6 @@ msgctxt ""
msgid "Embossed"
msgstr ""
-#. U}V)
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1010,7 +911,6 @@ msgctxt ""
msgid "Engraved"
msgstr ""
-#. c.(\
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1020,7 +920,6 @@ msgctxt ""
msgid "(Without)"
msgstr ""
-#. M+l@
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1030,7 +929,6 @@ msgctxt ""
msgid "Dot"
msgstr ""
-#. +Q/}
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1040,7 +938,6 @@ msgctxt ""
msgid "Circle"
msgstr ""
-#. {3?|
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1050,7 +947,6 @@ msgctxt ""
msgid "Disc"
msgstr ""
-#. wbE-
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1060,7 +956,6 @@ msgctxt ""
msgid "Accent"
msgstr ""
-#. l)a}
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1070,7 +965,6 @@ msgctxt ""
msgid "Above text"
msgstr ""
-#. G%TQ
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1080,7 +974,6 @@ msgctxt ""
msgid "Below text"
msgstr ""
-#. @8.a
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1090,7 +983,6 @@ msgctxt ""
msgid "(Without)"
msgstr ""
-#. hbpz
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1100,7 +992,6 @@ msgctxt ""
msgid "Single"
msgstr ""
-#. VDcX
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1110,7 +1001,6 @@ msgctxt ""
msgid "Double"
msgstr ""
-#. T/+;
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1120,7 +1010,6 @@ msgctxt ""
msgid "Bold"
msgstr ""
-#. x8;w
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1130,7 +1019,6 @@ msgctxt ""
msgid "With /"
msgstr ""
-#. ?.Os
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1140,7 +1028,6 @@ msgctxt ""
msgid "With X"
msgstr ""
-#. z5Hc
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1150,7 +1037,6 @@ msgctxt ""
msgid "(Without)"
msgstr ""
-#. 5Wt,
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1160,7 +1046,6 @@ msgctxt ""
msgid "Single"
msgstr ""
-#. N1$+
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1170,7 +1055,6 @@ msgctxt ""
msgid "Double"
msgstr ""
-#. ,XR1
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1180,7 +1064,6 @@ msgctxt ""
msgid "Bold"
msgstr ""
-#. LM@`
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1190,7 +1073,6 @@ msgctxt ""
msgid "Dotted"
msgstr ""
-#. o.wf
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1200,7 +1082,6 @@ msgctxt ""
msgid "Dotted (Bold)"
msgstr ""
-#. pR1M
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1210,7 +1091,6 @@ msgctxt ""
msgid "Dash"
msgstr ""
-#. i:6S
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1220,7 +1100,6 @@ msgctxt ""
msgid "Dash (Bold)"
msgstr ""
-#. ]l,[
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1230,7 +1109,6 @@ msgctxt ""
msgid "Long Dash"
msgstr ""
-#. bGo_
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1240,7 +1118,6 @@ msgctxt ""
msgid "Long Dash (Bold)"
msgstr ""
-#. 4uf2
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1250,7 +1127,6 @@ msgctxt ""
msgid "Dot Dash"
msgstr ""
-#. JN,A
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1260,7 +1136,6 @@ msgctxt ""
msgid "Dot Dash (Bold)"
msgstr ""
-#. [$g.
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1270,7 +1145,6 @@ msgctxt ""
msgid "Dot Dot Dash"
msgstr ""
-#. cccV
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1280,7 +1154,6 @@ msgctxt ""
msgid "Dot Dot Dash (Bold)"
msgstr ""
-#. FPu3
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1290,7 +1163,6 @@ msgctxt ""
msgid "Wave"
msgstr ""
-#. h8:*
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1300,7 +1172,6 @@ msgctxt ""
msgid "Wave (Bold)"
msgstr ""
-#. ME7o
#: effectspage.ui
msgctxt ""
"effectspage.ui\n"
@@ -1310,7 +1181,6 @@ msgctxt ""
msgid "Double Wave"
msgstr ""
-#. @.{F
#: insertrowcolumn.ui
msgctxt ""
"insertrowcolumn.ui\n"
@@ -1320,7 +1190,6 @@ msgctxt ""
msgid "Insert Row"
msgstr ""
-#. se3Q
#: insertrowcolumn.ui
msgctxt ""
"insertrowcolumn.ui\n"
@@ -1330,7 +1199,6 @@ msgctxt ""
msgid "_Number"
msgstr ""
-#. I_7r
#: insertrowcolumn.ui
msgctxt ""
"insertrowcolumn.ui\n"
@@ -1340,7 +1208,6 @@ msgctxt ""
msgid "Insert"
msgstr ""
-#. +H}G
#: insertrowcolumn.ui
msgctxt ""
"insertrowcolumn.ui\n"
@@ -1350,7 +1217,6 @@ msgctxt ""
msgid "_Before"
msgstr ""
-#. maCG
#: insertrowcolumn.ui
msgctxt ""
"insertrowcolumn.ui\n"
@@ -1360,7 +1226,6 @@ msgctxt ""
msgid "A_fter"
msgstr ""
-#. Z97Q
#: insertrowcolumn.ui
msgctxt ""
"insertrowcolumn.ui\n"
@@ -1370,7 +1235,6 @@ msgctxt ""
msgid "Position"
msgstr ""
-#. K5U8
#: hyphenate.ui
msgctxt ""
"hyphenate.ui\n"
@@ -1380,7 +1244,6 @@ msgctxt ""
msgid "Hyphenation"
msgstr ""
-#. byra
#: hyphenate.ui
msgctxt ""
"hyphenate.ui\n"
@@ -1390,7 +1253,6 @@ msgctxt ""
msgid "Hyphenate All"
msgstr ""
-#. QJ{Y
#: hyphenate.ui
#, fuzzy
msgctxt ""
@@ -1401,7 +1263,6 @@ msgctxt ""
msgid "Word"
msgstr "الفاظ"
-#. PnrN
#: hyphenate.ui
msgctxt ""
"hyphenate.ui\n"
@@ -1411,7 +1272,6 @@ msgctxt ""
msgid "Hyphenate"
msgstr ""
-#. :p?D
#: hyphenate.ui
msgctxt ""
"hyphenate.ui\n"
@@ -1421,7 +1281,6 @@ msgctxt ""
msgid "Skip"
msgstr ""
-#. zGJ.
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1431,7 +1290,6 @@ msgctxt ""
msgid "Family "
msgstr ""
-#. @^8,
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1442,7 +1300,6 @@ msgctxt ""
msgid "Style"
msgstr "انداز:"
-#. cjw{
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1453,7 +1310,6 @@ msgctxt ""
msgid "Size"
msgstr "حجم:"
-#. fz$6
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1463,7 +1319,6 @@ msgctxt ""
msgid "Language"
msgstr ""
-#. _6aN
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1473,7 +1328,6 @@ msgctxt ""
msgid "Font"
msgstr ""
-#. bkLe
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1483,7 +1337,6 @@ msgctxt ""
msgid "Family "
msgstr ""
-#. `Hcq
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1494,7 +1347,6 @@ msgctxt ""
msgid "Style"
msgstr "انداز:"
-#. tDAb
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1505,7 +1357,6 @@ msgctxt ""
msgid "Size"
msgstr "حجم:"
-#. cQ#i
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1515,7 +1366,6 @@ msgctxt ""
msgid "Language"
msgstr ""
-#. eI/w
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1525,7 +1375,6 @@ msgctxt ""
msgid "Western text font"
msgstr ""
-#. f?%c
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1535,7 +1384,6 @@ msgctxt ""
msgid "Family "
msgstr ""
-#. ![e0
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1546,7 +1394,6 @@ msgctxt ""
msgid "Style"
msgstr "انداز:"
-#. [96A
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1557,7 +1404,6 @@ msgctxt ""
msgid "Size"
msgstr "حجم:"
-#. `AqW
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1567,7 +1413,6 @@ msgctxt ""
msgid "Language"
msgstr ""
-#. A%/9
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1577,7 +1422,6 @@ msgctxt ""
msgid "Asian text font"
msgstr ""
-#. nP!Z
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1587,7 +1431,6 @@ msgctxt ""
msgid "Family "
msgstr ""
-#. 9[0`
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1598,7 +1441,6 @@ msgctxt ""
msgid "Style"
msgstr "انداز:"
-#. efyW
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1609,7 +1451,6 @@ msgctxt ""
msgid "Size"
msgstr "حجم:"
-#. q[V0
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1619,7 +1460,6 @@ msgctxt ""
msgid "Language"
msgstr ""
-#. DoEn
#: charnamepage.ui
msgctxt ""
"charnamepage.ui\n"
@@ -1629,7 +1469,6 @@ msgctxt ""
msgid "CTL font"
msgstr ""
-#. MZZM
#: charnamepage.ui
#, fuzzy
msgctxt ""
@@ -1640,7 +1479,6 @@ msgctxt ""
msgid "Preview"
msgstr "مشاہد~ہ"
-#. M2ds
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1650,7 +1488,6 @@ msgctxt ""
msgid "Floating Frame Properties"
msgstr ""
-#. x_rI
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1661,7 +1498,6 @@ msgctxt ""
msgid "Name"
msgstr "~نام"
-#. 9cbs
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1672,7 +1508,6 @@ msgctxt ""
msgid "Contents"
msgstr "آراء"
-#. 1,k{
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1682,7 +1517,6 @@ msgctxt ""
msgid "Browse..."
msgstr ""
-#. Fdl9
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1693,7 +1527,6 @@ msgctxt ""
msgid "On"
msgstr "آن "
-#. aMs|
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1704,7 +1537,6 @@ msgctxt ""
msgid "Off"
msgstr "آف"
-#. P,tS
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1715,7 +1547,6 @@ msgctxt ""
msgid "Automatic"
msgstr "خودکار"
-#. Va^(
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1725,7 +1556,6 @@ msgctxt ""
msgid "Scroll bar"
msgstr ""
-#. Zd7=
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1736,7 +1566,6 @@ msgctxt ""
msgid "On"
msgstr "آن "
-#. 6;Lm
#: insertfloatingframe.ui
#, fuzzy
msgctxt ""
@@ -1747,7 +1576,6 @@ msgctxt ""
msgid "Off"
msgstr "آف"
-#. TiIq
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1757,7 +1585,6 @@ msgctxt ""
msgid "Border"
msgstr ""
-#. Neq]
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1767,7 +1594,6 @@ msgctxt ""
msgid "Width"
msgstr ""
-#. QVdm
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1777,7 +1603,6 @@ msgctxt ""
msgid "Height"
msgstr ""
-#. ^+2e
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1787,7 +1612,6 @@ msgctxt ""
msgid "Default"
msgstr ""
-#. r7lA
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1797,7 +1621,6 @@ msgctxt ""
msgid "Default"
msgstr ""
-#. eJ[8
#: insertfloatingframe.ui
msgctxt ""
"insertfloatingframe.ui\n"
@@ -1807,7 +1630,6 @@ msgctxt ""
msgid "Spacing to contents"
msgstr ""
-#. 3;XK
#: insertplugin.ui
msgctxt ""
"insertplugin.ui\n"
@@ -1817,7 +1639,6 @@ msgctxt ""
msgid "Insert Plug-in"
msgstr ""
-#. ]O7?
#: insertplugin.ui
msgctxt ""
"insertplugin.ui\n"
@@ -1827,7 +1648,6 @@ msgctxt ""
msgid "Browse..."
msgstr ""
-#. !+?B
#: insertplugin.ui
msgctxt ""
"insertplugin.ui\n"
@@ -1837,7 +1657,6 @@ msgctxt ""
msgid "File/URL"
msgstr ""
-#. ^)sT
#: insertplugin.ui
msgctxt ""
"insertplugin.ui\n"
@@ -1847,7 +1666,6 @@ msgctxt ""
msgid "Options"
msgstr ""
-#. e^,=
#: specialcharacters.ui
msgctxt ""
"specialcharacters.ui\n"
@@ -1857,7 +1675,6 @@ msgctxt ""
msgid "Special Characters"
msgstr ""
-#. (EUz
#: specialcharacters.ui
msgctxt ""
"specialcharacters.ui\n"
@@ -1867,7 +1684,6 @@ msgctxt ""
msgid "Font"
msgstr ""
-#. UkPh
#: specialcharacters.ui
msgctxt ""
"specialcharacters.ui\n"
@@ -1877,7 +1693,6 @@ msgctxt ""
msgid "Subset"
msgstr ""
-#. ?@d/
#: specialcharacters.ui
msgctxt ""
"specialcharacters.ui\n"
@@ -1887,7 +1702,6 @@ msgctxt ""
msgid "U+0020(32)"
msgstr ""
-#. b4V[
#: specialcharacters.ui
#, fuzzy
msgctxt ""
diff --git a/source/ur/dbaccess/source/core/resource.po b/source/ur/dbaccess/source/core/resource.po
index 98e68bdd2cf..12317de0cfb 100644
--- a/source/ur/dbaccess/source/core/resource.po
+++ b/source/ur/dbaccess/source/core/resource.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. /lSI
#: strings.src
msgctxt ""
"strings.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Tried to open the table $name$."
msgstr ""
-#. tr!y
#: strings.src
msgctxt ""
"strings.src\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "No connection could be established."
msgstr ""
-#. E/=,
#: strings.src
msgctxt ""
"strings.src\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "The table $name$ already exists. It is not visible because it has been filtered out."
msgstr ""
-#. p,*w
#: strings.src
msgctxt ""
"strings.src\n"
@@ -50,7 +46,6 @@ msgctxt ""
msgid "You have no write access to the configuration data the object is based on."
msgstr ""
-#. Jr@6
#: strings.src
msgctxt ""
"strings.src\n"
@@ -59,7 +54,6 @@ msgctxt ""
msgid "The connection to the external data source could not be established. An unknown error occurred. The driver is probably defective."
msgstr ""
-#. f,gU
#: strings.src
msgctxt ""
"strings.src\n"
@@ -68,7 +62,6 @@ msgctxt ""
msgid "The connection to the external data source could not be established. No SDBC driver was found for the given URL."
msgstr ""
-#. %rB^
#: strings.src
msgctxt ""
"strings.src\n"
@@ -77,7 +70,6 @@ msgctxt ""
msgid "The connection to the external data source could not be established. The SDBC driver manager could not be loaded."
msgstr ""
-#. C0.?
#: strings.src
msgctxt ""
"strings.src\n"
@@ -86,7 +78,6 @@ msgctxt ""
msgid "Form"
msgstr ""
-#. 8u\$
#: strings.src
msgctxt ""
"strings.src\n"
@@ -95,7 +86,6 @@ msgctxt ""
msgid "Report"
msgstr ""
-#. ILO.
#: strings.src
msgctxt ""
"strings.src\n"
@@ -104,7 +94,6 @@ msgctxt ""
msgid "The data source was not saved. Please use the interface XStorable to save the data source."
msgstr ""
-#. B3.M
#: strings.src
msgctxt ""
"strings.src\n"
@@ -115,7 +104,6 @@ msgid ""
"Only queries are allowed."
msgstr ""
-#. gkPZ
#: strings.src
msgctxt ""
"strings.src\n"
@@ -124,7 +112,6 @@ msgctxt ""
msgid "No values were modified."
msgstr ""
-#. 10Eg
#: strings.src
msgctxt ""
"strings.src\n"
@@ -133,7 +120,6 @@ msgctxt ""
msgid "Values could not be inserted. The XRowUpdate interface is not supported by ResultSet."
msgstr ""
-#. =V{\
#: strings.src
msgctxt ""
"strings.src\n"
@@ -142,7 +128,6 @@ msgctxt ""
msgid "Values could not be inserted. The XResultSetUpdate interface is not supported by ResultSet."
msgstr ""
-#. J+0E
#: strings.src
msgctxt ""
"strings.src\n"
@@ -151,7 +136,6 @@ msgctxt ""
msgid "Values could not be modified, due to a missing condition statement."
msgstr ""
-#. dJMS
#: strings.src
msgctxt ""
"strings.src\n"
@@ -160,7 +144,6 @@ msgctxt ""
msgid "The adding of columns is not supported."
msgstr ""
-#. `dr(
#: strings.src
msgctxt ""
"strings.src\n"
@@ -169,7 +152,6 @@ msgctxt ""
msgid "The dropping of columns is not supported."
msgstr ""
-#. !\c+
#: strings.src
msgctxt ""
"strings.src\n"
@@ -178,7 +160,6 @@ msgctxt ""
msgid "The WHERE condition could not be created for the primary key."
msgstr ""
-#. DmYo
#: strings.src
msgctxt ""
"strings.src\n"
@@ -187,7 +168,6 @@ msgctxt ""
msgid "The column does not support the property '%value'."
msgstr ""
-#. hROM
#: strings.src
msgctxt ""
"strings.src\n"
@@ -196,7 +176,6 @@ msgctxt ""
msgid "The column is not searchable!"
msgstr ""
-#. T^=x
#: strings.src
msgctxt ""
"strings.src\n"
@@ -205,7 +184,6 @@ msgctxt ""
msgid "The value of the columns is not of the type Sequence<sal_Int8>."
msgstr ""
-#. dmJ^
#: strings.src
msgctxt ""
"strings.src\n"
@@ -214,7 +192,6 @@ msgctxt ""
msgid "The column is not valid."
msgstr ""
-#. GKQn
#: strings.src
msgctxt ""
"strings.src\n"
@@ -223,7 +200,6 @@ msgctxt ""
msgid "The column '%name' must be visible as a column."
msgstr ""
-#. ChFg
#: strings.src
msgctxt ""
"strings.src\n"
@@ -232,7 +208,6 @@ msgctxt ""
msgid "The interface XQueriesSupplier is not available."
msgstr ""
-#. `Vl,
#: strings.src
msgctxt ""
"strings.src\n"
@@ -241,7 +216,6 @@ msgctxt ""
msgid "The driver does not support this function."
msgstr ""
-#. b9mq
#: strings.src
msgctxt ""
"strings.src\n"
@@ -250,7 +224,6 @@ msgctxt ""
msgid "An 'absolute(0)' call is not allowed."
msgstr ""
-#. #7.J
#: strings.src
msgctxt ""
"strings.src\n"
@@ -259,7 +232,6 @@ msgctxt ""
msgid "Relative positioning is not allowed in this state."
msgstr ""
-#. J~{Z
#: strings.src
msgctxt ""
"strings.src\n"
@@ -268,7 +240,6 @@ msgctxt ""
msgid "A row cannot be refreshed when the ResultSet is positioned after the last row."
msgstr ""
-#. b1[?
#: strings.src
msgctxt ""
"strings.src\n"
@@ -277,7 +248,6 @@ msgctxt ""
msgid "A new row cannot be inserted when the ResultSet is not first moved to the insert row."
msgstr ""
-#. w:c%
#: strings.src
msgctxt ""
"strings.src\n"
@@ -286,7 +256,6 @@ msgctxt ""
msgid "A row cannot be modified in this state"
msgstr ""
-#. 2.*I
#: strings.src
msgctxt ""
"strings.src\n"
@@ -295,7 +264,6 @@ msgctxt ""
msgid "A row cannot be deleted in this state."
msgstr ""
-#. E(eo
#: strings.src
msgctxt ""
"strings.src\n"
@@ -304,7 +272,6 @@ msgctxt ""
msgid "The driver does not support table renaming."
msgstr ""
-#. s7Q2
#: strings.src
msgctxt ""
"strings.src\n"
@@ -313,7 +280,6 @@ msgctxt ""
msgid "The driver does not support the modification of column descriptions."
msgstr ""
-#. #kM]
#: strings.src
msgctxt ""
"strings.src\n"
@@ -322,7 +288,6 @@ msgctxt ""
msgid "The driver does not support the modification of column descriptions by changing the name."
msgstr ""
-#. UDA3
#: strings.src
msgctxt ""
"strings.src\n"
@@ -331,7 +296,6 @@ msgctxt ""
msgid "The driver does not support the modification of column descriptions by changing the index."
msgstr ""
-#. dSi`
#: strings.src
msgctxt ""
"strings.src\n"
@@ -340,7 +304,6 @@ msgctxt ""
msgid "The file \"$file$\" does not exist."
msgstr ""
-#. fMB5
#: strings.src
msgctxt ""
"strings.src\n"
@@ -349,7 +312,6 @@ msgctxt ""
msgid "There exists no table named \"$table$\"."
msgstr ""
-#. x6hr
#: strings.src
msgctxt ""
"strings.src\n"
@@ -358,7 +320,6 @@ msgctxt ""
msgid "There exists no query named \"$table$\"."
msgstr ""
-#. 6*vj
#: strings.src
msgctxt ""
"strings.src\n"
@@ -367,7 +328,6 @@ msgctxt ""
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 ""
-#. +2_)
#: strings.src
msgctxt ""
"strings.src\n"
@@ -379,7 +339,6 @@ msgid ""
"$command$"
msgstr ""
-#. sLLi
#: strings.src
msgctxt ""
"strings.src\n"
@@ -388,7 +347,6 @@ msgctxt ""
msgid "The SQL command does not describe a result set."
msgstr ""
-#. 1um:
#: strings.src
msgctxt ""
"strings.src\n"
@@ -397,7 +355,6 @@ msgctxt ""
msgid "The name must not be empty."
msgstr ""
-#. aW[i
#: strings.src
msgctxt ""
"strings.src\n"
@@ -406,7 +363,6 @@ msgctxt ""
msgid "The container cannot contain NULL objects."
msgstr ""
-#. aG.\
#: strings.src
msgctxt ""
"strings.src\n"
@@ -415,7 +371,6 @@ msgctxt ""
msgid "There already is an object with the given name."
msgstr ""
-#. WVfc
#: strings.src
msgctxt ""
"strings.src\n"
@@ -424,7 +379,6 @@ msgctxt ""
msgid "This object cannot be part of this container."
msgstr ""
-#. $n`c
#: strings.src
msgctxt ""
"strings.src\n"
@@ -433,7 +387,6 @@ msgctxt ""
msgid "The object already is, with a different name, part of the container."
msgstr ""
-#. L^Ws
#: strings.src
msgctxt ""
"strings.src\n"
@@ -442,7 +395,6 @@ msgctxt ""
msgid "Unable to find the document '$name$'."
msgstr ""
-#. UTT6
#: strings.src
msgctxt ""
"strings.src\n"
@@ -453,7 +405,6 @@ msgid ""
"$message$"
msgstr ""
-#. WcZo
#: strings.src
msgctxt ""
"strings.src\n"
@@ -464,7 +415,6 @@ msgid ""
"$error$"
msgstr ""
-#. c/c)
#: strings.src
msgctxt ""
"strings.src\n"
@@ -473,7 +423,6 @@ msgctxt ""
msgid "There exists no folder named \"$folder$\"."
msgstr ""
-#. p6+_
#: strings.src
msgctxt ""
"strings.src\n"
@@ -482,7 +431,6 @@ msgctxt ""
msgid "Cannot delete the before-first or after-last row."
msgstr ""
-#. 3S;+
#: strings.src
msgctxt ""
"strings.src\n"
@@ -491,7 +439,6 @@ msgctxt ""
msgid "Cannot delete the insert-row."
msgstr ""
-#. ncD}
#: strings.src
msgctxt ""
"strings.src\n"
@@ -500,7 +447,6 @@ msgctxt ""
msgid "Result set is read only."
msgstr ""
-#. {d*:
#: strings.src
msgctxt ""
"strings.src\n"
@@ -509,7 +455,6 @@ msgctxt ""
msgid "DELETE privilege not available."
msgstr ""
-#. AaXP
#: strings.src
msgctxt ""
"strings.src\n"
@@ -518,7 +463,6 @@ msgctxt ""
msgid "Current row is already deleted."
msgstr ""
-#. T}{9
#: strings.src
msgctxt ""
"strings.src\n"
@@ -527,7 +471,6 @@ msgctxt ""
msgid "Current row could not be updated."
msgstr ""
-#. p--J
#: strings.src
msgctxt ""
"strings.src\n"
@@ -536,7 +479,6 @@ msgctxt ""
msgid "INSERT privilege not available."
msgstr ""
-#. IbfB
#: strings.src
msgctxt ""
"strings.src\n"
@@ -545,7 +487,6 @@ msgctxt ""
msgid "Internal error: no statement object provided by the database driver."
msgstr ""
-#. YpbE
#: strings.src
msgctxt ""
"strings.src\n"
@@ -554,7 +495,6 @@ msgctxt ""
msgid "Expression1"
msgstr ""
-#. ~6oS
#: strings.src
msgctxt ""
"strings.src\n"
@@ -563,7 +503,6 @@ msgctxt ""
msgid "No SQL command was provided."
msgstr ""
-#. ,*fj
#: strings.src
msgctxt ""
"strings.src\n"
@@ -572,7 +511,6 @@ msgctxt ""
msgid "Invalid column index."
msgstr ""
-#. */,\
#: strings.src
msgctxt ""
"strings.src\n"
@@ -581,7 +519,6 @@ msgctxt ""
msgid "Invalid cursor state."
msgstr ""
-#. xfeZ
#: strings.src
msgctxt ""
"strings.src\n"
@@ -590,7 +527,6 @@ msgctxt ""
msgid "The cursor points to before the first or after the last row."
msgstr ""
-#. /|WO
#: strings.src
msgctxt ""
"strings.src\n"
@@ -599,7 +535,6 @@ msgctxt ""
msgid "The rows before the first and after the last row don't have a bookmark."
msgstr ""
-#. nl.%
#: strings.src
msgctxt ""
"strings.src\n"
@@ -608,7 +543,6 @@ msgctxt ""
msgid "The current row is deleted, and thus doesn't have a bookmark."
msgstr ""
-#. st[S
#: strings.src
msgctxt ""
"strings.src\n"
@@ -617,7 +551,6 @@ msgctxt ""
msgid "Embedding of database documents is not supported."
msgstr ""
-#. D257
#: strings.src
msgctxt ""
"strings.src\n"
@@ -626,7 +559,6 @@ msgctxt ""
msgid "A connection for the following URL was requested \"$name$\"."
msgstr ""
-#. UZxP
#: strings.src
msgctxt ""
"strings.src\n"
diff --git a/source/ur/dbaccess/source/ext/macromigration.po b/source/ur/dbaccess/source/ext/macromigration.po
index 52e2b8f65dd..e06657472d3 100644
--- a/source/ur/dbaccess/source/ext/macromigration.po
+++ b/source/ur/dbaccess/source/ext/macromigration.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. /*XT
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Prepare"
msgstr ""
-#. ;GCY
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "Backup Document"
msgstr ""
-#. wO:K
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "Migrate"
msgstr ""
-#. x3s]
#: macromigration.src
#, fuzzy
msgctxt ""
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Summary"
msgstr "خلاصہ"
-#. O8E~
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -64,7 +59,6 @@ msgctxt ""
msgid "Database Document Macro Migration"
msgstr ""
-#. URJi
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -74,7 +68,6 @@ msgctxt ""
msgid "Welcome to the Database Macro Migration Wizard"
msgstr ""
-#. rNob
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -91,7 +84,6 @@ msgid ""
"Before the migration can start, all forms, reports, queries and tables belonging to the document must be closed. Press 'Next' to do so."
msgstr ""
-#. [*kI
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -101,7 +93,6 @@ msgctxt ""
msgid "Not all objects could be closed. Please close them manually, and re-start the wizard."
msgstr ""
-#. ys;s
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -111,7 +102,6 @@ msgctxt ""
msgid "Backup your Document"
msgstr ""
-#. l.o/
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -121,7 +111,6 @@ msgctxt ""
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 ""
-#. /T7e
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -131,7 +120,6 @@ msgctxt ""
msgid "Save To:"
msgstr ""
-#. k[Sg
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -141,7 +129,6 @@ msgctxt ""
msgid "Browse ..."
msgstr ""
-#. sT2J
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -151,7 +138,6 @@ msgctxt ""
msgid "Press 'Next' to save a copy of your document, and to begin the migration."
msgstr ""
-#. BCGi
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -161,7 +147,6 @@ msgctxt ""
msgid "Migration Progress"
msgstr ""
-#. g[FI
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -171,7 +156,6 @@ msgctxt ""
msgid "The database document contains $forms$ form(s) and $reports$ report(s), which are currently being processed:"
msgstr ""
-#. Tp]j
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -181,7 +165,6 @@ msgctxt ""
msgid "Current object:"
msgstr ""
-#. P5HM
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -191,7 +174,6 @@ msgctxt ""
msgid "Current progress:"
msgstr ""
-#. zf(u
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -201,7 +183,6 @@ msgctxt ""
msgid "Overall progress:"
msgstr ""
-#. =+\*
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -211,7 +192,6 @@ msgctxt ""
msgid "document $current$ of $overall$"
msgstr ""
-#. OWE0
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -221,7 +201,6 @@ msgctxt ""
msgid "All forms and reports have been successfully processed. Press 'Next' to show a detailed summary."
msgstr ""
-#. IGos
#: macromigration.src
#, fuzzy
msgctxt ""
@@ -232,7 +211,6 @@ msgctxt ""
msgid "Summary"
msgstr "خلاصہ"
-#. f%B9
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -242,7 +220,6 @@ msgctxt ""
msgid "The migration was successful. Below is a log of the actions which have been taken to your document."
msgstr ""
-#. UOYO
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -253,7 +230,6 @@ msgid "The migration was not successful. Examine the migration log below for det
msgstr ""
#. This refers to a form document inside a database document.
-#. ,!c1
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -263,7 +239,6 @@ msgid "Form '$name$'"
msgstr ""
#. This refers to a report document inside a database document.
-#. _dZ#
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -272,7 +247,6 @@ msgctxt ""
msgid "Report '$name$'"
msgstr ""
-#. adV]
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -281,7 +255,6 @@ msgctxt ""
msgid "document $current$ of $overall$"
msgstr ""
-#. dS]Q
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -290,7 +263,6 @@ msgctxt ""
msgid "Database Document"
msgstr ""
-#. x,#Z
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -299,7 +271,6 @@ msgctxt ""
msgid "saved copy to $location$"
msgstr ""
-#. ONwp
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -308,7 +279,6 @@ msgctxt ""
msgid "migrated $type$ library '$old$' to '$new$'"
msgstr ""
-#. (x0u
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -317,7 +287,6 @@ msgctxt ""
msgid "$type$ library '$library$'"
msgstr ""
-#. ro*Q
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -326,7 +295,6 @@ msgctxt ""
msgid "migrating libraries ..."
msgstr ""
-#. MH9T
#: macromigration.src
#, fuzzy
msgctxt ""
@@ -336,7 +304,6 @@ msgctxt ""
msgid "%PRODUCTNAME Basic"
msgstr "%PRODUCTNAME ٹاسک"
-#. L95~
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -345,7 +312,6 @@ msgctxt ""
msgid "JavaScript"
msgstr ""
-#. K_(k
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -354,7 +320,6 @@ msgctxt ""
msgid "BeanShell"
msgstr ""
-#. z5Zc
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -363,7 +328,6 @@ msgctxt ""
msgid "Java"
msgstr ""
-#. g~Jm
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -372,7 +336,6 @@ msgctxt ""
msgid "Python"
msgstr ""
-#. JK8L
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -381,7 +344,6 @@ msgctxt ""
msgid "dialog"
msgstr ""
-#. {huM
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -390,7 +352,6 @@ msgctxt ""
msgid "Error(s)"
msgstr ""
-#. lP[k
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -399,7 +360,6 @@ msgctxt ""
msgid "Warnings"
msgstr ""
-#. RJnt
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -408,7 +368,6 @@ msgctxt ""
msgid "caught exception:"
msgstr ""
-#. JmHf
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -417,7 +376,6 @@ msgctxt ""
msgid "You need to choose a backup location other than the document location itself."
msgstr ""
-#. `o=?
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -426,7 +384,6 @@ msgctxt ""
msgid "Invalid number of initialization arguments. Expected 1."
msgstr ""
-#. Q7eK
#: macromigration.src
msgctxt ""
"macromigration.src\n"
@@ -435,7 +392,6 @@ msgctxt ""
msgid "No database document found in the initialization arguments."
msgstr ""
-#. SZ+3
#: macromigration.src
msgctxt ""
"macromigration.src\n"
diff --git a/source/ur/dbaccess/source/sdbtools/resource.po b/source/ur/dbaccess/source/sdbtools/resource.po
index f239fe72f25..801b0706937 100644
--- a/source/ur/dbaccess/source/sdbtools/resource.po
+++ b/source/ur/dbaccess/source/sdbtools/resource.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 4W,4
#: sdbt_strings.src
msgctxt ""
"sdbt_strings.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
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 ""
-#. gyh%
#: sdbt_strings.src
#, fuzzy
msgctxt ""
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Table"
msgstr "جدول"
-#. /LI:
#: sdbt_strings.src
msgctxt ""
"sdbt_strings.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Query"
msgstr ""
-#. 7qKO
#: sdbt_strings.src
msgctxt ""
"sdbt_strings.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "The given connection is no valid query and/or tables supplier."
msgstr ""
-#. mGK#
#: sdbt_strings.src
msgctxt ""
"sdbt_strings.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "The given object is no table object."
msgstr ""
-#. LIUa
#: sdbt_strings.src
msgctxt ""
"sdbt_strings.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Invalid composition type - need a value from com.sun.star.sdb.tools.CompositionType."
msgstr ""
-#. _8X^
#: sdbt_strings.src
msgctxt ""
"sdbt_strings.src\n"
diff --git a/source/ur/dbaccess/source/ui/app.po b/source/ur/dbaccess/source/ui/app.po
index fbdfb473e12..ff9a9eb5a71 100644
--- a/source/ur/dbaccess/source/ui/app.po
+++ b/source/ur/dbaccess/source/ui/app.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. M8+u
#: app.src
msgctxt ""
"app.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Create Form in Design View..."
msgstr ""
-#. 5}mf
#: app.src
msgctxt ""
"app.src\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "Use Wizard to Create Form..."
msgstr ""
-#. ^I:2
#: app.src
msgctxt ""
"app.src\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "Use Wizard to Create Report..."
msgstr ""
-#. 5%!)
#: app.src
msgctxt ""
"app.src\n"
@@ -50,7 +46,6 @@ msgctxt ""
msgid "Create Report in Design View..."
msgstr ""
-#. QMc.
#: app.src
msgctxt ""
"app.src\n"
@@ -59,7 +54,6 @@ msgctxt ""
msgid "Create Query in Design View..."
msgstr ""
-#. wQLG
#: app.src
msgctxt ""
"app.src\n"
@@ -68,7 +62,6 @@ msgctxt ""
msgid "Create Query in SQL View..."
msgstr ""
-#. 0j=5
#: app.src
msgctxt ""
"app.src\n"
@@ -77,7 +70,6 @@ msgctxt ""
msgid "Use Wizard to Create Query..."
msgstr ""
-#. c+m^
#: app.src
msgctxt ""
"app.src\n"
@@ -86,7 +78,6 @@ msgctxt ""
msgid "Create Table in Design View..."
msgstr ""
-#. 8_x!
#: app.src
msgctxt ""
"app.src\n"
@@ -95,7 +86,6 @@ msgctxt ""
msgid "Use Wizard to Create Table..."
msgstr ""
-#. U-|Y
#: app.src
msgctxt ""
"app.src\n"
@@ -104,7 +94,6 @@ msgctxt ""
msgid "Create View..."
msgstr ""
-#. 52Z[
#: app.src
msgctxt ""
"app.src\n"
@@ -113,7 +102,6 @@ msgctxt ""
msgid "Forms"
msgstr ""
-#. il@k
#: app.src
msgctxt ""
"app.src\n"
@@ -122,7 +110,6 @@ msgctxt ""
msgid "Reports"
msgstr ""
-#. gSSQ
#: app.src
msgctxt ""
"app.src\n"
@@ -132,7 +119,6 @@ msgctxt ""
msgid "Form..."
msgstr ""
-#. #,}Q
#: app.src
msgctxt ""
"app.src\n"
@@ -142,7 +128,6 @@ msgctxt ""
msgid "Report..."
msgstr ""
-#. ]kPd
#: app.src
msgctxt ""
"app.src\n"
@@ -152,7 +137,6 @@ msgctxt ""
msgid "View (Simple)..."
msgstr ""
-#. =nyK
#: app.src
msgctxt ""
"app.src\n"
@@ -162,7 +146,6 @@ msgctxt ""
msgid "Paste Special..."
msgstr ""
-#. qc.B
#: app.src
msgctxt ""
"app.src\n"
@@ -172,7 +155,6 @@ msgctxt ""
msgid "Delete"
msgstr ""
-#. TJf$
#: app.src
msgctxt ""
"app.src\n"
@@ -182,7 +164,6 @@ msgctxt ""
msgid "Rename"
msgstr ""
-#. M[`t
#: app.src
msgctxt ""
"app.src\n"
@@ -192,7 +173,6 @@ msgctxt ""
msgid "Edit"
msgstr ""
-#. Dxkr
#: app.src
msgctxt ""
"app.src\n"
@@ -202,7 +182,6 @@ msgctxt ""
msgid "Edit in SQL View..."
msgstr ""
-#. O)+e
#: app.src
#, fuzzy
msgctxt ""
@@ -213,7 +192,6 @@ msgctxt ""
msgid "Open"
msgstr "~کھولیے"
-#. p;88
#: app.src
msgctxt ""
"app.src\n"
@@ -223,7 +201,6 @@ msgctxt ""
msgid "Create as View"
msgstr ""
-#. Ci\=
#: app.src
msgctxt ""
"app.src\n"
@@ -233,7 +210,6 @@ msgctxt ""
msgid "Form Wizard..."
msgstr ""
-#. 5qX\
#: app.src
msgctxt ""
"app.src\n"
@@ -243,7 +219,6 @@ msgctxt ""
msgid "Report..."
msgstr ""
-#. iu:i
#: app.src
msgctxt ""
"app.src\n"
@@ -253,7 +228,6 @@ msgctxt ""
msgid "Report Wizard..."
msgstr ""
-#. 0Q3,
#: app.src
msgctxt ""
"app.src\n"
@@ -263,7 +237,6 @@ msgctxt ""
msgid "Select All"
msgstr ""
-#. #W3E
#: app.src
msgctxt ""
"app.src\n"
@@ -273,7 +246,6 @@ msgctxt ""
msgid "Properties..."
msgstr ""
-#. l*B:
#: app.src
msgctxt ""
"app.src\n"
@@ -283,7 +255,6 @@ msgctxt ""
msgid "Connection Type..."
msgstr ""
-#. 1Avo
#: app.src
msgctxt ""
"app.src\n"
@@ -293,7 +264,6 @@ msgctxt ""
msgid "Advanced Settings..."
msgstr ""
-#. i3v)
#: app.src
msgctxt ""
"app.src\n"
@@ -303,7 +273,6 @@ msgctxt ""
msgid "~Database"
msgstr ""
-#. /bmi
#: app.src
msgctxt ""
"app.src\n"
@@ -312,7 +281,6 @@ msgctxt ""
msgid "Do you want to delete the data source '%1'?"
msgstr ""
-#. #e4D
#: app.src
#, fuzzy
msgctxt ""
@@ -322,7 +290,6 @@ msgctxt ""
msgid " - %PRODUCTNAME Base"
msgstr "%PRODUCTNAME ٹاسک"
-#. Y@N!
#: app.src
msgctxt ""
"app.src\n"
@@ -331,7 +298,6 @@ msgctxt ""
msgid "The wizard will guide you through the steps necessary to create a report."
msgstr ""
-#. R:%2
#: app.src
msgctxt ""
"app.src\n"
@@ -340,7 +306,6 @@ msgctxt ""
msgid "Create a form by specifying the record source, controls, and control properties."
msgstr ""
-#. /eW?
#: app.src
msgctxt ""
"app.src\n"
@@ -349,7 +314,6 @@ msgctxt ""
msgid "Create a report by specifying the record source, controls, and control properties."
msgstr ""
-#. /#er
#: app.src
msgctxt ""
"app.src\n"
@@ -358,7 +322,6 @@ msgctxt ""
msgid "The wizard will guide you through the steps necessary to create a form."
msgstr ""
-#. #+2[
#: app.src
msgctxt ""
"app.src\n"
@@ -367,7 +330,6 @@ msgctxt ""
msgid "Create a query by specifying the filters, input tables, field names, and properties for sorting or grouping."
msgstr ""
-#. `P.h
#: app.src
msgctxt ""
"app.src\n"
@@ -376,7 +338,6 @@ msgctxt ""
msgid "Create a query entering an SQL statement directly."
msgstr ""
-#. x`M;
#: app.src
msgctxt ""
"app.src\n"
@@ -385,7 +346,6 @@ msgctxt ""
msgid "The wizard will guide you through the steps necessary to create a query."
msgstr ""
-#. muUk
#: app.src
msgctxt ""
"app.src\n"
@@ -394,7 +354,6 @@ msgctxt ""
msgid "Create a table by specifying the field names and properties, as well as the data types."
msgstr ""
-#. ,A)/
#: app.src
msgctxt ""
"app.src\n"
@@ -403,7 +362,6 @@ msgctxt ""
msgid "Choose from a selection of business and personal table samples, which you customize to create a table."
msgstr ""
-#. 1}hB
#: app.src
msgctxt ""
"app.src\n"
@@ -412,7 +370,6 @@ msgctxt ""
msgid "Create a view by specifying the tables and field names you would like to have visible."
msgstr ""
-#. uecI
#: app.src
msgctxt ""
"app.src\n"
@@ -421,7 +378,6 @@ msgctxt ""
msgid "Opens the view wizard"
msgstr ""
-#. 8!I9
#: app.src
msgctxt ""
"app.src\n"
@@ -430,7 +386,6 @@ msgctxt ""
msgid "Database"
msgstr ""
-#. +oK?
#: app.src
msgctxt ""
"app.src\n"
@@ -439,7 +394,6 @@ msgctxt ""
msgid "Tasks"
msgstr ""
-#. ]#8r
#: app.src
msgctxt ""
"app.src\n"
@@ -448,7 +402,6 @@ msgctxt ""
msgid "Description"
msgstr "وضاحت"
-#. QP~x
#: app.src
#, fuzzy
msgctxt ""
@@ -458,7 +411,6 @@ msgctxt ""
msgid "Preview"
msgstr "مشاہد~ہ"
-#. 4Q8\
#: app.src
msgctxt ""
"app.src\n"
@@ -467,7 +419,6 @@ msgctxt ""
msgid "Disable Preview"
msgstr ""
-#. IV?f
#: app.src
msgctxt ""
"app.src\n"
@@ -478,7 +429,6 @@ msgid ""
"Do you want to save the changes?"
msgstr ""
-#. E6t=
#: app.src
msgctxt ""
"app.src\n"
@@ -491,7 +441,6 @@ msgid ""
"Do you want to close all documents now?"
msgstr ""
-#. -xWK
#: app.src
msgctxt ""
"app.src\n"
@@ -501,7 +450,6 @@ msgctxt ""
msgid "None"
msgstr ""
-#. r.2f
#: app.src
msgctxt ""
"app.src\n"
@@ -511,7 +459,6 @@ msgctxt ""
msgid "Document Information"
msgstr ""
-#. 8rn:
#: app.src
msgctxt ""
"app.src\n"
@@ -521,7 +468,6 @@ msgctxt ""
msgid "Document"
msgstr ""
-#. \5_4
#: app.src
msgctxt ""
"app.src\n"
@@ -530,7 +476,6 @@ msgctxt ""
msgid "Form"
msgstr ""
-#. Bc1t
#: app.src
msgctxt ""
"app.src\n"
@@ -539,7 +484,6 @@ msgctxt ""
msgid "Report"
msgstr ""
-#. .j2e
#: app.src
msgctxt ""
"app.src\n"
@@ -548,7 +492,6 @@ msgctxt ""
msgid "F~orm name"
msgstr ""
-#. ,lje
#: app.src
msgctxt ""
"app.src\n"
@@ -557,7 +500,6 @@ msgctxt ""
msgid "~Report name"
msgstr ""
-#. g:.c
#: app.src
msgctxt ""
"app.src\n"
@@ -566,7 +508,6 @@ msgctxt ""
msgid "F~older name"
msgstr ""
-#. LM}N
#: app.src
msgctxt ""
"app.src\n"
@@ -575,7 +516,6 @@ msgctxt ""
msgid "The document contains forms or reports with embedded macros."
msgstr ""
-#. *a0E
#: app.src
msgctxt ""
"app.src\n"
@@ -589,7 +529,6 @@ msgid ""
"Note that you won't be able to embed macros into the database document itself until this migration is done. "
msgstr ""
-#. IG;w
#: app.src
msgctxt ""
"app.src\n"
@@ -598,7 +537,6 @@ msgctxt ""
msgid "Embedded database"
msgstr ""
-#. 9PgD
#: app.src
msgctxt ""
"app.src\n"
@@ -607,7 +545,6 @@ msgctxt ""
msgid "You cannot select different categories."
msgstr ""
-#. !1~2
#: app.src
msgctxt ""
"app.src\n"
diff --git a/source/ur/dbaccess/source/ui/browser.po b/source/ur/dbaccess/source/ui/browser.po
index 33e0232a039..7d0e0d40258 100644
--- a/source/ur/dbaccess/source/ui/browser.po
+++ b/source/ur/dbaccess/source/ui/browser.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Yg61
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Column ~Format..."
msgstr ""
-#. S*3^
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "Copy Column D~escription"
msgstr ""
-#. OrWW
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "Table Format..."
msgstr ""
-#. _*Kp
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "Row Height..."
msgstr ""
-#. tU(+
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "Undo: Data Input"
msgstr ""
-#. -/O(
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -72,7 +66,6 @@ msgctxt ""
msgid "Save current record"
msgstr ""
-#. P*@v
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -81,7 +74,6 @@ msgctxt ""
msgid "Query #"
msgstr ""
-#. 0*?p
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -90,7 +82,6 @@ msgctxt ""
msgid "Table #"
msgstr ""
-#. }ltF
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -99,7 +90,6 @@ msgctxt ""
msgid "View #"
msgstr ""
-#. G~7/
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -108,7 +98,6 @@ msgctxt ""
msgid "The name \"#\" already exists."
msgstr ""
-#. 9=7^
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -117,7 +106,6 @@ msgctxt ""
msgid "No matching column names were found."
msgstr ""
-#. bg|4
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -126,7 +114,6 @@ msgctxt ""
msgid "An error occurred. Do you want to continue copying?"
msgstr ""
-#. jJ/o
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -135,7 +122,6 @@ msgctxt ""
msgid "Data source table view"
msgstr ""
-#. ^TTF
#: sbagrid.src
msgctxt ""
"sbagrid.src\n"
@@ -144,7 +130,6 @@ msgctxt ""
msgid "Shows the selected table or query."
msgstr ""
-#. Y2P,
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -155,7 +140,6 @@ msgid ""
"Do you want to save the changes?"
msgstr ""
-#. kn*1
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -164,7 +148,6 @@ msgctxt ""
msgid "Do you want to delete the selected data?"
msgstr ""
-#. =Rsz
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -173,7 +156,6 @@ msgctxt ""
msgid "(filtered)"
msgstr ""
-#. rB\v
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -182,7 +164,6 @@ msgctxt ""
msgid "Error setting the sort criteria"
msgstr ""
-#. Pp/v
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -191,7 +172,6 @@ msgctxt ""
msgid "Error setting the filter criteria"
msgstr ""
-#. rQ1R
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -200,7 +180,6 @@ msgctxt ""
msgid "Connection lost"
msgstr ""
-#. H6bx
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -209,7 +188,6 @@ msgctxt ""
msgid "Queries"
msgstr ""
-#. MA(8
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -218,7 +196,6 @@ msgctxt ""
msgid "Tables"
msgstr "جدول"
-#. =r`]
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -227,7 +204,6 @@ msgctxt ""
msgid "Edit ~Database File..."
msgstr ""
-#. REP(
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -236,7 +212,6 @@ msgctxt ""
msgid "Registered databases ..."
msgstr ""
-#. HoF`
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -245,7 +220,6 @@ msgctxt ""
msgid "Disco~nnect"
msgstr ""
-#. )aE+
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -254,7 +228,6 @@ msgctxt ""
msgid "Confirm Deletion"
msgstr ""
-#. T!@5
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -263,7 +236,6 @@ msgctxt ""
msgid "Do you want to delete the table '%1'?"
msgstr ""
-#. Cu)A
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -272,7 +244,6 @@ msgctxt ""
msgid "The query already exists. Do you want to delete it?"
msgstr ""
-#. Bmq=
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -281,7 +252,6 @@ msgctxt ""
msgid "The connection to the database has been lost. Do you want to reconnect?"
msgstr ""
-#. huTN
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -290,7 +260,6 @@ msgctxt ""
msgid "Warnings encountered"
msgstr ""
-#. 6w9[
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -299,7 +268,6 @@ msgctxt ""
msgid "While retrieving the tables, warnings were reported by the database connection."
msgstr ""
-#. ,R(F
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -308,7 +276,6 @@ msgctxt ""
msgid "Connecting to \"$name$\" ..."
msgstr ""
-#. VeAp
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -317,7 +284,6 @@ msgctxt ""
msgid "Loading query $name$ ..."
msgstr ""
-#. %?6?
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -326,7 +292,6 @@ msgctxt ""
msgid "Loading table $name$ ..."
msgstr ""
-#. J,jS
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -335,7 +300,6 @@ msgctxt ""
msgid "No table format could be found."
msgstr ""
-#. W=|$
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
@@ -344,7 +308,6 @@ msgctxt ""
msgid "The connection to the data source \"$name$\" could not be established."
msgstr ""
-#. 3J7q
#: sbabrw.src
msgctxt ""
"sbabrw.src\n"
diff --git a/source/ur/dbaccess/source/ui/control.po b/source/ur/dbaccess/source/ui/control.po
index b93a77fdf22..559e4132884 100644
--- a/source/ur/dbaccess/source/ui/control.po
+++ b/source/ur/dbaccess/source/ui/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 8ex9
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Table name"
msgstr ""
-#. NWcr
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "Insert data"
msgstr ""
-#. #X=!
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "Delete data"
msgstr ""
-#. Eu.9
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -50,7 +46,6 @@ msgctxt ""
msgid "Modify data"
msgstr ""
-#. 4KTe
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -59,7 +54,6 @@ msgctxt ""
msgid "Alter structure"
msgstr ""
-#. 0L=`
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -68,7 +62,6 @@ msgctxt ""
msgid "Read data"
msgstr ""
-#. IwWY
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -77,7 +70,6 @@ msgctxt ""
msgid "Modify references"
msgstr ""
-#. %!#X
#: TableGrantCtrl.src
msgctxt ""
"TableGrantCtrl.src\n"
@@ -86,7 +78,6 @@ msgctxt ""
msgid "Drop structure"
msgstr ""
-#. ^[If
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Sort Ascending"
msgstr ""
-#. rER,
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -106,7 +96,6 @@ msgctxt ""
msgid "Sort Descending"
msgstr ""
-#. P!#:
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -115,7 +104,6 @@ msgctxt ""
msgid "Cannot connect to the SDBC driver manager (#servicename#)."
msgstr ""
-#. !+g!
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -124,7 +112,6 @@ msgctxt ""
msgid "A driver is not registered for the URL #connurl#."
msgstr ""
-#. qbiS
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -133,7 +120,6 @@ msgctxt ""
msgid "No connection could be established for the URL #connurl#."
msgstr ""
-#. _5\K
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -142,7 +128,6 @@ msgctxt ""
msgid "Please check the current settings, for example user name and password."
msgstr ""
-#. Y5.=
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -151,7 +136,6 @@ msgctxt ""
msgid "Successfully connected, but information about database tables is not available."
msgstr ""
-#. GZ_O
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -160,7 +144,6 @@ msgctxt ""
msgid "All tables"
msgstr ""
-#. :hM%
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -169,7 +152,6 @@ msgctxt ""
msgid "All views"
msgstr ""
-#. bYB*
#: tabletree.src
msgctxt ""
"tabletree.src\n"
@@ -178,7 +160,6 @@ msgctxt ""
msgid "All tables and views"
msgstr ""
-#. W[Ho
#: undosqledit.src
msgctxt ""
"undosqledit.src\n"
diff --git a/source/ur/dbaccess/source/ui/dlg.po b/source/ur/dbaccess/source/ui/dlg.po
index 35bc0853318..8ea0a8ba23a 100644
--- a/source/ur/dbaccess/source/ui/dlg.po
+++ b/source/ur/dbaccess/source/ui/dlg.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-02-24 15:57+0200\n"
"Last-Translator: Yasir <urdulizer@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ffSl
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -25,7 +24,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. A5*3
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -35,7 +33,6 @@ msgctxt ""
msgid "Create New Directory"
msgstr "نئی ڈایریکٹری بنائیں"
-#. |r[Z
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -45,7 +42,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. U?Au
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -55,7 +51,6 @@ msgctxt ""
msgid "Up One Level"
msgstr "ایک درجہ اوپر"
-#. ^CAh
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "File ~name:"
msgstr "~فائل کا نام:"
-#. j)yZ
#: CollectionView.src
#, fuzzy
msgctxt ""
@@ -76,7 +70,6 @@ msgctxt ""
msgid "Save"
msgstr "محفو~ظ کیجئے"
-#. dLcd
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -86,7 +79,6 @@ msgctxt ""
msgid "~Path:"
msgstr "~مقام:"
-#. lEAb
#: CollectionView.src
#, fuzzy
msgctxt ""
@@ -96,7 +88,6 @@ msgctxt ""
msgid "Save"
msgstr "محفو~ظ کیجئے"
-#. fSV0
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "Folder"
msgstr "فولڈر"
-#. c4eo
#: CollectionView.src
msgctxt ""
"CollectionView.src\n"
@@ -114,7 +104,6 @@ msgctxt ""
msgid "The file already exists. Overwrite?"
msgstr ""
-#. .O;!
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -123,7 +112,6 @@ msgctxt ""
msgid "A password is needed to connect to the data source \"$name$\"."
msgstr ""
-#. RD7L
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -137,7 +125,6 @@ msgid ""
"does not exist. Should it be created?"
msgstr ""
-#. m0z/
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -146,7 +133,6 @@ msgctxt ""
msgid "The directory $name$ could not be created."
msgstr ""
-#. ?SeD
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -156,7 +142,6 @@ msgctxt ""
msgid "Please enter the ~password for the user 'DOMAIN'."
msgstr ""
-#. b~o^
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -165,7 +150,6 @@ msgctxt ""
msgid "Convert Database"
msgstr ""
-#. :ieU
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -175,7 +159,6 @@ msgctxt ""
msgid "Tables and table filter"
msgstr ""
-#. X-?g
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -185,7 +168,6 @@ msgctxt ""
msgid "Mark the tables that should be visible for the applications."
msgstr ""
-#. \!,2
#: dbadmin2.src
msgctxt ""
"dbadmin2.src\n"
@@ -194,7 +176,6 @@ msgctxt ""
msgid "Tables Filter"
msgstr ""
-#. ;m0#
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -204,7 +185,6 @@ msgctxt ""
msgid "Database Wizard"
msgstr ""
-#. RNn.
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -214,7 +194,6 @@ msgctxt ""
msgid "Select database"
msgstr ""
-#. PC[R
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -224,7 +203,6 @@ msgctxt ""
msgid "Set up dBASE connection"
msgstr ""
-#. =#2V
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -234,7 +212,6 @@ msgctxt ""
msgid "Set up a connection to text files"
msgstr ""
-#. C:B\
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -244,7 +221,6 @@ msgctxt ""
msgid "Set up Microsoft Access connection"
msgstr ""
-#. 8]3W
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -254,7 +230,6 @@ msgctxt ""
msgid "Set up LDAP connection"
msgstr ""
-#. ton+
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -264,7 +239,6 @@ msgctxt ""
msgid "Set up ADO connection"
msgstr ""
-#. l:9b
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -274,7 +248,6 @@ msgctxt ""
msgid "Set up JDBC connection"
msgstr ""
-#. 4SO_
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -284,7 +257,6 @@ msgctxt ""
msgid "Set up Oracle database connection"
msgstr ""
-#. Z9!@
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -294,7 +266,6 @@ msgctxt ""
msgid "Set up MySQL connection"
msgstr ""
-#. /EEM
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -304,7 +275,6 @@ msgctxt ""
msgid "Set up ODBC connection"
msgstr ""
-#. ^H)z
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -314,7 +284,6 @@ msgctxt ""
msgid "Set up Spreadsheet connection"
msgstr ""
-#. I(,a
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -324,7 +293,6 @@ msgctxt ""
msgid "Set up user authentication"
msgstr ""
-#. 4)zw
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -334,7 +302,6 @@ msgctxt ""
msgid "Set up MySQL server data"
msgstr ""
-#. lQF(
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -344,7 +311,6 @@ msgctxt ""
msgid "Save and proceed"
msgstr ""
-#. RFmE
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -353,7 +319,6 @@ msgctxt ""
msgid "Database Wizard"
msgstr ""
-#. .5,A
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -362,7 +327,6 @@ msgctxt ""
msgid "New Database"
msgstr ""
-#. 13CT
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -372,7 +336,6 @@ msgctxt ""
msgid "Set up a connection to a MySQL database"
msgstr ""
-#. HRD[
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -384,7 +347,6 @@ msgid ""
"Please contact your system administrator if you are unsure about the following settings."
msgstr ""
-#. [4^C
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -394,7 +356,6 @@ msgctxt ""
msgid "How do you want to connect to your MySQL database?"
msgstr ""
-#. K6aj
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -404,7 +365,6 @@ msgctxt ""
msgid "Connect using ODBC (Open Database Connectivity)"
msgstr ""
-#. %NHc
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -414,7 +374,6 @@ msgctxt ""
msgid "Connect using JDBC (Java Database Connectivity)"
msgstr ""
-#. ,#aB
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -424,7 +383,6 @@ msgctxt ""
msgid "Connect directly"
msgstr ""
-#. MflO
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -434,7 +392,6 @@ msgctxt ""
msgid "Set up the user authentication"
msgstr ""
-#. b~Fi
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -444,7 +401,6 @@ msgctxt ""
msgid "Some databases require you to enter a user name."
msgstr ""
-#. CvQU
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -454,7 +410,6 @@ msgctxt ""
msgid "~User name"
msgstr ""
-#. wx1d
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -464,7 +419,6 @@ msgctxt ""
msgid "Password re~quired"
msgstr ""
-#. =y9*
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -474,7 +428,6 @@ msgctxt ""
msgid "~Test Connection"
msgstr ""
-#. _WJF
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -484,7 +437,6 @@ msgctxt ""
msgid "Decide how to proceed after saving the database"
msgstr ""
-#. $34|
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -494,7 +446,6 @@ msgctxt ""
msgid "Do you want the wizard to register the database in %PRODUCTNAME?"
msgstr ""
-#. 5BE]
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -504,7 +455,6 @@ msgctxt ""
msgid "~Yes, register the database for me"
msgstr ""
-#. .nMS
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -514,7 +464,6 @@ msgctxt ""
msgid "N~o, do not register the database"
msgstr ""
-#. ?(A\
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -524,7 +473,6 @@ msgctxt ""
msgid "After the database file has been saved, what do you want to do?"
msgstr ""
-#. ?P6L
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -534,7 +482,6 @@ msgctxt ""
msgid "Open the database for editing"
msgstr ""
-#. ni)v
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -544,7 +491,6 @@ msgctxt ""
msgid "Create tables using the table wizard"
msgstr ""
-#. UJ/7
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -554,7 +500,6 @@ msgctxt ""
msgid "Click 'Finish' to save the database."
msgstr ""
-#. [%Ae
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -564,7 +509,6 @@ msgctxt ""
msgid "Set up connection to a MySQL database using JDBC"
msgstr ""
-#. dL?|
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -576,7 +520,6 @@ msgid ""
"Please contact your system administrator if you are unsure about the following settings."
msgstr ""
-#. Oq2=
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -586,7 +529,6 @@ msgctxt ""
msgid "MySQL JDBC d~river class:"
msgstr ""
-#. 4O*+
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -596,7 +538,6 @@ msgctxt ""
msgid "Default: 3306"
msgstr ""
-#. b|Hj
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -606,7 +547,6 @@ msgctxt ""
msgid "Set up connection to a MySQL database"
msgstr ""
-#. bc+h
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -616,7 +556,6 @@ msgctxt ""
msgid "Please enter the required information to connect to a MySQL database."
msgstr ""
-#. 8Lf+
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -626,7 +565,6 @@ msgctxt ""
msgid "Set up a connection to dBASE files"
msgstr ""
-#. *K-H
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -636,7 +574,6 @@ msgctxt ""
msgid "Select the folder where the dBASE files are stored."
msgstr ""
-#. ZP#(
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -646,7 +583,6 @@ msgctxt ""
msgid "Set up a connection to text files"
msgstr ""
-#. w]t#
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -656,7 +592,6 @@ msgctxt ""
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 ""
-#. (G{Q
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -666,7 +601,6 @@ msgctxt ""
msgid "Path to text files"
msgstr ""
-#. f(p8
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -676,7 +610,6 @@ msgctxt ""
msgid "Set up a connection to a Microsoft Access database"
msgstr ""
-#. Ci:K
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -686,7 +619,6 @@ msgctxt ""
msgid "Please select the Microsoft Access file you want to access."
msgstr ""
-#. =EPv
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -696,7 +628,6 @@ msgctxt ""
msgid "Set up a connection to an LDAP directory"
msgstr ""
-#. =iWu
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -708,7 +639,6 @@ msgid ""
"Please contact your system administrator if you are unsure about the following settings."
msgstr ""
-#. \,ib
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -718,7 +648,6 @@ msgctxt ""
msgid "Default: 389"
msgstr ""
-#. `5LH
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -728,7 +657,6 @@ msgctxt ""
msgid "Use ~secure connection (SSL)"
msgstr ""
-#. AqsX
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -738,7 +666,6 @@ msgctxt ""
msgid "Set up a connection to an ADO database"
msgstr ""
-#. rC+d
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -751,7 +678,6 @@ msgid ""
"Please contact your system administrator if you are unsure about the following settings."
msgstr ""
-#. dXJ_
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -761,7 +687,6 @@ msgctxt ""
msgid "Set up a connection to an ODBC database"
msgstr ""
-#. J6(6
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -774,7 +699,6 @@ msgid ""
"Please contact your system administrator if you are unsure about the following settings."
msgstr ""
-#. `jQA
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -784,7 +708,6 @@ msgctxt ""
msgid "Set up a connection to a JDBC database"
msgstr ""
-#. sv51
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -796,7 +719,6 @@ msgid ""
"Please contact your system administrator if you are unsure about the following settings."
msgstr ""
-#. ~Z0B
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -806,7 +728,6 @@ msgctxt ""
msgid "Set up a connection to an Oracle database"
msgstr ""
-#. bQ#G
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -816,7 +737,6 @@ msgctxt ""
msgid "Default: 1521"
msgstr ""
-#. uMc*
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -826,7 +746,6 @@ msgctxt ""
msgid "Oracle JDBC ~driver class"
msgstr ""
-#. gRsG
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -838,7 +757,6 @@ msgid ""
"Please contact your system administrator if you are unsure about the following settings."
msgstr ""
-#. ?lvf
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -848,7 +766,6 @@ msgctxt ""
msgid "Set up a connection to spreadsheets"
msgstr ""
-#. Lg{}
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -860,7 +777,6 @@ msgid ""
"%PRODUCTNAME will open this file in read-only mode."
msgstr ""
-#. (oKh
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -870,7 +786,6 @@ msgctxt ""
msgid "~Location and file name"
msgstr ""
-#. ;#lG
#: dbadminsetup.src
msgctxt ""
"dbadminsetup.src\n"
@@ -880,7 +795,6 @@ msgctxt ""
msgid "~Password required"
msgstr ""
-#. _^lO
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -890,7 +804,6 @@ msgctxt ""
msgid "~Database name"
msgstr ""
-#. ;U^I
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -900,7 +813,6 @@ msgctxt ""
msgid "Se~rver / Port"
msgstr ""
-#. 4Z}n
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -910,7 +822,6 @@ msgctxt ""
msgid "~Server"
msgstr ""
-#. w|ti
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -920,7 +831,6 @@ msgctxt ""
msgid "~Port"
msgstr ""
-#. $ae)
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -930,7 +840,6 @@ msgctxt ""
msgid "Default: 3306"
msgstr ""
-#. e38~
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -940,7 +849,6 @@ msgctxt ""
msgid "So~cket"
msgstr ""
-#. S`c+
#: admincontrols.src
msgctxt ""
"admincontrols.src\n"
@@ -950,7 +858,6 @@ msgctxt ""
msgid "Named p~ipe"
msgstr ""
-#. :-A#
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -960,7 +867,6 @@ msgctxt ""
msgid "Browse"
msgstr "براؤز"
-#. 6x\s
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -970,7 +876,6 @@ msgctxt ""
msgid "Database name"
msgstr ""
-#. HgJa
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -980,7 +885,6 @@ msgctxt ""
msgid "Server"
msgstr ""
-#. p6EL
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -990,7 +894,6 @@ msgctxt ""
msgid "Base ~DN"
msgstr ""
-#. A%st
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1000,7 +903,6 @@ msgctxt ""
msgid "~Port number"
msgstr ""
-#. gm+d
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1010,7 +912,6 @@ msgctxt ""
msgid "Data conversion"
msgstr ""
-#. ~bs:
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1020,7 +921,6 @@ msgctxt ""
msgid "~Character set"
msgstr ""
-#. `H!z
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1030,7 +930,6 @@ msgctxt ""
msgid "Specify the type of files you want to access"
msgstr ""
-#. xRp+
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1040,7 +939,6 @@ msgctxt ""
msgid "Plain text files (*.txt)"
msgstr ""
-#. CWPo
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1050,7 +948,6 @@ msgctxt ""
msgid "'Comma separated value' files (*.csv)"
msgstr ""
-#. 1C2B
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1060,7 +957,6 @@ msgctxt ""
msgid "Custom:"
msgstr ""
-#. 1STv
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1070,7 +966,6 @@ msgctxt ""
msgid "Custom: *.abc"
msgstr ""
-#. \?;M
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1080,7 +975,6 @@ msgctxt ""
msgid "Row Format"
msgstr ""
-#. [9b?
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1090,7 +984,6 @@ msgctxt ""
msgid "Field separator"
msgstr ""
-#. +,P3
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1100,7 +993,6 @@ msgctxt ""
msgid "Text separator"
msgstr ""
-#. ^yUz
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1110,7 +1002,6 @@ msgctxt ""
msgid "Decimal separator"
msgstr ""
-#. XGXf
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1119,7 +1010,6 @@ msgctxt ""
msgid "Thousands separator"
msgstr ""
-#. 1oA.
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1128,7 +1018,6 @@ msgctxt ""
msgid "~Text contains headers"
msgstr ""
-#. J~Fh
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1138,7 +1027,6 @@ msgid "{None}"
msgstr ""
#. EM Dec 2002: \'Space\' refers to what you get when you hit the space bar on your keyboard.
-#. =nL2
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1147,7 +1035,6 @@ msgctxt ""
msgid ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Space}\t32"
msgstr ""
-#. 3m#(
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1156,7 +1043,6 @@ msgctxt ""
msgid "#1 must be set."
msgstr ""
-#. +We1
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1165,7 +1051,6 @@ msgctxt ""
msgid "#1 and #2 must be different."
msgstr ""
-#. {1mo
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1174,7 +1059,6 @@ msgctxt ""
msgid "Wildcards such as ?,* are not allowed in #1."
msgstr ""
-#. jeZ\
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1184,7 +1068,6 @@ msgctxt ""
msgid "JDBC d~river class"
msgstr ""
-#. LceU
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1194,7 +1077,6 @@ msgctxt ""
msgid "Test class"
msgstr ""
-#. sA+g
#: AutoControls_tmpl.hrc
msgctxt ""
"AutoControls_tmpl.hrc\n"
@@ -1204,7 +1086,6 @@ msgctxt ""
msgid "Socket"
msgstr ""
-#. YDRn
#: adtabdlg.src
msgctxt ""
"adtabdlg.src\n"
@@ -1214,7 +1095,6 @@ msgctxt ""
msgid "Tables"
msgstr "جدول"
-#. T9F\
#: adtabdlg.src
msgctxt ""
"adtabdlg.src\n"
@@ -1224,7 +1104,6 @@ msgctxt ""
msgid "Queries"
msgstr ""
-#. ;GDK
#: adtabdlg.src
msgctxt ""
"adtabdlg.src\n"
@@ -1234,7 +1113,6 @@ msgctxt ""
msgid "~Add"
msgstr ""
-#. }OFr
#: adtabdlg.src
msgctxt ""
"adtabdlg.src\n"
@@ -1244,7 +1122,6 @@ msgctxt ""
msgid "~Close"
msgstr ""
-#. :@gb
#: adtabdlg.src
msgctxt ""
"adtabdlg.src\n"
@@ -1254,7 +1131,6 @@ msgctxt ""
msgid "Add Tables"
msgstr ""
-#. MQVE
#: adtabdlg.src
msgctxt ""
"adtabdlg.src\n"
@@ -1264,7 +1140,6 @@ msgctxt ""
msgid "Add Table or Query"
msgstr ""
-#. ;2;l
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1274,7 +1149,6 @@ msgctxt ""
msgid "User selection"
msgstr ""
-#. 7F_B
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1284,7 +1158,6 @@ msgctxt ""
msgid "Us~er:"
msgstr ""
-#. bvaS
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1294,7 +1167,6 @@ msgctxt ""
msgid "~Add User..."
msgstr ""
-#. 0p(6
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1304,7 +1176,6 @@ msgctxt ""
msgid "Change ~Password..."
msgstr ""
-#. ET(d
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1314,7 +1185,6 @@ msgctxt ""
msgid "~Delete User..."
msgstr ""
-#. .fB!
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1324,7 +1194,6 @@ msgctxt ""
msgid "Access rights for selected user"
msgstr ""
-#. -JJP
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1333,7 +1202,6 @@ msgctxt ""
msgid "Do you really want to delete the user?"
msgstr ""
-#. UN`:
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1342,7 +1210,6 @@ msgctxt ""
msgid "The database does not support user administration."
msgstr ""
-#. pamf
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1352,7 +1219,6 @@ msgctxt ""
msgid "User \"$name$: $\""
msgstr ""
-#. fD9T
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1362,7 +1228,6 @@ msgctxt ""
msgid "Old p~assword"
msgstr ""
-#. SinN
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1372,7 +1237,6 @@ msgctxt ""
msgid "~Password"
msgstr ""
-#. Qj;-
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1382,7 +1246,6 @@ msgctxt ""
msgid "~Confirm password"
msgstr ""
-#. irnY
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1391,7 +1254,6 @@ msgctxt ""
msgid "Change Password"
msgstr ""
-#. ]7nT
#: UserAdmin.src
msgctxt ""
"UserAdmin.src\n"
@@ -1400,7 +1262,6 @@ msgctxt ""
msgid "The passwords do not match. Please enter the password again."
msgstr ""
-#. @`Wp
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1410,7 +1271,6 @@ msgctxt ""
msgid "General"
msgstr ""
-#. 5BSd
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1420,7 +1280,6 @@ msgctxt ""
msgid "~Host name"
msgstr ""
-#. O?pb
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1430,7 +1289,6 @@ msgctxt ""
msgid "User authentication"
msgstr ""
-#. 8n{0
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1440,7 +1298,6 @@ msgctxt ""
msgid "~User name"
msgstr ""
-#. d)K?
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1450,7 +1307,6 @@ msgctxt ""
msgid "Password required"
msgstr ""
-#. w6dh
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1460,7 +1316,6 @@ msgctxt ""
msgid "JDBC properties"
msgstr ""
-#. d=^3
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1470,7 +1325,6 @@ msgctxt ""
msgid "~JDBC driver class"
msgstr ""
-#. oO(K
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1480,7 +1334,6 @@ msgctxt ""
msgid "Test Class"
msgstr ""
-#. @#%8
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1490,7 +1343,6 @@ msgctxt ""
msgid "Test Connection"
msgstr ""
-#. Vc?;
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1499,7 +1351,6 @@ msgctxt ""
msgid "Connection Test"
msgstr ""
-#. IL]+
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1508,7 +1359,6 @@ msgctxt ""
msgid "The connection was established successfully."
msgstr ""
-#. \tud
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1517,7 +1367,6 @@ msgctxt ""
msgid "The connection could not be established."
msgstr ""
-#. Az|t
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1526,7 +1375,6 @@ msgctxt ""
msgid "The JDBC driver was loaded successfully."
msgstr ""
-#. iPjC
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1535,7 +1383,6 @@ msgctxt ""
msgid "The JDBC driver could not be loaded."
msgstr ""
-#. /-LM
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1544,7 +1391,6 @@ msgctxt ""
msgid "MS Access file"
msgstr ""
-#. ZbpT
#: ConnectionPage.src
msgctxt ""
"ConnectionPage.src\n"
@@ -1553,7 +1399,6 @@ msgctxt ""
msgid "MS Access 2007 file"
msgstr ""
-#. D36C
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1563,7 +1408,6 @@ msgctxt ""
msgid "New Index"
msgstr ""
-#. 8l#U
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1573,7 +1417,6 @@ msgctxt ""
msgid "Delete Current Index"
msgstr ""
-#. 9MlT
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1583,7 +1426,6 @@ msgctxt ""
msgid "Rename Current Index"
msgstr ""
-#. R6,[
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1593,7 +1435,6 @@ msgctxt ""
msgid "Save Current Index"
msgstr ""
-#. iUa]
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1603,7 +1444,6 @@ msgctxt ""
msgid "Reset Current Index"
msgstr ""
-#. 7RS/
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1613,7 +1453,6 @@ msgctxt ""
msgid "Index details"
msgstr ""
-#. w$KI
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1623,7 +1462,6 @@ msgctxt ""
msgid "Index identifier:"
msgstr ""
-#. ZQl)
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1633,7 +1471,6 @@ msgctxt ""
msgid "~Unique"
msgstr ""
-#. /.[`
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1643,7 +1480,6 @@ msgctxt ""
msgid "Fields"
msgstr ""
-#. rvRK
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1653,7 +1489,6 @@ msgctxt ""
msgid "~Close"
msgstr ""
-#. SSe{
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1662,7 +1497,6 @@ msgctxt ""
msgid "Indexes"
msgstr ""
-#. @J((
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1671,7 +1505,6 @@ msgctxt ""
msgid "Sort order"
msgstr ""
-#. +20R
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1680,7 +1513,6 @@ msgctxt ""
msgid "Index field"
msgstr ""
-#. 2[30
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1689,7 +1521,6 @@ msgctxt ""
msgid "Ascending"
msgstr ""
-#. ;o^d
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1698,7 +1529,6 @@ msgctxt ""
msgid "Descending"
msgstr ""
-#. 3*]#
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1707,7 +1537,6 @@ msgctxt ""
msgid "Do you really want to delete the index '$name$'?"
msgstr ""
-#. yAOm
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1716,7 +1545,6 @@ msgctxt ""
msgid "index"
msgstr ""
-#. ^shB
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1725,7 +1553,6 @@ msgctxt ""
msgid "The index must contain at least one field."
msgstr ""
-#. rLRc
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1734,7 +1561,6 @@ msgctxt ""
msgid "Save Index"
msgstr ""
-#. SgJ^
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1743,7 +1569,6 @@ msgctxt ""
msgid "Do you want to save the changes made to the current index?"
msgstr ""
-#. WPnm
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1752,7 +1577,6 @@ msgctxt ""
msgid "Exit Index Design"
msgstr ""
-#. T/54
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1761,7 +1585,6 @@ msgctxt ""
msgid "There is already another index named \"$name$\"."
msgstr ""
-#. 4,G}
#: indexdialog.src
msgctxt ""
"indexdialog.src\n"
@@ -1770,7 +1593,6 @@ msgctxt ""
msgid "In an index definition, no table column may occur more than once. However, you have entered column \"$name$\" twice."
msgstr ""
-#. YvCP
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1780,7 +1602,6 @@ msgctxt ""
msgid "Tables involved"
msgstr ""
-#. !kk6
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1790,7 +1611,6 @@ msgctxt ""
msgid "Fields involved"
msgstr ""
-#. $5V0
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1800,7 +1620,6 @@ msgctxt ""
msgid "Update options"
msgstr ""
-#. hWIU
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1810,7 +1629,6 @@ msgctxt ""
msgid "~No action"
msgstr ""
-#. 1%#_
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1820,7 +1638,6 @@ msgctxt ""
msgid "~Update cascade"
msgstr ""
-#. FA!m
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1830,7 +1647,6 @@ msgctxt ""
msgid "~Set null"
msgstr ""
-#. TL$:
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1840,7 +1656,6 @@ msgctxt ""
msgid "Set ~default"
msgstr ""
-#. P/w[
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1850,7 +1665,6 @@ msgctxt ""
msgid "Delete options"
msgstr ""
-#. VVn6
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1860,7 +1674,6 @@ msgctxt ""
msgid "~No action"
msgstr ""
-#. CRXV
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1870,7 +1683,6 @@ msgctxt ""
msgid "Delete ~cascade"
msgstr ""
-#. k,W^
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1880,7 +1692,6 @@ msgctxt ""
msgid "~Set null"
msgstr ""
-#. $ewE
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1890,7 +1701,6 @@ msgctxt ""
msgid "Set ~default"
msgstr ""
-#. C+##
#: RelationDlg.src
msgctxt ""
"RelationDlg.src\n"
@@ -1899,7 +1709,6 @@ msgctxt ""
msgid "Relations"
msgstr ""
-#. WM_x
#: dsselect.src
msgctxt ""
"dsselect.src\n"
@@ -1909,7 +1718,6 @@ msgctxt ""
msgid "Choose a data source:"
msgstr ""
-#. %K`o
#: dsselect.src
msgctxt ""
"dsselect.src\n"
@@ -1919,7 +1727,6 @@ msgctxt ""
msgid "Organize..."
msgstr ""
-#. LmJ3
#: dsselect.src
msgctxt ""
"dsselect.src\n"
@@ -1929,7 +1736,6 @@ msgctxt ""
msgid "Create..."
msgstr ""
-#. g59A
#: dsselect.src
msgctxt ""
"dsselect.src\n"
@@ -1939,7 +1745,6 @@ msgctxt ""
msgid "Local Databases"
msgstr ""
-#. EOo,
#: dsselect.src
msgctxt ""
"dsselect.src\n"
@@ -1949,7 +1754,6 @@ msgctxt ""
msgid "Choose a database"
msgstr ""
-#. |,ZV
#: dsselect.src
msgctxt ""
"dsselect.src\n"
@@ -1958,7 +1762,6 @@ msgctxt ""
msgid "Data Source"
msgstr ""
-#. /kst
#: paramdialog.src
msgctxt ""
"paramdialog.src\n"
@@ -1968,7 +1771,6 @@ msgctxt ""
msgid "~Parameters"
msgstr ""
-#. pRnb
#: paramdialog.src
#, fuzzy
msgctxt ""
@@ -1979,7 +1781,6 @@ msgctxt ""
msgid "~Value"
msgstr "قیمت"
-#. NA%L
#: paramdialog.src
msgctxt ""
"paramdialog.src\n"
@@ -1989,7 +1790,6 @@ msgctxt ""
msgid "~Next"
msgstr ""
-#. qDEP
#: paramdialog.src
msgctxt ""
"paramdialog.src\n"
@@ -1999,7 +1799,6 @@ msgctxt ""
msgid "The entry could not be converted to a valid value for the \"$name$\"column"
msgstr ""
-#. B}3N
#: paramdialog.src
msgctxt ""
"paramdialog.src\n"
@@ -2008,7 +1807,6 @@ msgctxt ""
msgid "Parameter Input"
msgstr ""
-#. ;zAN
#: dlgsize.src
msgctxt ""
"dlgsize.src\n"
@@ -2018,7 +1816,6 @@ msgctxt ""
msgid "~Height"
msgstr ""
-#. -y\s
#: dlgsize.src
#, fuzzy
msgctxt ""
@@ -2029,7 +1826,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "خودکار"
-#. %^F0
#: dlgsize.src
msgctxt ""
"dlgsize.src\n"
@@ -2038,7 +1834,6 @@ msgctxt ""
msgid "Row Height"
msgstr ""
-#. ?GHK
#: dlgsize.src
msgctxt ""
"dlgsize.src\n"
@@ -2048,7 +1843,6 @@ msgctxt ""
msgid "~Width"
msgstr ""
-#. VE;(
#: dlgsize.src
#, fuzzy
msgctxt ""
@@ -2059,7 +1853,6 @@ msgctxt ""
msgid "~Automatic"
msgstr "خودکار"
-#. U3F2
#: dlgsize.src
msgctxt ""
"dlgsize.src\n"
@@ -2068,7 +1861,6 @@ msgctxt ""
msgid "Column Width"
msgstr ""
-#. %@Zj
#: UserAdminDlg.src
msgctxt ""
"UserAdminDlg.src\n"
@@ -2078,7 +1870,6 @@ msgctxt ""
msgid "User Settings"
msgstr ""
-#. [n;|
#: UserAdminDlg.src
msgctxt ""
"UserAdminDlg.src\n"
@@ -2087,7 +1878,6 @@ msgctxt ""
msgid "User administration"
msgstr ""
-#. ,IC5
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2097,7 +1887,6 @@ msgctxt ""
msgid "AND"
msgstr ""
-#. A8/!
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2107,7 +1896,6 @@ msgctxt ""
msgid "OR"
msgstr ""
-#. nm[J
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2117,7 +1905,6 @@ msgctxt ""
msgid "AND"
msgstr ""
-#. Rd28
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2127,7 +1914,6 @@ msgctxt ""
msgid "OR"
msgstr ""
-#. (k^l
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2137,7 +1923,6 @@ msgctxt ""
msgid "Field name"
msgstr ""
-#. yu4j
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2147,7 +1932,6 @@ msgctxt ""
msgid "Condition"
msgstr ""
-#. hI8?
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2157,7 +1941,6 @@ msgctxt ""
msgid "Value"
msgstr "قیمت"
-#. WE?/
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2167,7 +1950,6 @@ msgctxt ""
msgid "Operator"
msgstr ""
-#. +,T)
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2177,7 +1959,6 @@ msgctxt ""
msgid "Criteria"
msgstr ""
-#. =p+m
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2187,7 +1968,6 @@ msgctxt ""
msgid "- none -"
msgstr ""
-#. FQ8-
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2197,7 +1977,6 @@ msgctxt ""
msgid "=;<>;<;<=;>;>=;like;not like;null;not null"
msgstr ""
-#. wMcy
#: queryfilter.src
msgctxt ""
"queryfilter.src\n"
@@ -2206,7 +1985,6 @@ msgctxt ""
msgid "Standard Filter"
msgstr ""
-#. ~R+m
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2216,7 +1994,6 @@ msgctxt ""
msgid "Options"
msgstr ""
-#. B{1#
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2226,7 +2003,6 @@ msgctxt ""
msgid "Use SQL92 naming constraints"
msgstr ""
-#. j77S
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2236,7 +2012,6 @@ msgctxt ""
msgid "Append the table alias name on SELECT statements"
msgstr ""
-#. %-b#
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2246,7 +2021,6 @@ msgctxt ""
msgid "Use keyword AS before table alias names"
msgstr ""
-#. g*$x
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2256,7 +2030,6 @@ msgctxt ""
msgid "Use Outer Join syntax '{OJ }'"
msgstr ""
-#. 6AM.
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2266,7 +2039,6 @@ msgctxt ""
msgid "Ignore the privileges from the database driver"
msgstr ""
-#. 3u}1
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2276,7 +2048,6 @@ msgctxt ""
msgid "Replace named parameters with '?'"
msgstr ""
-#. 5d?c
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2286,7 +2057,6 @@ msgctxt ""
msgid "Display version columns (when available)"
msgstr ""
-#. {~yG
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2296,7 +2066,6 @@ msgctxt ""
msgid "Use catalog name in SELECT statements"
msgstr ""
-#. aF\2
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2306,7 +2075,6 @@ msgctxt ""
msgid "Use schema name in SELECT statements"
msgstr ""
-#. hQP1
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2316,7 +2084,6 @@ msgctxt ""
msgid "Create index with ASC or DESC statement"
msgstr ""
-#. }Li9
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2326,7 +2093,6 @@ msgctxt ""
msgid "End text lines with CR+LF"
msgstr ""
-#. \h1o
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2336,7 +2102,6 @@ msgctxt ""
msgid "Ignore currency field information"
msgstr ""
-#. xb9,
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2346,7 +2111,6 @@ msgctxt ""
msgid "Form data input checks for required fields"
msgstr ""
-#. ^L^J
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2356,7 +2120,6 @@ msgctxt ""
msgid "Use ODBC conformant date/time literals"
msgstr ""
-#. rH;A
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2366,7 +2129,6 @@ msgctxt ""
msgid "Supports primary keys"
msgstr ""
-#. el(|
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2376,7 +2138,6 @@ msgctxt ""
msgid "Respect the result set type from the database driver"
msgstr ""
-#. RaMX
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2386,7 +2147,6 @@ msgctxt ""
msgid "Default"
msgstr ""
-#. j(P5
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2396,7 +2156,6 @@ msgctxt ""
msgid "SQL"
msgstr ""
-#. E[lr
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2406,7 +2165,6 @@ msgctxt ""
msgid "Mixed"
msgstr ""
-#. ;-|W
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2416,7 +2174,6 @@ msgctxt ""
msgid "MS Access"
msgstr ""
-#. V%%y
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2426,7 +2183,6 @@ msgctxt ""
msgid "Comparison of Boolean values"
msgstr ""
-#. .4_P
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2436,7 +2192,6 @@ msgctxt ""
msgid "Rows to scan column types"
msgstr ""
-#. Hgyf
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2446,7 +2201,6 @@ msgctxt ""
msgid "Settings"
msgstr ""
-#. V.?p
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2456,7 +2210,6 @@ msgctxt ""
msgid "Re~trieve generated values"
msgstr ""
-#. ?q57
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2466,7 +2219,6 @@ msgctxt ""
msgid "~Auto-increment statement"
msgstr ""
-#. jUJD
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2476,7 +2228,6 @@ msgctxt ""
msgid "~Query of generated values"
msgstr ""
-#. L`U^
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2486,7 +2237,6 @@ msgctxt ""
msgid "Generated Values"
msgstr ""
-#. _B5}
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2496,7 +2246,6 @@ msgctxt ""
msgid "Special Settings"
msgstr ""
-#. 2D^.
#: advancedsettings.src
msgctxt ""
"advancedsettings.src\n"
@@ -2505,7 +2254,6 @@ msgctxt ""
msgid "Advanced Settings"
msgstr ""
-#. ^ujX
#: sqlmessage.src
#, fuzzy
msgctxt ""
@@ -2516,7 +2264,6 @@ msgctxt ""
msgid "Details"
msgstr "جزئیات"
-#. U.*d
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2526,7 +2273,6 @@ msgctxt ""
msgid "Error ~list:"
msgstr ""
-#. ]9\m
#: sqlmessage.src
#, fuzzy
msgctxt ""
@@ -2537,7 +2283,6 @@ msgctxt ""
msgid "~Description:"
msgstr "وضاحت:"
-#. {C_X
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2547,7 +2292,6 @@ msgctxt ""
msgid "SQL Status"
msgstr ""
-#. 28;^
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2557,7 +2301,6 @@ msgctxt ""
msgid "Error code"
msgstr ""
-#. sZn`
#: sqlmessage.src
#, fuzzy
msgctxt ""
@@ -2567,7 +2310,6 @@ msgctxt ""
msgid "%PRODUCTNAME Base"
msgstr "%PRODUCTNAME ٹاسک"
-#. u$#$
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2576,7 +2318,6 @@ msgctxt ""
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 ""
-#. mh$.
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2585,7 +2326,6 @@ msgctxt ""
msgid "Error"
msgstr ""
-#. k-g!
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2594,7 +2334,6 @@ msgctxt ""
msgid "Warning"
msgstr ""
-#. =`Tc
#: sqlmessage.src
msgctxt ""
"sqlmessage.src\n"
@@ -2603,7 +2342,6 @@ msgctxt ""
msgid "Information"
msgstr ""
-#. x=e|
#: sqlmessage.src
#, fuzzy
msgctxt ""
@@ -2613,7 +2351,6 @@ msgctxt ""
msgid "Details"
msgstr "جزئیات"
-#. KI/V
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2622,7 +2359,6 @@ msgctxt ""
msgid "Path to the dBASE files"
msgstr ""
-#. 1C(o
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2631,7 +2367,6 @@ msgctxt ""
msgid "Path to the text files"
msgstr ""
-#. )_e!
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2640,7 +2375,6 @@ msgctxt ""
msgid "Path to the spreadsheet document"
msgstr ""
-#. 5UGP
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2649,7 +2383,6 @@ msgctxt ""
msgid "Name of the ODBC data source on your system"
msgstr ""
-#. 4Gf-
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2658,7 +2391,6 @@ msgctxt ""
msgid "Name of the MySQL database"
msgstr ""
-#. QdI$
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2667,7 +2399,6 @@ msgctxt ""
msgid "Name of the Oracle database"
msgstr ""
-#. b%J#
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2676,7 +2407,6 @@ msgctxt ""
msgid "Microsoft Access database file"
msgstr ""
-#. vdjy
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2685,7 +2415,6 @@ msgctxt ""
msgid "No more settings are necessary. To verify that the connection is working, click the '%test' button."
msgstr ""
-#. C^HW
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2694,7 +2423,6 @@ msgctxt ""
msgid "Datasource URL"
msgstr ""
-#. Lbcq
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2703,7 +2431,6 @@ msgctxt ""
msgid "~Host name"
msgstr ""
-#. SrR0
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2712,7 +2439,6 @@ msgctxt ""
msgid "~Mozilla profile name"
msgstr ""
-#. Rd0$
#: AutoControls.src
msgctxt ""
"AutoControls.src\n"
@@ -2721,7 +2447,6 @@ msgctxt ""
msgid "~Thunderbird profile name"
msgstr ""
-#. P#xG
#: dbfindex.src
msgctxt ""
"dbfindex.src\n"
@@ -2731,7 +2456,6 @@ msgctxt ""
msgid "~Table"
msgstr ""
-#. qTrl
#: dbfindex.src
msgctxt ""
"dbfindex.src\n"
@@ -2741,7 +2465,6 @@ msgctxt ""
msgid "Assignment"
msgstr ""
-#. _=:Y
#: dbfindex.src
msgctxt ""
"dbfindex.src\n"
@@ -2751,7 +2474,6 @@ msgctxt ""
msgid "T~able indexes"
msgstr ""
-#. ,HVL
#: dbfindex.src
msgctxt ""
"dbfindex.src\n"
@@ -2761,7 +2483,6 @@ msgctxt ""
msgid "~Free indexes"
msgstr ""
-#. =VnW
#: dbfindex.src
msgctxt ""
"dbfindex.src\n"
@@ -2770,7 +2491,6 @@ msgctxt ""
msgid "Indexes"
msgstr ""
-#. lwB5
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2780,7 +2500,6 @@ msgctxt ""
msgid "SQL command"
msgstr ""
-#. R@PQ
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2790,7 +2509,6 @@ msgctxt ""
msgid "Command to execute"
msgstr ""
-#. #bq3
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2800,7 +2518,6 @@ msgctxt ""
msgid "Show output of \"select\" statements"
msgstr ""
-#. QoyE
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2810,7 +2527,6 @@ msgctxt ""
msgid "Execute"
msgstr ""
-#. Hqn@
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2820,7 +2536,6 @@ msgctxt ""
msgid "Previous commands"
msgstr ""
-#. SP#3
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2830,7 +2545,6 @@ msgctxt ""
msgid "Status"
msgstr ""
-#. H(_C
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2840,7 +2554,6 @@ msgctxt ""
msgid "Output"
msgstr ""
-#. opUu
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2850,7 +2563,6 @@ msgctxt ""
msgid "Close"
msgstr ""
-#. 2b!X
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2859,7 +2571,6 @@ msgctxt ""
msgid "Execute SQL Statement"
msgstr ""
-#. .qQZ
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2868,7 +2579,6 @@ msgctxt ""
msgid "Command successfully executed."
msgstr ""
-#. ^@na
#: directsql.src
msgctxt ""
"directsql.src\n"
@@ -2877,7 +2587,6 @@ msgctxt ""
msgid "The connection to the database has been lost. This dialog will be closed."
msgstr ""
-#. Vu5}
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2887,7 +2596,6 @@ msgctxt ""
msgid "ascending"
msgstr ""
-#. 7KG$
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2897,7 +2605,6 @@ msgctxt ""
msgid "descending"
msgstr ""
-#. ;|C!
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2907,7 +2614,6 @@ msgctxt ""
msgid "ascending"
msgstr ""
-#. !9O5
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2917,7 +2623,6 @@ msgctxt ""
msgid "descending"
msgstr ""
-#. .xG#
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2927,7 +2632,6 @@ msgctxt ""
msgid "ascending"
msgstr ""
-#. J@T?
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2937,7 +2641,6 @@ msgctxt ""
msgid "descending"
msgstr ""
-#. Ci!@
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2947,7 +2650,6 @@ msgctxt ""
msgid "Field name"
msgstr ""
-#. /sG1
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2957,7 +2659,6 @@ msgctxt ""
msgid "and then"
msgstr ""
-#. I3/[
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2967,7 +2668,6 @@ msgctxt ""
msgid "and then"
msgstr ""
-#. Cy)e
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2977,7 +2677,6 @@ msgctxt ""
msgid "Operator"
msgstr ""
-#. Sd%+
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2987,7 +2686,6 @@ msgctxt ""
msgid "Order"
msgstr ""
-#. Qyn7
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -2997,7 +2695,6 @@ msgctxt ""
msgid "Sort order"
msgstr ""
-#. pN.P
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -3007,7 +2704,6 @@ msgctxt ""
msgid "<none>"
msgstr ""
-#. 2Cd\
#: queryorder.src
msgctxt ""
"queryorder.src\n"
@@ -3016,7 +2712,6 @@ msgctxt ""
msgid "Sort Order"
msgstr ""
-#. 3k+d
#: dlgattr.src
msgctxt ""
"dlgattr.src\n"
@@ -3026,7 +2721,6 @@ msgctxt ""
msgid "Bac~k"
msgstr ""
-#. b?cs
#: dlgattr.src
msgctxt ""
"dlgattr.src\n"
@@ -3036,7 +2730,6 @@ msgctxt ""
msgid "Font"
msgstr ""
-#. 2OM{
#: dlgattr.src
msgctxt ""
"dlgattr.src\n"
@@ -3046,7 +2739,6 @@ msgctxt ""
msgid "Format"
msgstr ""
-#. 2pg9
#: dlgattr.src
msgctxt ""
"dlgattr.src\n"
@@ -3056,7 +2748,6 @@ msgctxt ""
msgid "Alignment"
msgstr ""
-#. Ph37
#: dlgattr.src
msgctxt ""
"dlgattr.src\n"
@@ -3066,7 +2757,6 @@ msgctxt ""
msgid "Table Format"
msgstr ""
-#. rxJX
#: dlgattr.src
msgctxt ""
"dlgattr.src\n"
@@ -3075,7 +2765,6 @@ msgctxt ""
msgid "Field Format"
msgstr ""
-#. c@0H
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3085,7 +2774,6 @@ msgctxt ""
msgid "Use catalog for file-based databases"
msgstr ""
-#. ^ZGR
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3095,7 +2783,6 @@ msgctxt ""
msgid "Connection Settings"
msgstr ""
-#. ejW]
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3105,7 +2792,6 @@ msgctxt ""
msgid "~Host name"
msgstr ""
-#. DX0)
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3115,7 +2801,6 @@ msgctxt ""
msgid "~Port number"
msgstr ""
-#. E=m_
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3125,7 +2810,6 @@ msgctxt ""
msgid "Advanced Properties"
msgstr ""
-#. XEmD
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3135,7 +2819,6 @@ msgctxt ""
msgid "Additional Settings"
msgstr ""
-#. L=D~
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3145,7 +2828,6 @@ msgctxt ""
msgid "Connection settings"
msgstr ""
-#. ]q!n
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3154,7 +2836,6 @@ msgctxt ""
msgid "Database properties"
msgstr ""
-#. pRGW
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3163,7 +2844,6 @@ msgctxt ""
msgid "Database properties"
msgstr ""
-#. =Pu^
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3173,7 +2853,6 @@ msgctxt ""
msgid "Welcome to the %PRODUCTNAME Database Wizard"
msgstr ""
-#. })5x
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3183,7 +2862,6 @@ msgctxt ""
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 ""
-#. /f4U
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3193,7 +2871,6 @@ msgctxt ""
msgid "What do you want to do?"
msgstr ""
-#. ^h6]
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3203,7 +2880,6 @@ msgctxt ""
msgid "Create a n~ew database"
msgstr ""
-#. ,hb*
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3213,7 +2889,6 @@ msgctxt ""
msgid "Open an existing database ~file"
msgstr ""
-#. `Xr@
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3223,7 +2898,6 @@ msgctxt ""
msgid "Recently used"
msgstr ""
-#. R-kZ
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3233,7 +2907,6 @@ msgctxt ""
msgid "Connect to an e~xisting database"
msgstr ""
-#. 9=#0
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3243,7 +2916,6 @@ msgctxt ""
msgid "Select the type of database to which you want to establish a connection."
msgstr ""
-#. N@Z\
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3253,7 +2925,6 @@ msgctxt ""
msgid "Database ~type "
msgstr ""
-#. 0:5]
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3263,7 +2934,6 @@ msgctxt ""
msgid "Database"
msgstr ""
-#. kO@$
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3276,7 +2946,6 @@ msgid ""
"The new settings you make will overwrite your existing settings."
msgstr ""
-#. e~n0
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3286,7 +2955,6 @@ msgctxt ""
msgid "MySQL"
msgstr ""
-#. *it,
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3296,7 +2964,6 @@ msgctxt ""
msgid "Data Source Properties: #"
msgstr ""
-#. w0gU
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3306,7 +2973,6 @@ msgctxt ""
msgid "Could not load the program library #lib# or it is corrupted. The ODBC data source selection is not available."
msgstr ""
-#. f^dK
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3318,7 +2984,6 @@ msgid ""
"You are allowed to change the settings, but you probably will not be able to connect to the database."
msgstr ""
-#. C*#+
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3327,7 +2992,6 @@ msgctxt ""
msgid "General"
msgstr ""
-#. 0NKa
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3337,7 +3001,6 @@ msgctxt ""
msgid "Optional settings"
msgstr ""
-#. 3aG,
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3347,7 +3010,6 @@ msgctxt ""
msgid "Display deleted records as well"
msgstr ""
-#. 5ERl
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3357,7 +3019,6 @@ msgctxt ""
msgid "Note: When deleted, and thus inactive, records are displayed, you will not be able to delete records from the data source."
msgstr ""
-#. b$A0
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3367,7 +3028,6 @@ msgctxt ""
msgid "Indexes..."
msgstr ""
-#. #o]#
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3377,7 +3037,6 @@ msgctxt ""
msgid "Optional Settings"
msgstr ""
-#. F{_:
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3387,7 +3046,6 @@ msgctxt ""
msgid "ODBC ~options"
msgstr ""
-#. %()v
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3397,7 +3055,6 @@ msgctxt ""
msgid "MySQL JDBC d~river class"
msgstr ""
-#. ~|U$
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3407,7 +3064,6 @@ msgctxt ""
msgid "Test class"
msgstr ""
-#. hahS
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3417,7 +3073,6 @@ msgctxt ""
msgid "User authentication"
msgstr ""
-#. Pbb,
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3427,7 +3082,6 @@ msgctxt ""
msgid "~User name"
msgstr ""
-#. ~Txm
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3437,7 +3091,6 @@ msgctxt ""
msgid "Password required"
msgstr ""
-#. (Av;
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3447,7 +3100,6 @@ msgctxt ""
msgid "Oracle JDBC d~river class"
msgstr ""
-#. !fXk
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3457,7 +3109,6 @@ msgctxt ""
msgid "Test class"
msgstr ""
-#. g!\o
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3467,7 +3118,6 @@ msgctxt ""
msgid "Connection Settings"
msgstr ""
-#. =r!-
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3477,7 +3127,6 @@ msgctxt ""
msgid "~Base DN"
msgstr ""
-#. B\Ag
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3487,7 +3136,6 @@ msgctxt ""
msgid "Use secure connection (SSL)"
msgstr ""
-#. WpTf
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3497,7 +3145,6 @@ msgctxt ""
msgid "~Port number"
msgstr ""
-#. GQcj
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3507,7 +3154,6 @@ msgctxt ""
msgid "Maximum number of ~records"
msgstr ""
-#. =`Pn
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3517,7 +3163,6 @@ msgctxt ""
msgid "~Hostname"
msgstr ""
-#. 5!kk
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3527,7 +3172,6 @@ msgctxt ""
msgid "~Port number"
msgstr ""
-#. /w7`
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3537,7 +3181,6 @@ msgctxt ""
msgid "~Driver settings"
msgstr ""
-#. ;`uA
#: dbadmin.src
msgctxt ""
"dbadmin.src\n"
@@ -3546,7 +3189,6 @@ msgctxt ""
msgid "Please choose 'Connect to an existing database' to connect to an existing database instead."
msgstr ""
-#. v)e%
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3556,7 +3198,6 @@ msgctxt ""
msgid "Please enter a name for the object to be created:"
msgstr ""
-#. c3eC
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3566,7 +3207,6 @@ msgctxt ""
msgid "~Catalog"
msgstr ""
-#. Z0U.
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3576,7 +3216,6 @@ msgctxt ""
msgid "~Schema"
msgstr ""
-#. `D?l
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3586,7 +3225,6 @@ msgctxt ""
msgid "~Table Name"
msgstr ""
-#. e[Yw
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3596,7 +3234,6 @@ msgctxt ""
msgid "~Name of table view"
msgstr ""
-#. ape!
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3606,7 +3243,6 @@ msgctxt ""
msgid "~Query name"
msgstr ""
-#. j1j;
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3616,7 +3252,6 @@ msgctxt ""
msgid "Rename to"
msgstr ""
-#. 7+Kr
#: dlgsave.src
msgctxt ""
"dlgsave.src\n"
@@ -3626,7 +3261,6 @@ msgctxt ""
msgid "Insert as"
msgstr ""
-#. sloO
#: dlgsave.src
#, fuzzy
msgctxt ""
@@ -3636,7 +3270,6 @@ msgctxt ""
msgid "Save As"
msgstr "محفوظ بطور"
-#. n]DW
#: textconnectionsettings.src
msgctxt ""
"textconnectionsettings.src\n"
diff --git a/source/ur/dbaccess/source/ui/inc.po b/source/ur/dbaccess/source/ui/inc.po
index 610194e6d66..e628c1b44ce 100644
--- a/source/ur/dbaccess/source/ui/inc.po
+++ b/source/ur/dbaccess/source/ui/inc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. y~aA
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Refresh"
msgstr ""
-#. .g*Q
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "New ~View Design"
msgstr ""
-#. Z39f
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "New ~Table Design"
msgstr ""
-#. xZ!m
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -50,7 +46,6 @@ msgctxt ""
msgid "Query AutoPilot..."
msgstr ""
-#. gmw^
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -59,7 +54,6 @@ msgctxt ""
msgid "New ~Query (Design View)"
msgstr ""
-#. XmK)
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -68,7 +62,6 @@ msgctxt ""
msgid "~Edit Query"
msgstr ""
-#. {Vbo
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -77,7 +70,6 @@ msgctxt ""
msgid "New Query (~SQL View)"
msgstr ""
-#. hUMy
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -86,7 +78,6 @@ msgctxt ""
msgid "Edit..."
msgstr ""
-#. KH%8
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -95,7 +86,6 @@ msgctxt ""
msgid "Column ~Width..."
msgstr ""
-#. B3ba
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
@@ -104,7 +94,6 @@ msgctxt ""
msgid "Report Wizard..."
msgstr ""
-#. #v:m
#: toolbox_tmpl.hrc
msgctxt ""
"toolbox_tmpl.hrc\n"
diff --git a/source/ur/dbaccess/source/ui/misc.po b/source/ur/dbaccess/source/ui/misc.po
index 7a6af6c707e..7dc0248d482 100644
--- a/source/ur/dbaccess/source/ui/misc.po
+++ b/source/ur/dbaccess/source/ui/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. kTJJ
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Apply columns"
msgstr ""
-#. OCCW
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "Type formatting"
msgstr ""
-#. oYJb
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "The following fields have already been set as primary keys:\n"
msgstr ""
-#. ?DZP
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -50,7 +46,6 @@ msgctxt ""
msgid "Assign columns"
msgstr ""
-#. {.7a
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "~Help"
msgstr ""
-#. ?{e|
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -70,7 +64,6 @@ msgctxt ""
msgid "~Cancel"
msgstr ""
-#. EJ$?
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -80,7 +73,6 @@ msgctxt ""
msgid "< ~Back"
msgstr ""
-#. XLgB
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -90,7 +82,6 @@ msgctxt ""
msgid "~Next>"
msgstr ""
-#. !Ss)
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -100,7 +91,6 @@ msgctxt ""
msgid "C~reate"
msgstr ""
-#. 5}TZ
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -109,7 +99,6 @@ msgctxt ""
msgid "Copy RTF Table"
msgstr ""
-#. Nhe\
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -119,7 +108,6 @@ msgctxt ""
msgid "Existing columns"
msgstr ""
-#. E#D^
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -129,7 +117,6 @@ msgctxt ""
msgid "Column information"
msgstr ""
-#. ,9{H
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -139,7 +126,6 @@ msgctxt ""
msgid "Automatic type recognition"
msgstr ""
-#. `NE6
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -149,7 +135,6 @@ msgctxt ""
msgid "Lines (ma~x)"
msgstr ""
-#. $+=1
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -159,7 +144,6 @@ msgctxt ""
msgid "Primary Key"
msgstr ""
-#. AX+?
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -169,7 +153,6 @@ msgctxt ""
msgid "Source table: \n"
msgstr ""
-#. hf?!
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -179,7 +162,6 @@ msgctxt ""
msgid "Destination table: \n"
msgstr ""
-#. {O8B
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -189,7 +171,6 @@ msgctxt ""
msgid "~All"
msgstr ""
-#. ZWa*
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -199,7 +180,6 @@ msgctxt ""
msgid "Non~e"
msgstr ""
-#. gcfF
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -209,7 +189,6 @@ msgctxt ""
msgid "Ta~ble name"
msgstr ""
-#. !JEQ
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -219,7 +198,6 @@ msgctxt ""
msgid "Options"
msgstr ""
-#. QOk;
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -229,7 +207,6 @@ msgctxt ""
msgid "De~finition and data"
msgstr ""
-#. 6zkh
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -239,7 +216,6 @@ msgctxt ""
msgid "Def~inition"
msgstr ""
-#. VRP*
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -249,7 +225,6 @@ msgctxt ""
msgid "A~s table view"
msgstr ""
-#. M?|_
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -259,7 +234,6 @@ msgctxt ""
msgid "Append ~data"
msgstr ""
-#. -au[
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -269,7 +243,6 @@ msgctxt ""
msgid "Use first ~line as column names"
msgstr ""
-#. 09rg
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -279,7 +252,6 @@ msgctxt ""
msgid "Crea~te primary key"
msgstr ""
-#. =79|
#: WizardPages.src
#, fuzzy
msgctxt ""
@@ -290,7 +262,6 @@ msgctxt ""
msgid "Name"
msgstr "~نام"
-#. *`p=
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -299,7 +270,6 @@ msgctxt ""
msgid "Copy table"
msgstr ""
-#. )^(0
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -308,7 +278,6 @@ msgctxt ""
msgid "Copy table"
msgstr ""
-#. +^3G
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -317,7 +286,6 @@ msgctxt ""
msgid "This table name is not valid in the current database."
msgstr ""
-#. zpA1
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -326,7 +294,6 @@ msgctxt ""
msgid "Choose the option 'Append data' on the first page to append data to an existing table."
msgstr ""
-#. u#s2
#: WizardPages.src
msgctxt ""
"WizardPages.src\n"
@@ -335,7 +302,6 @@ msgctxt ""
msgid "Please change the table name. It is too long."
msgstr ""
-#. Q1z5
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -345,7 +311,6 @@ msgctxt ""
msgid "System"
msgstr ""
-#. UEPj
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -354,7 +319,6 @@ msgctxt ""
msgid "Error during creation"
msgstr ""
-#. oM]T
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -363,7 +327,6 @@ msgctxt ""
msgid "An unexpected error occurred. The operation could not be performed."
msgstr ""
-#. ?a9N
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -372,7 +335,6 @@ msgctxt ""
msgid "The document \"$file$\" could not be opened."
msgstr ""
-#. W~t+
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -381,7 +343,6 @@ msgctxt ""
msgid "The table cannot be deleted because the database connection does not support this."
msgstr ""
-#. /vzc
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -390,7 +351,6 @@ msgctxt ""
msgid "~All"
msgstr ""
-#. ;!wA
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -399,7 +359,6 @@ msgctxt ""
msgid "Undo:"
msgstr ""
-#. @QFQ
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -408,7 +367,6 @@ msgctxt ""
msgid "Redo:"
msgstr ""
-#. 4+;Y
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -417,7 +375,6 @@ msgctxt ""
msgid "No corresponding column type could be found for column '#1'."
msgstr ""
-#. 71C1
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -426,7 +383,6 @@ msgctxt ""
msgid "The file \"$file$\" does not exist."
msgstr ""
-#. 8#h)
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -435,7 +391,6 @@ msgctxt ""
msgid "Warnings were encountered while connecting to the data source. Press \"$buttontext$\" to view them."
msgstr ""
-#. Bori
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
@@ -446,7 +401,6 @@ msgid ""
"Please enter another name."
msgstr ""
-#. X@3n
#: dbumiscres.src
msgctxt ""
"dbumiscres.src\n"
diff --git a/source/ur/dbaccess/source/ui/querydesign.po b/source/ur/dbaccess/source/ui/querydesign.po
index 5cca0d39c4b..6be5f3eeb87 100644
--- a/source/ur/dbaccess/source/ui/querydesign.po
+++ b/source/ur/dbaccess/source/ui/querydesign.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. rJ%%
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Options"
msgstr ""
-#. =9+%
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "~Type"
msgstr ""
-#. \iJy
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "Inner join"
msgstr ""
-#. dVrr
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "Left join"
msgstr ""
-#. SsFj
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -64,7 +59,6 @@ msgctxt ""
msgid "Right join"
msgstr ""
-#. 5HYb
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -74,7 +68,6 @@ msgctxt ""
msgid "Full (outer) join"
msgstr ""
-#. v7q7
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -84,7 +77,6 @@ msgctxt ""
msgid "Cross join"
msgstr ""
-#. k**g
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -94,7 +86,6 @@ msgctxt ""
msgid "Natural"
msgstr ""
-#. 46q*
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -104,7 +95,6 @@ msgctxt ""
msgid "Tables involved"
msgstr ""
-#. GK=\
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -114,7 +104,6 @@ msgctxt ""
msgid "Fields involved"
msgstr ""
-#. $;xp
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -123,7 +112,6 @@ msgctxt ""
msgid "Join Properties"
msgstr ""
-#. _a)x
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -132,7 +120,6 @@ msgctxt ""
msgid "Please note that some databases may not support this join type."
msgstr ""
-#. [gm?
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -141,7 +128,6 @@ msgctxt ""
msgid "Includes only records for which the contents of the related fields of both tables are identical."
msgstr ""
-#. X2Gm
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -150,7 +136,6 @@ msgctxt ""
msgid "Contains ALL records from table '%1' but only records from table '%2' where the values in the related fields are matching."
msgstr ""
-#. 4zbd
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -159,7 +144,6 @@ msgctxt ""
msgid "Contains ALL records from '%1' and from '%2'."
msgstr ""
-#. kpOB
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -168,7 +152,6 @@ msgctxt ""
msgid "Contains the cartesian product of ALL records from '%1' and from '%2'."
msgstr ""
-#. PD$H
#: querydlg.src
msgctxt ""
"querydlg.src\n"
@@ -177,7 +160,6 @@ msgctxt ""
msgid "Contains only one column for each pair of equally-named columns from '%1' and from '%2'."
msgstr ""
-#. 0-qf
#: query.src
msgctxt ""
"query.src\n"
@@ -186,7 +168,6 @@ msgctxt ""
msgid "Add Table Window"
msgstr ""
-#. uig%
#: query.src
msgctxt ""
"query.src\n"
@@ -195,7 +176,6 @@ msgctxt ""
msgid "Move table window"
msgstr ""
-#. 8WpA
#: query.src
msgctxt ""
"query.src\n"
@@ -204,7 +184,6 @@ msgctxt ""
msgid "Insert Join"
msgstr ""
-#. sG6M
#: query.src
msgctxt ""
"query.src\n"
@@ -213,7 +192,6 @@ msgctxt ""
msgid "Delete Join"
msgstr ""
-#. L+^W
#: query.src
msgctxt ""
"query.src\n"
@@ -222,7 +200,6 @@ msgctxt ""
msgid "Resize table window"
msgstr ""
-#. D^BY
#: query.src
msgctxt ""
"query.src\n"
@@ -231,7 +208,6 @@ msgctxt ""
msgid "Delete Column"
msgstr ""
-#. AW%^
#: query.src
msgctxt ""
"query.src\n"
@@ -240,7 +216,6 @@ msgctxt ""
msgid "Move column"
msgstr ""
-#. nOk3
#: query.src
msgctxt ""
"query.src\n"
@@ -249,7 +224,6 @@ msgctxt ""
msgid "Add Column"
msgstr ""
-#. )UDE
#: query.src
msgctxt ""
"query.src\n"
@@ -258,7 +232,6 @@ msgctxt ""
msgid "Invalid expression, table '$name$' does not exist."
msgstr ""
-#. .W\\
#: query.src
msgctxt ""
"query.src\n"
@@ -267,7 +240,6 @@ msgctxt ""
msgid "Invalid expression, field name '$name$' does not exist."
msgstr ""
-#. a1mP
#: query.src
msgctxt ""
"query.src\n"
@@ -276,7 +248,6 @@ msgctxt ""
msgid "The query covers #num# tables. The selected database type, however, can only process a maximum of #maxnum# table(s) per statement."
msgstr ""
-#. 3I|w
#: query.src
msgctxt ""
"query.src\n"
@@ -285,7 +256,6 @@ msgctxt ""
msgid "Delete Table Window"
msgstr ""
-#. wI.O
#: query.src
msgctxt ""
"query.src\n"
@@ -294,7 +264,6 @@ msgctxt ""
msgid "Edit Column Description"
msgstr ""
-#. krXD
#: query.src
msgctxt ""
"query.src\n"
@@ -303,7 +272,6 @@ msgctxt ""
msgid "Adjust column width"
msgstr ""
-#. /HIh
#: query.src
msgctxt ""
"query.src\n"
@@ -312,7 +280,6 @@ msgctxt ""
msgid "(not sorted);ascending;descending"
msgstr ""
-#. W|zJ
#: query.src
msgctxt ""
"query.src\n"
@@ -321,7 +288,6 @@ msgctxt ""
msgid "(no function);Group"
msgstr ""
-#. bG9n
#: query.src
msgctxt ""
"query.src\n"
@@ -330,7 +296,6 @@ msgctxt ""
msgid "(no table)"
msgstr ""
-#. )!;O
#: query.src
msgctxt ""
"query.src\n"
@@ -339,7 +304,6 @@ msgctxt ""
msgid "The database only supports sorting for visible fields."
msgstr ""
-#. Fh8`
#: query.src
msgctxt ""
"query.src\n"
@@ -349,7 +313,6 @@ msgctxt ""
msgid "Functions"
msgstr ""
-#. 7*N!
#: query.src
msgctxt ""
"query.src\n"
@@ -359,7 +322,6 @@ msgctxt ""
msgid "Table Name"
msgstr ""
-#. 4toX
#: query.src
msgctxt ""
"query.src\n"
@@ -369,7 +331,6 @@ msgctxt ""
msgid "Alias"
msgstr ""
-#. )b[Y
#: query.src
msgctxt ""
"query.src\n"
@@ -379,7 +340,6 @@ msgctxt ""
msgid "Distinct Values"
msgstr ""
-#. :]VY
#: query.src
msgctxt ""
"query.src\n"
@@ -388,7 +348,6 @@ msgctxt ""
msgid "Field;Alias;Table;Sort;Visible;Function;Criterion;Or;Or"
msgstr ""
-#. ukK~
#: query.src
msgctxt ""
"query.src\n"
@@ -397,7 +356,6 @@ msgctxt ""
msgid "There are too many columns."
msgstr ""
-#. XKI9
#: query.src
msgctxt ""
"query.src\n"
@@ -406,7 +364,6 @@ msgctxt ""
msgid "A condition cannot be applied to field [*]"
msgstr ""
-#. 3f`+
#: query.src
msgctxt ""
"query.src\n"
@@ -415,7 +372,6 @@ msgctxt ""
msgid "The SQL statement created is too long."
msgstr ""
-#. 4({}
#: query.src
msgctxt ""
"query.src\n"
@@ -424,7 +380,6 @@ msgctxt ""
msgid "Query is too complex"
msgstr ""
-#. qiv2
#: query.src
msgctxt ""
"query.src\n"
@@ -433,7 +388,6 @@ msgctxt ""
msgid "Nothing has been selected."
msgstr ""
-#. =0zi
#: query.src
msgctxt ""
"query.src\n"
@@ -442,7 +396,6 @@ msgctxt ""
msgid "Too many search criteria"
msgstr ""
-#. r~B!
#: query.src
msgctxt ""
"query.src\n"
@@ -451,7 +404,6 @@ msgctxt ""
msgid "SQL syntax error"
msgstr ""
-#. iOY@
#: query.src
msgctxt ""
"query.src\n"
@@ -460,7 +412,6 @@ msgctxt ""
msgid "[*] cannot be used as a sort criterion."
msgstr ""
-#. ;2~e
#: query.src
msgctxt ""
"query.src\n"
@@ -469,7 +420,6 @@ msgctxt ""
msgid "There are too many tables."
msgstr ""
-#. `ItO
#: query.src
msgctxt ""
"query.src\n"
@@ -478,7 +428,6 @@ msgctxt ""
msgid "The statement will not be applied when querying in the SQL dialect of the database."
msgstr ""
-#. /)~O
#: query.src
msgctxt ""
"query.src\n"
@@ -487,7 +436,6 @@ msgctxt ""
msgid "Field name not found or not unique"
msgstr ""
-#. Es13
#: query.src
msgctxt ""
"query.src\n"
@@ -496,7 +444,6 @@ msgctxt ""
msgid "Join could not be processed"
msgstr ""
-#. F{b/
#: query.src
msgctxt ""
"query.src\n"
@@ -505,7 +452,6 @@ msgctxt ""
msgid "Syntax error in SQL statement"
msgstr ""
-#. #D4O
#: query.src
msgctxt ""
"query.src\n"
@@ -514,7 +460,6 @@ msgctxt ""
msgid "This database does not support table views."
msgstr ""
-#. 05;K
#: query.src
msgctxt ""
"query.src\n"
@@ -523,7 +468,6 @@ msgctxt ""
msgid "This database does not support altering of existing table views."
msgstr ""
-#. Xae+
#: query.src
msgctxt ""
"query.src\n"
@@ -532,7 +476,6 @@ msgctxt ""
msgid "Do you want to create a query instead?"
msgstr ""
-#. xN(!
#: query.src
msgctxt ""
"query.src\n"
@@ -541,7 +484,6 @@ msgctxt ""
msgid "No query could be created."
msgstr ""
-#. Dg/-
#: query.src
msgctxt ""
"query.src\n"
@@ -550,7 +492,6 @@ msgctxt ""
msgid "No query could be created because no fields were selected."
msgstr ""
-#. @Y.Y
#: query.src
msgctxt ""
"query.src\n"
@@ -559,7 +500,6 @@ msgctxt ""
msgid "The corresponding data source has been deleted. Therefore, data relevant to that data source cannot be saved."
msgstr ""
-#. 8C.r
#: query.src
msgctxt ""
"query.src\n"
@@ -568,7 +508,6 @@ msgctxt ""
msgid "The column '$name$' is unknown."
msgstr ""
-#. 5SB6
#: query.src
msgctxt ""
"query.src\n"
@@ -577,7 +516,6 @@ msgctxt ""
msgid "Columns can only be compared using '='."
msgstr ""
-#. q-oU
#: query.src
msgctxt ""
"query.src\n"
@@ -586,7 +524,6 @@ msgctxt ""
msgid "You must use a column name before 'LIKE'."
msgstr ""
-#. d0vF
#: query.src
msgctxt ""
"query.src\n"
@@ -595,7 +532,6 @@ msgctxt ""
msgid "The column could not be found. Please note that the database is case-sensitive."
msgstr ""
-#. 5v?A
#: query.src
msgctxt ""
"query.src\n"
@@ -604,7 +540,6 @@ msgctxt ""
msgid " - %PRODUCTNAME Base: Query Design"
msgstr ""
-#. %0im
#: query.src
msgctxt ""
"query.src\n"
@@ -614,7 +549,6 @@ msgid " - %PRODUCTNAME Base: View Design"
msgstr ""
#. For $object$, one of the values of the RSC_QUERY_OBJECT_TYPE resource will be inserted.
-#. Y-cb
#: query.src
msgctxt ""
"query.src\n"
@@ -626,7 +560,6 @@ msgid ""
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.
-#. Cw:+
#: query.src
msgctxt ""
"query.src\n"
@@ -636,7 +569,6 @@ 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.
-#. @bfe
#: query.src
msgctxt ""
"query.src\n"
@@ -645,7 +577,6 @@ msgctxt ""
msgid "$object$ will be opened in SQL view."
msgstr ""
-#. HAdD
#: query.src
msgctxt ""
"query.src\n"
@@ -655,7 +586,6 @@ msgctxt ""
msgid "The table view"
msgstr ""
-#. Nl{E
#: query.src
msgctxt ""
"query.src\n"
@@ -665,7 +595,6 @@ msgctxt ""
msgid "The query"
msgstr ""
-#. f\zj
#: query.src
msgctxt ""
"query.src\n"
@@ -675,7 +604,6 @@ msgctxt ""
msgid "The SQL statement"
msgstr ""
-#. y=%/
#: query.src
msgctxt ""
"query.src\n"
@@ -684,7 +612,6 @@ msgctxt ""
msgid "The query does not create a result set, and thus cannot be part of another query."
msgstr ""
-#. SIJ`
#: query.src
msgctxt ""
"query.src\n"
diff --git a/source/ur/dbaccess/source/ui/relationdesign.po b/source/ur/dbaccess/source/ui/relationdesign.po
index 7b574342242..1c6b8127507 100644
--- a/source/ur/dbaccess/source/ui/relationdesign.po
+++ b/source/ur/dbaccess/source/ui/relationdesign.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. hOZ_
#: relation.src
msgctxt ""
"relation.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "This relation already exists. Do you want to edit it or create a new one?"
msgstr ""
-#. o];n
#: relation.src
msgctxt ""
"relation.src\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "Edit..."
msgstr ""
-#. 1c[-
#: relation.src
msgctxt ""
"relation.src\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "Create..."
msgstr ""
-#. AoH_
#: relation.src
msgctxt ""
"relation.src\n"
@@ -50,7 +46,6 @@ msgctxt ""
msgid " - %PRODUCTNAME Base: Relation design"
msgstr ""
-#. )MM4
#: relation.src
msgctxt ""
"relation.src\n"
@@ -59,7 +54,6 @@ msgctxt ""
msgid "The database does not support relations."
msgstr ""
-#. NYJF
#: relation.src
msgctxt ""
"relation.src\n"
@@ -70,7 +64,6 @@ msgid ""
"Do you want to save the changes?"
msgstr ""
-#. #EzH
#: relation.src
msgctxt ""
"relation.src\n"
@@ -79,7 +72,6 @@ msgctxt ""
msgid "When you delete this table all corresponding relations will be deleted as well. Continue?"
msgstr ""
-#. {1NJ
#: relation.src
msgctxt ""
"relation.src\n"
diff --git a/source/ur/dbaccess/source/ui/tabledesign.po b/source/ur/dbaccess/source/ui/tabledesign.po
index e096e34e385..6c34ac4bb5f 100644
--- a/source/ur/dbaccess/source/ui/tabledesign.po
+++ b/source/ur/dbaccess/source/ui/tabledesign.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. +zNj
#: table.src
msgctxt ""
"table.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
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 ""
-#. |sU@
#: table.src
msgctxt ""
"table.src\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "Insert/remove primary key"
msgstr ""
-#. UI--
#: table.src
msgctxt ""
"table.src\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "Yes"
msgstr "جی "
-#. X9{a
#: table.src
msgctxt ""
"table.src\n"
@@ -50,7 +46,6 @@ msgctxt ""
msgid "No"
msgstr "نهی"
-#. ..-$
#: table.src
msgctxt ""
"table.src\n"
@@ -59,7 +54,6 @@ msgctxt ""
msgid "Ascending"
msgstr ""
-#. :+)e
#: table.src
msgctxt ""
"table.src\n"
@@ -68,7 +62,6 @@ msgctxt ""
msgid "Descending"
msgstr ""
-#. 5(BM
#: table.src
msgctxt ""
"table.src\n"
@@ -77,7 +70,6 @@ msgctxt ""
msgid "<none>"
msgstr ""
-#. =2Fw
#: table.src
msgctxt ""
"table.src\n"
@@ -86,7 +78,6 @@ msgctxt ""
msgid "Field name"
msgstr ""
-#. b!J7
#: table.src
msgctxt ""
"table.src\n"
@@ -95,7 +86,6 @@ msgctxt ""
msgid "Field Name"
msgstr ""
-#. Ke6E
#: table.src
msgctxt ""
"table.src\n"
@@ -104,7 +94,6 @@ msgctxt ""
msgid "Field ~type"
msgstr ""
-#. 3=e_
#: table.src
msgctxt ""
"table.src\n"
@@ -113,7 +102,6 @@ msgctxt ""
msgid "Field Type"
msgstr ""
-#. H%CY
#: table.src
msgctxt ""
"table.src\n"
@@ -122,7 +110,6 @@ msgctxt ""
msgid "Field length"
msgstr ""
-#. M[,x
#: table.src
msgctxt ""
"table.src\n"
@@ -131,7 +118,6 @@ msgctxt ""
msgid "Description"
msgstr "وضاحت"
-#. {oh-
#: table.src
msgctxt ""
"table.src\n"
@@ -140,7 +126,6 @@ msgctxt ""
msgid "Column Description"
msgstr ""
-#. #FSY
#: table.src
msgctxt ""
"table.src\n"
@@ -149,7 +134,6 @@ msgctxt ""
msgid "Input required"
msgstr ""
-#. A[jT
#: table.src
msgctxt ""
"table.src\n"
@@ -158,7 +142,6 @@ msgctxt ""
msgid "~AutoValue"
msgstr ""
-#. ,izf
#: table.src
msgctxt ""
"table.src\n"
@@ -167,7 +150,6 @@ msgctxt ""
msgid "Field Properties"
msgstr ""
-#. Wp+k
#: table.src
msgctxt ""
"table.src\n"
@@ -176,7 +158,6 @@ msgctxt ""
msgid "General"
msgstr ""
-#. X?RF
#: table.src
msgctxt ""
"table.src\n"
@@ -185,7 +166,6 @@ msgctxt ""
msgid "Description:"
msgstr "وضاحت:"
-#. v]`~
#: table.src
msgctxt ""
"table.src\n"
@@ -194,7 +174,6 @@ msgctxt ""
msgid "Table properties"
msgstr ""
-#. hCr$
#: table.src
msgctxt ""
"table.src\n"
@@ -203,7 +182,6 @@ msgctxt ""
msgid "The text you entered is not a list element. "
msgstr ""
-#. Z~\!
#: table.src
msgctxt ""
"table.src\n"
@@ -213,7 +191,6 @@ msgctxt ""
msgid "Insert Rows"
msgstr ""
-#. buHQ
#: table.src
msgctxt ""
"table.src\n"
@@ -223,7 +200,6 @@ msgctxt ""
msgid "Primary Key"
msgstr ""
-#. :tSG
#: table.src
msgctxt ""
"table.src\n"
@@ -232,7 +208,6 @@ msgctxt ""
msgid "Modify cell"
msgstr ""
-#. `87G
#: table.src
msgctxt ""
"table.src\n"
@@ -241,7 +216,6 @@ msgctxt ""
msgid "Delete row"
msgstr ""
-#. 6PCw
#: table.src
msgctxt ""
"table.src\n"
@@ -250,7 +224,6 @@ msgctxt ""
msgid "Modify field type"
msgstr ""
-#. of6E
#: table.src
msgctxt ""
"table.src\n"
@@ -259,7 +232,6 @@ msgctxt ""
msgid "Insert row"
msgstr ""
-#. gP#0
#: table.src
msgctxt ""
"table.src\n"
@@ -268,7 +240,6 @@ msgctxt ""
msgid "Insert new row"
msgstr ""
-#. O90e
#: table.src
msgctxt ""
"table.src\n"
@@ -277,7 +248,6 @@ msgctxt ""
msgid "Insert/remove primary key"
msgstr ""
-#. h)Dv
#: table.src
msgctxt ""
"table.src\n"
@@ -286,7 +256,6 @@ msgctxt ""
msgid "~Default value"
msgstr ""
-#. AHx$
#: table.src
msgctxt ""
"table.src\n"
@@ -295,7 +264,6 @@ msgctxt ""
msgid "~Entry required"
msgstr ""
-#. IM1C
#: table.src
msgctxt ""
"table.src\n"
@@ -304,7 +272,6 @@ msgctxt ""
msgid "~Length"
msgstr ""
-#. UMNU
#: table.src
msgctxt ""
"table.src\n"
@@ -313,7 +280,6 @@ msgctxt ""
msgid "~Type"
msgstr ""
-#. +E.l
#: table.src
msgctxt ""
"table.src\n"
@@ -322,7 +288,6 @@ msgctxt ""
msgid "~Length"
msgstr ""
-#. 6)Qn
#: table.src
msgctxt ""
"table.src\n"
@@ -331,7 +296,6 @@ msgctxt ""
msgid "Decimal ~places"
msgstr ""
-#. 3W;J
#: table.src
msgctxt ""
"table.src\n"
@@ -340,7 +304,6 @@ msgctxt ""
msgid "Format example"
msgstr ""
-#. pENt
#: table.src
msgctxt ""
"table.src\n"
@@ -351,7 +314,6 @@ msgid ""
"If the field is not to have a default value, select the empty string."
msgstr ""
-#. ;^|H
#: table.src
msgctxt ""
"table.src\n"
@@ -363,7 +325,6 @@ msgid ""
"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 ""
-#. 3}PH
#: table.src
msgctxt ""
"table.src\n"
@@ -372,7 +333,6 @@ msgctxt ""
msgid "Activate this option if this field cannot contain NULL values, i.e. the user must always enter data."
msgstr ""
-#. 7mL^
#: table.src
msgctxt ""
"table.src\n"
@@ -381,7 +341,6 @@ msgctxt ""
msgid "Enter the maximum text length permitted."
msgstr ""
-#. 7#=!
#: table.src
msgctxt ""
"table.src\n"
@@ -390,7 +349,6 @@ msgctxt ""
msgid "Enter the number format."
msgstr ""
-#. b1p*
#: table.src
msgctxt ""
"table.src\n"
@@ -403,7 +361,6 @@ msgid ""
"The value will be corrected accordingly when it exceeds the maximum for this database."
msgstr ""
-#. -^69
#: table.src
msgctxt ""
"table.src\n"
@@ -412,7 +369,6 @@ msgctxt ""
msgid "Specify the number of decimal places permitted in this field."
msgstr ""
-#. C%%|
#: table.src
msgctxt ""
"table.src\n"
@@ -421,7 +377,6 @@ msgctxt ""
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 ""
-#. Hqk$
#: table.src
msgctxt ""
"table.src\n"
@@ -430,7 +385,6 @@ msgctxt ""
msgid "This is where you determine the output format of the data."
msgstr ""
-#. [?XS
#: table.src
msgctxt ""
"table.src\n"
@@ -442,7 +396,6 @@ msgid ""
"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 ""
-#. .I\i
#: table.src
msgctxt ""
"table.src\n"
@@ -451,7 +404,6 @@ msgctxt ""
msgid "~..."
msgstr ""
-#. (WO0
#: table.src
msgctxt ""
"table.src\n"
@@ -460,7 +412,6 @@ msgctxt ""
msgid "The table cannot be saved because column name \"$column$\" was assigned twice."
msgstr ""
-#. BE=K
#: table.src
msgctxt ""
"table.src\n"
@@ -469,7 +420,6 @@ msgctxt ""
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 ""
-#. H0za
#: table.src
msgctxt ""
"table.src\n"
@@ -478,7 +428,6 @@ msgctxt ""
msgid "Primary Key Affected"
msgstr ""
-#. ^k*0
#: table.src
msgctxt ""
"table.src\n"
@@ -487,7 +436,6 @@ msgctxt ""
msgid "Column"
msgstr ""
-#. o1m@
#: table.src
msgctxt ""
"table.src\n"
@@ -496,7 +444,6 @@ msgctxt ""
msgid "Continue anyway?"
msgstr ""
-#. :}Ea
#: table.src
msgctxt ""
"table.src\n"
@@ -505,7 +452,6 @@ msgctxt ""
msgid "Warning!"
msgstr ""
-#. 3U@W
#: table.src
msgctxt ""
"table.src\n"
@@ -516,7 +462,6 @@ msgid ""
"Do you want to save the changes?"
msgstr ""
-#. LHZG
#: table.src
msgctxt ""
"table.src\n"
@@ -527,7 +472,6 @@ msgid ""
"Reconnect?"
msgstr ""
-#. IXlV
#: table.src
msgctxt ""
"table.src\n"
@@ -536,7 +480,6 @@ msgctxt ""
msgid "The table could not be saved due to problems connecting to the database."
msgstr ""
-#. g4@I
#: table.src
msgctxt ""
"table.src\n"
@@ -545,7 +488,6 @@ msgctxt ""
msgid "The table filter could not be adjusted because the data source has been deleted."
msgstr ""
-#. w5qJ
#: table.src
msgctxt ""
"table.src\n"
@@ -556,7 +498,6 @@ msgid ""
"Do you want to save the changes now?"
msgstr ""
-#. IT/l
#: table.src
msgctxt ""
"table.src\n"
@@ -565,7 +506,6 @@ msgctxt ""
msgid "No primary key"
msgstr ""
-#. gnM:
#: table.src
msgctxt ""
"table.src\n"
@@ -578,7 +518,6 @@ msgid ""
"Should a primary key be created now?"
msgstr ""
-#. ds(e
#: table.src
msgctxt ""
"table.src\n"
@@ -587,7 +526,6 @@ msgctxt ""
msgid " - %PRODUCTNAME Base: Table Design"
msgstr ""
-#. j\[$
#: table.src
msgctxt ""
"table.src\n"
@@ -596,7 +534,6 @@ msgctxt ""
msgid "The column \"$column$\" could not be changed. Should the column instead be deleted and the new format appended?"
msgstr ""
-#. 3pC`
#: table.src
msgctxt ""
"table.src\n"
@@ -605,7 +542,6 @@ msgctxt ""
msgid "Error while saving the table design"
msgstr ""
-#. s$A0
#: table.src
msgctxt ""
"table.src\n"
@@ -614,7 +550,6 @@ msgctxt ""
msgid "The column $column$ could not be deleted."
msgstr ""
-#. b+/B
#: table.src
msgctxt ""
"table.src\n"
@@ -623,7 +558,6 @@ msgctxt ""
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 ""
-#. mb.U
#: table.src
msgctxt ""
"table.src\n"
@@ -632,7 +566,6 @@ msgctxt ""
msgid "A~uto-increment statement"
msgstr ""
-#. ZA{U
#: table.src
msgctxt ""
"table.src\n"
@@ -644,7 +577,6 @@ msgid ""
"This statement will be directly transferred to the database when the table is created."
msgstr ""
-#. -CSJ
#: table.src
msgctxt ""
"table.src\n"
@@ -655,7 +587,6 @@ msgid ""
"The table design mode is not available for this data source."
msgstr ""
-#. da%i
#: table.src
msgctxt ""
"table.src\n"
@@ -664,7 +595,6 @@ msgctxt ""
msgid "change field name"
msgstr ""
-#. V6k6
#: table.src
msgctxt ""
"table.src\n"
@@ -673,7 +603,6 @@ msgctxt ""
msgid "change field type"
msgstr ""
-#. \=gd
#: table.src
msgctxt ""
"table.src\n"
@@ -682,7 +611,6 @@ msgctxt ""
msgid "change field description"
msgstr ""
-#. AAJ]
#: table.src
msgctxt ""
"table.src\n"
diff --git a/source/ur/dbaccess/source/ui/uno.po b/source/ur/dbaccess/source/ui/uno.po
index 6adba1c5aaa..300fcb467b9 100644
--- a/source/ur/dbaccess/source/ui/uno.po
+++ b/source/ur/dbaccess/source/ui/uno.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. eQiO
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "The destination database does not support views."
msgstr ""
-#. _=Y9
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "The destination database does not support primary keys."
msgstr ""
-#. 3?2,
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "no data access descriptor found, or no data access descriptor able to provide all necessary information"
msgstr ""
-#. zV0M
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -50,7 +46,6 @@ msgctxt ""
msgid "Only tables and queries are supported at the moment."
msgstr ""
-#. ~}tx
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -59,7 +54,6 @@ msgctxt ""
msgid "The copy source's result set must support bookmarks."
msgstr ""
-#. UCzS
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -68,7 +62,6 @@ msgctxt ""
msgid "Unsupported source column type ($type$) at column position $pos$."
msgstr ""
-#. We~`
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -77,7 +70,6 @@ msgctxt ""
msgid "Illegal number of initialization parameters."
msgstr ""
-#. mBwh
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -86,7 +78,6 @@ msgctxt ""
msgid "An error occurred during initialization."
msgstr ""
-#. HAbb
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -95,7 +86,6 @@ msgctxt ""
msgid "Unsupported setting in the copy source descriptor: $name$."
msgstr ""
-#. mJDu
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -104,7 +94,6 @@ msgctxt ""
msgid "To copy a query, your connection must be able to provide queries."
msgstr ""
-#. poOe
#: copytablewizard.src
msgctxt ""
"copytablewizard.src\n"
@@ -113,7 +102,6 @@ msgctxt ""
msgid "The given interaction handler is invalid."
msgstr ""
-#. D3WL
#: dbinteraction.src
msgctxt ""
"dbinteraction.src\n"
@@ -122,7 +110,6 @@ msgctxt ""
msgid "~Remember password until end of session"
msgstr ""
-#. ?:go
#: dbinteraction.src
msgctxt ""
"dbinteraction.src\n"
diff --git a/source/ur/desktop/source/app.po b/source/ur/desktop/source/app.po
index de814d9f36e..a7ea16b35aa 100644
--- a/source/ur/desktop/source/app.po
+++ b/source/ur/desktop/source/app.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ;-E#
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Should the file \"$1\" be restored?"
msgstr ""
-#. ;NJ+
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "File Recovery"
msgstr ""
-#. NS+@
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -45,7 +42,6 @@ msgid ""
"probably be recovered at program restart."
msgstr ""
-#. G(.k
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "The application cannot be started. "
msgstr ""
-#. `a$P
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "The configuration directory \"$1\" could not be found."
msgstr ""
-#. D5B@
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -72,7 +66,6 @@ msgctxt ""
msgid "The installation path is invalid."
msgstr ""
-#. 3KSX
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -81,7 +74,6 @@ msgctxt ""
msgid "The installation path is not available."
msgstr ""
-#. [Rc8
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -90,7 +82,6 @@ msgctxt ""
msgid "An internal error occurred."
msgstr ""
-#. Lp6S
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -99,7 +90,6 @@ msgctxt ""
msgid "The configuration file \"$1\" is corrupt."
msgstr ""
-#. FI:n
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -108,7 +98,6 @@ msgctxt ""
msgid "The configuration file \"$1\" was not found."
msgstr ""
-#. rEGY
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -117,7 +106,6 @@ msgctxt ""
msgid "The configuration file \"$1\" does not support the current version."
msgstr ""
-#. 8}+c
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -126,7 +114,6 @@ msgctxt ""
msgid "The user interface language cannot be determined."
msgstr ""
-#. 8M4/
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -135,7 +122,6 @@ msgctxt ""
msgid "The configuration service is not available."
msgstr ""
-#. 7@8E
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -144,7 +130,6 @@ msgctxt ""
msgid "Start the setup application to repair the installation from the CD or the folder containing the installation packages."
msgstr ""
-#. ;Qn6
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -153,7 +138,6 @@ msgctxt ""
msgid "The startup settings for accessing the central configuration are incomplete. "
msgstr ""
-#. rd?U
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -162,7 +146,6 @@ msgctxt ""
msgid "A connection to the central configuration could not be established. "
msgstr ""
-#. N;}*
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -171,7 +154,6 @@ msgctxt ""
msgid "You cannot access the central configuration because of missing access rights. "
msgstr ""
-#. mb`J
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -180,7 +162,6 @@ msgctxt ""
msgid "A general error occurred while accessing your central configuration. "
msgstr ""
-#. gXwr
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -189,7 +170,6 @@ msgctxt ""
msgid "The changes to your personal settings cannot be stored centrally because of missing access rights. "
msgstr ""
-#. :j,M
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -201,7 +181,6 @@ msgid ""
"Please contact your system administrator."
msgstr ""
-#. Hq*q
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -210,7 +189,6 @@ msgctxt ""
msgid "The following internal error has occurred: "
msgstr ""
-#. ]saI
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -223,7 +201,6 @@ msgid ""
"Do you really want to continue?"
msgstr ""
-#. 5c(@
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -232,7 +209,6 @@ msgctxt ""
msgid "%PRODUCTNAME %PRODUCTVERSION"
msgstr ""
-#. g1Dd
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -241,7 +217,6 @@ msgctxt ""
msgid "Help Message..."
msgstr ""
-#. _hMD
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -250,7 +225,6 @@ msgctxt ""
msgid "Printing is disabled. No documents can be printed."
msgstr ""
-#. l%BI
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -259,7 +233,6 @@ msgctxt ""
msgid "%PRODUCTNAME %PRODUCTVERSION"
msgstr ""
-#. @L?:
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -268,7 +241,6 @@ msgctxt ""
msgid "The path manager is not available.\n"
msgstr ""
-#. X:/Z
#: desktop.src
msgctxt ""
"desktop.src\n"
@@ -279,7 +251,6 @@ msgid ""
"\n"
msgstr ""
-#. r2c(
#: desktop.src
msgctxt ""
"desktop.src\n"
diff --git a/source/ur/desktop/source/deployment/gui.po b/source/ur/desktop/source/deployment/gui.po
index b773fe414d6..7f1b9225b46 100644
--- a/source/ur/desktop/source/deployment/gui.po
+++ b/source/ur/desktop/source/deployment/gui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. )g4a
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Add Extension(s)"
msgstr ""
-#. qUw1
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "~Remove"
msgstr ""
-#. /yLf
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "~Enable"
msgstr ""
-#. nB=b
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -50,7 +46,6 @@ msgctxt ""
msgid "~Disable"
msgstr ""
-#. UpY+
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -59,7 +54,6 @@ msgctxt ""
msgid "~Update..."
msgstr ""
-#. 6pLh
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -68,7 +62,6 @@ msgctxt ""
msgid "~Options..."
msgstr ""
-#. F3Kz
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -77,7 +70,6 @@ msgctxt ""
msgid "Adding %EXTENSION_NAME"
msgstr ""
-#. H)hJ
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -86,7 +78,6 @@ msgctxt ""
msgid "Removing %EXTENSION_NAME"
msgstr ""
-#. -w-g
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -95,7 +86,6 @@ msgctxt ""
msgid "Enabling %EXTENSION_NAME"
msgstr ""
-#. m^rx
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -104,7 +94,6 @@ msgctxt ""
msgid "Disabling %EXTENSION_NAME"
msgstr ""
-#. sH1[
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -113,7 +102,6 @@ msgctxt ""
msgid "Accept license for %EXTENSION_NAME"
msgstr ""
-#. UeQm
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -122,7 +110,6 @@ msgctxt ""
msgid "~For all users"
msgstr ""
-#. F49M
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -131,7 +118,6 @@ msgctxt ""
msgid "~Only for me"
msgstr ""
-#. #_~A
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -140,7 +126,6 @@ msgctxt ""
msgid "Error: The status of this extension is unknown"
msgstr ""
-#. :D9%
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -149,7 +134,6 @@ msgctxt ""
msgid "Close"
msgstr ""
-#. TuR@
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -158,7 +142,6 @@ msgctxt ""
msgid "Quit"
msgstr ""
-#. `^)5
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -170,7 +153,6 @@ msgid ""
"Updating of shared extension requires administrator privileges. Contact your system administrator to update the following shared extensions:"
msgstr ""
-#. JF-Z
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -179,7 +161,6 @@ msgctxt ""
msgid "The extension cannot be enabled as the following system dependencies are not fulfilled:"
msgstr ""
-#. DEjZ
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -188,7 +169,6 @@ msgctxt ""
msgid "This extension is disabled because you haven't accepted the license yet.\n"
msgstr ""
-#. dig5
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -197,7 +177,6 @@ msgctxt ""
msgid "Show license"
msgstr ""
-#. ZWP3
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -207,7 +186,6 @@ msgctxt ""
msgid "Please follow these steps to proceed with the installation of the extension:"
msgstr ""
-#. ?TEs
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -217,7 +195,6 @@ msgctxt ""
msgid "1."
msgstr ""
-#. `^|e
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -227,7 +204,6 @@ msgctxt ""
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 ""
-#. 5-GY
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -237,7 +213,6 @@ msgctxt ""
msgid "2."
msgstr ""
-#. Q2.T
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -247,7 +222,6 @@ msgctxt ""
msgid "Accept the License Agreement for the extension by pressing the \\'Accept\\' button."
msgstr ""
-#. pW8s
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -257,7 +231,6 @@ msgctxt ""
msgid "~Scroll Down"
msgstr ""
-#. )$3l
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -267,7 +240,6 @@ msgctxt ""
msgid "Accept"
msgstr ""
-#. h7-`
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -277,7 +249,6 @@ msgctxt ""
msgid "Decline"
msgstr ""
-#. ?Bqn
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -286,7 +257,6 @@ msgctxt ""
msgid "Extension Software License Agreement"
msgstr ""
-#. T!U?
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -296,7 +266,6 @@ msgctxt ""
msgid "Close"
msgstr ""
-#. D\Lp
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -305,7 +274,6 @@ msgctxt ""
msgid "Extension Software License Agreement"
msgstr ""
-#. r:LX
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -317,7 +285,6 @@ msgid ""
"Click \\'Cancel\\' to stop the installation."
msgstr ""
-#. .AYw
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -329,7 +296,6 @@ msgid ""
"Click \\'Cancel\\' to stop removing the extension."
msgstr ""
-#. D_!C
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -341,7 +307,6 @@ msgid ""
"Click \\'Cancel\\' to stop removing the extension."
msgstr ""
-#. BUHX
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -353,7 +318,6 @@ msgid ""
"Click \\'Cancel\\' to stop enabling the extension."
msgstr ""
-#. ,`QG
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -365,7 +329,6 @@ msgid ""
"Click \\'Cancel\\' to stop disabling the extension."
msgstr ""
-#. %hVk
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
@@ -374,7 +337,6 @@ msgctxt ""
msgid "The extension \\'%Name\\' does not work on this computer."
msgstr ""
-#. `a+p
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -384,7 +346,6 @@ msgctxt ""
msgid "Checking..."
msgstr ""
-#. hka,
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -394,7 +355,6 @@ msgctxt ""
msgid "~Available extension updates"
msgstr ""
-#. vUpW
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -404,7 +364,6 @@ msgctxt ""
msgid "~Show all updates"
msgstr ""
-#. _4Io
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -414,7 +373,6 @@ msgctxt ""
msgid "Description"
msgstr "وضاحت"
-#. [wV,
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -424,7 +382,6 @@ msgctxt ""
msgid "Publisher:"
msgstr ""
-#. 6iXl
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -434,7 +391,6 @@ msgctxt ""
msgid "What is new:"
msgstr ""
-#. KrCa
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -444,7 +400,6 @@ msgctxt ""
msgid "Release Notes"
msgstr ""
-#. _e-8
#: dp_gui_updatedialog.src
#, fuzzy
msgctxt ""
@@ -455,7 +410,6 @@ msgctxt ""
msgid "~Install"
msgstr "نصب"
-#. EFhl
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -465,7 +419,6 @@ msgctxt ""
msgid "Close"
msgstr ""
-#. qn?R
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -475,7 +428,6 @@ msgctxt ""
msgid "Error"
msgstr ""
-#. OU;g
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -485,7 +437,6 @@ msgctxt ""
msgid "No new updates are available."
msgstr ""
-#. EKIX
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -495,7 +446,6 @@ msgctxt ""
msgid "No installable updates are available. To see ignored or disabled updates, mark the check box 'Show all updates'."
msgstr ""
-#. Qw.N
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -505,7 +455,6 @@ msgctxt ""
msgid "An error occurred:"
msgstr ""
-#. )des
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -515,7 +464,6 @@ msgctxt ""
msgid "Unknown error."
msgstr ""
-#. ,G^c
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -525,7 +473,6 @@ msgctxt ""
msgid "No more details are available for this update."
msgstr ""
-#. Bxze
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -535,7 +482,6 @@ msgctxt ""
msgid "The extension cannot be updated because:"
msgstr ""
-#. bi+m
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -545,7 +491,6 @@ msgctxt ""
msgid "Required %PRODUCTNAME version doesn't match:"
msgstr ""
-#. HBWQ
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -555,7 +500,6 @@ msgctxt ""
msgid "You have %PRODUCTNAME %VERSION"
msgstr ""
-#. 0NEU
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -565,7 +509,6 @@ msgctxt ""
msgid "browser based update"
msgstr ""
-#. I_7{
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -575,7 +518,6 @@ msgctxt ""
msgid "Version"
msgstr "نسخہ"
-#. uR^i
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -585,7 +527,6 @@ msgctxt ""
msgid "Ignore this Update"
msgstr ""
-#. -GBE
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -595,7 +536,6 @@ msgctxt ""
msgid "Ignore all Updates"
msgstr ""
-#. PR1b
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -605,7 +545,6 @@ msgctxt ""
msgid "Enable Updates"
msgstr ""
-#. 7Lu#
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -615,7 +554,6 @@ msgctxt ""
msgid "This update will be ignored.\n"
msgstr ""
-#. vPxV
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -624,7 +562,6 @@ msgctxt ""
msgid "Extension Update"
msgstr ""
-#. O;8G
#: dp_gui_updatedialog.src
msgctxt ""
"dp_gui_updatedialog.src\n"
@@ -636,7 +573,6 @@ msgid ""
"Click \\'Cancel\\' to stop updating the extensions."
msgstr ""
-#. v0Pp
#: dp_gui_dependencydialog.src
msgctxt ""
"dp_gui_dependencydialog.src\n"
@@ -648,7 +584,6 @@ msgid ""
"system dependencies are not fulfilled:"
msgstr ""
-#. gH@N
#: dp_gui_dependencydialog.src
msgctxt ""
"dp_gui_dependencydialog.src\n"
@@ -657,7 +592,6 @@ msgctxt ""
msgid "System dependencies check"
msgstr ""
-#. S/I0
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -667,7 +601,6 @@ msgctxt ""
msgid "Downloading extensions..."
msgstr ""
-#. N(AN
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -677,7 +610,6 @@ msgctxt ""
msgid "Result"
msgstr ""
-#. mNYs
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -687,7 +619,6 @@ msgctxt ""
msgid "OK"
msgstr ""
-#. (iRd
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -697,7 +628,6 @@ msgctxt ""
msgid "Cancel Update"
msgstr ""
-#. ac=/
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -707,7 +637,6 @@ msgctxt ""
msgid "Installing extensions..."
msgstr ""
-#. EtdK
#: dp_gui_updateinstalldialog.src
#, fuzzy
msgctxt ""
@@ -718,7 +647,6 @@ msgctxt ""
msgid "Installation finished"
msgstr "تنصیب ناکام ہو گئی۔"
-#. Y.qI
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -728,7 +656,6 @@ msgctxt ""
msgid "No errors."
msgstr ""
-#. DsXR
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -738,7 +665,6 @@ msgctxt ""
msgid "Error while downloading extension %NAME. "
msgstr ""
-#. s.gj
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -748,7 +674,6 @@ msgctxt ""
msgid "The error message is: "
msgstr ""
-#. [\]=
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -758,7 +683,6 @@ msgctxt ""
msgid "Error while installing extension %NAME. "
msgstr ""
-#. .{M/
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -768,7 +692,6 @@ msgctxt ""
msgid "The license agreement for extension %NAME was refused. "
msgstr ""
-#. SNOs
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -778,7 +701,6 @@ msgctxt ""
msgid "The extension will not be installed."
msgstr ""
-#. e$)a
#: dp_gui_updateinstalldialog.src
msgctxt ""
"dp_gui_updateinstalldialog.src\n"
@@ -787,7 +709,6 @@ msgctxt ""
msgid "Download and Installation"
msgstr ""
-#. HBhD
#: dp_gui_versionboxes.src
msgctxt ""
"dp_gui_versionboxes.src\n"
@@ -800,7 +721,6 @@ msgid ""
"Click \\'Cancel\\' to stop the installation."
msgstr ""
-#. r9;l
#: dp_gui_versionboxes.src
msgctxt ""
"dp_gui_versionboxes.src\n"
@@ -813,7 +733,6 @@ msgid ""
"Click \\'Cancel\\' to stop the installation."
msgstr ""
-#. :)M6
#: dp_gui_versionboxes.src
msgctxt ""
"dp_gui_versionboxes.src\n"
@@ -826,7 +745,6 @@ msgid ""
"Click \\'Cancel\\' to stop the installation."
msgstr ""
-#. 5+YJ
#: dp_gui_versionboxes.src
msgctxt ""
"dp_gui_versionboxes.src\n"
@@ -839,7 +757,6 @@ msgid ""
"Click \\'Cancel\\' to stop the installation."
msgstr ""
-#. hr,;
#: dp_gui_versionboxes.src
msgctxt ""
"dp_gui_versionboxes.src\n"
@@ -852,7 +769,6 @@ msgid ""
"Click \\'Cancel\\' to stop the installation."
msgstr ""
-#. BQ2$
#: dp_gui_versionboxes.src
msgctxt ""
"dp_gui_versionboxes.src\n"
@@ -865,7 +781,6 @@ msgid ""
"Click \\'Cancel\\' to stop the installation."
msgstr ""
-#. Q#=\
#: dp_gui_dialog2.src
msgctxt ""
"dp_gui_dialog2.src\n"
@@ -875,7 +790,6 @@ msgctxt ""
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 ""
-#. `PVo
#: dp_gui_dialog2.src
msgctxt ""
"dp_gui_dialog2.src\n"
@@ -885,7 +799,6 @@ msgctxt ""
msgid "Adding %EXTENSION_NAME"
msgstr ""
-#. 3rgH
#: dp_gui_dialog2.src
msgctxt ""
"dp_gui_dialog2.src\n"
@@ -895,7 +808,6 @@ msgctxt ""
msgid "Check for ~Updates..."
msgstr ""
-#. }LZ[
#: dp_gui_dialog2.src
msgctxt ""
"dp_gui_dialog2.src\n"
@@ -905,7 +817,6 @@ msgctxt ""
msgid "Disable all"
msgstr ""
-#. p:Gn
#: dp_gui_dialog2.src
msgctxt ""
"dp_gui_dialog2.src\n"
@@ -914,7 +825,6 @@ msgctxt ""
msgid "Extension Update Required"
msgstr ""
-#. *iQV
#: dp_gui_dialog2.src
msgctxt ""
"dp_gui_dialog2.src\n"
diff --git a/source/ur/desktop/source/deployment/manager.po b/source/ur/desktop/source/deployment/manager.po
index df24dad263f..9dac2f65cf9 100644
--- a/source/ur/desktop/source/deployment/manager.po
+++ b/source/ur/desktop/source/deployment/manager.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. %IZC
#: dp_manager.src
msgctxt ""
"dp_manager.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Copying: "
msgstr ""
-#. L/\_
#: dp_manager.src
msgctxt ""
"dp_manager.src\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "Error while adding: "
msgstr ""
-#. kAc8
#: dp_manager.src
msgctxt ""
"dp_manager.src\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "Error while removing: "
msgstr ""
-#. -+ai
#: dp_manager.src
msgctxt ""
"dp_manager.src\n"
@@ -50,7 +46,6 @@ msgctxt ""
msgid "Extension has already been added: "
msgstr ""
-#. UZM;
#: dp_manager.src
msgctxt ""
"dp_manager.src\n"
@@ -59,7 +54,6 @@ msgctxt ""
msgid "There is no such extension deployed: "
msgstr ""
-#. W\gZ
#: dp_manager.src
msgctxt ""
"dp_manager.src\n"
diff --git a/source/ur/desktop/source/deployment/misc.po b/source/ur/desktop/source/deployment/misc.po
index 21753dca1ae..44ab22a4b2f 100644
--- a/source/ur/desktop/source/deployment/misc.po
+++ b/source/ur/desktop/source/deployment/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. e]=d
#: dp_misc.src
msgctxt ""
"dp_misc.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Unknown"
msgstr ""
-#. F{be
#: dp_misc.src
msgctxt ""
"dp_misc.src\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "Extension requires at least OpenOffice.org reference version %VERSION"
msgstr ""
-#. 4sPj
#: dp_misc.src
msgctxt ""
"dp_misc.src\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "Extension does not support OpenOffice.org reference versions greater than %VERSION"
msgstr ""
-#. qt\U
#: dp_misc.src
msgctxt ""
"dp_misc.src\n"
diff --git a/source/ur/desktop/source/deployment/registry.po b/source/ur/desktop/source/deployment/registry.po
index 0e627259955..e4c7eaf1374 100644
--- a/source/ur/desktop/source/deployment/registry.po
+++ b/source/ur/desktop/source/deployment/registry.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. $cpn
#: dp_registry.src
msgctxt ""
"dp_registry.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Enabling: "
msgstr ""
-#. G/D(
#: dp_registry.src
msgctxt ""
"dp_registry.src\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "Disabling: "
msgstr ""
-#. %Y)g
#: dp_registry.src
msgctxt ""
"dp_registry.src\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "Cannot detect media-type: "
msgstr ""
-#. VeLI
#: dp_registry.src
msgctxt ""
"dp_registry.src\n"
@@ -50,7 +46,6 @@ msgctxt ""
msgid "This media-type is not supported: "
msgstr ""
-#. AMk0
#: dp_registry.src
msgctxt ""
"dp_registry.src\n"
@@ -59,7 +54,6 @@ msgctxt ""
msgid "An error occurred while enabling: "
msgstr ""
-#. bDCE
#: dp_registry.src
msgctxt ""
"dp_registry.src\n"
diff --git a/source/ur/desktop/source/deployment/registry/component.po b/source/ur/desktop/source/deployment/registry/component.po
index 0a401685474..29a6faa1ec6 100644
--- a/source/ur/desktop/source/deployment/registry/component.po
+++ b/source/ur/desktop/source/deployment/registry/component.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. `$\G
#: dp_component.src
msgctxt ""
"dp_component.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "UNO Dynamic Library Component"
msgstr ""
-#. 3QYD
#: dp_component.src
msgctxt ""
"dp_component.src\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "UNO Java Component"
msgstr ""
-#. 2xq{
#: dp_component.src
msgctxt ""
"dp_component.src\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "UNO Python Component"
msgstr ""
-#. ;TgS
#: dp_component.src
msgctxt ""
"dp_component.src\n"
@@ -50,7 +46,6 @@ msgctxt ""
msgid "UNO Components"
msgstr ""
-#. 8KR6
#: dp_component.src
msgctxt ""
"dp_component.src\n"
@@ -59,7 +54,6 @@ msgctxt ""
msgid "UNO RDB Type Library"
msgstr ""
-#. rD`-
#: dp_component.src
msgctxt ""
"dp_component.src\n"
diff --git a/source/ur/desktop/source/deployment/registry/configuration.po b/source/ur/desktop/source/deployment/registry/configuration.po
index 33ff29d7fb2..562c5980f42 100644
--- a/source/ur/desktop/source/deployment/registry/configuration.po
+++ b/source/ur/desktop/source/deployment/registry/configuration.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. p]HL
#: dp_configuration.src
msgctxt ""
"dp_configuration.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Configuration Schema"
msgstr ""
-#. A5Gt
#: dp_configuration.src
msgctxt ""
"dp_configuration.src\n"
diff --git a/source/ur/desktop/source/deployment/registry/help.po b/source/ur/desktop/source/deployment/registry/help.po
index 79d444018aa..c232b46e5b0 100644
--- a/source/ur/desktop/source/deployment/registry/help.po
+++ b/source/ur/desktop/source/deployment/registry/help.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. `3-+
#: dp_help.src
msgctxt ""
"dp_help.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Help"
msgstr ""
-#. .hUu
#: dp_help.src
msgctxt ""
"dp_help.src\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "The extension cannot be installed because:\n"
msgstr ""
-#. 4P[r
#: dp_help.src
msgctxt ""
"dp_help.src\n"
diff --git a/source/ur/desktop/source/deployment/registry/package.po b/source/ur/desktop/source/deployment/registry/package.po
index d70deb97f23..3f3907bb46a 100644
--- a/source/ur/desktop/source/deployment/registry/package.po
+++ b/source/ur/desktop/source/deployment/registry/package.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. y7B0
#: dp_package.src
msgctxt ""
"dp_package.src\n"
diff --git a/source/ur/desktop/source/deployment/registry/script.po b/source/ur/desktop/source/deployment/registry/script.po
index f86c974d328..deacb1a95a5 100644
--- a/source/ur/desktop/source/deployment/registry/script.po
+++ b/source/ur/desktop/source/deployment/registry/script.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. csc-
#: dp_script.src
msgctxt ""
"dp_script.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "%PRODUCTNAME Basic Library"
msgstr ""
-#. IAA3
#: dp_script.src
msgctxt ""
"dp_script.src\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "Dialog Library"
msgstr ""
-#. C(Vl
#: dp_script.src
msgctxt ""
"dp_script.src\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "The library name could not be determined."
msgstr ""
-#. G**:
#: dp_script.src
msgctxt ""
"dp_script.src\n"
diff --git a/source/ur/desktop/source/deployment/registry/sfwk.po b/source/ur/desktop/source/deployment/registry/sfwk.po
index 85f24e07c95..1865ea87cdd 100644
--- a/source/ur/desktop/source/deployment/registry/sfwk.po
+++ b/source/ur/desktop/source/deployment/registry/sfwk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. lAa`
#: dp_sfwk.src
msgctxt ""
"dp_sfwk.src\n"
diff --git a/source/ur/desktop/source/deployment/unopkg.po b/source/ur/desktop/source/deployment/unopkg.po
index 942ea47c356..f0e1f0f002e 100644
--- a/source/ur/desktop/source/deployment/unopkg.po
+++ b/source/ur/desktop/source/deployment/unopkg.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ;TPh
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Extension Software License Agreement of $NAME:"
msgstr ""
-#. 44FH
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -32,7 +30,6 @@ msgctxt ""
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 ""
-#. 805f
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "[Enter \"yes\" or \"no\"]:"
msgstr ""
-#. B9~w
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -50,7 +46,6 @@ msgctxt ""
msgid "Your input was not correct. Please enter \"yes\" or \"no\":"
msgstr ""
-#. %T)~
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -59,7 +54,6 @@ msgctxt ""
msgid "YES"
msgstr ""
-#. XAaL
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -68,7 +62,6 @@ msgctxt ""
msgid "Y"
msgstr ""
-#. [qZ4
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -77,7 +70,6 @@ msgctxt ""
msgid "NO"
msgstr ""
-#. !,ds
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -86,7 +78,6 @@ msgctxt ""
msgid "N"
msgstr ""
-#. |bKo
#: unopkg.src
msgctxt ""
"unopkg.src\n"
@@ -95,7 +86,6 @@ msgctxt ""
msgid "unopkg cannot be started. The lock file indicates it as already running. If this does not apply, delete the lock file at:"
msgstr ""
-#. WrUl
#: unopkg.src
msgctxt ""
"unopkg.src\n"
diff --git a/source/ur/desktop/uiconfig/ui.po b/source/ur/desktop/uiconfig/ui.po
index e8fe3f9b9df..46224f703cf 100644
--- a/source/ur/desktop/uiconfig/ui.po
+++ b/source/ur/desktop/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-11-17 19:02+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,90 +14,81 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. :oeY
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"ExtensionManagerDialog\n"
"title\n"
"string.text"
msgid "Extension Manager"
msgstr ""
-#. )+V:
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"add\n"
"label\n"
"string.text"
msgid "Add..."
msgstr ""
-#. 7biP
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"update\n"
"label\n"
"string.text"
msgid "Check for updates..."
msgstr ""
-#. ;U^(
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"shared\n"
"label\n"
"string.text"
msgid "Shared"
msgstr ""
-#. .O_p
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"user\n"
"label\n"
"string.text"
msgid "User"
msgstr ""
-#. o[/Q
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"bundled\n"
"label\n"
"string.text"
msgid "Installation"
msgstr ""
-#. OkPj
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "Type of Extension"
msgstr ""
-#. `O^B
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"progressft\n"
"label\n"
"string.text"
msgid "Adding %EXTENSION_NAME"
msgstr ""
-#. s9*(
-#: ExtensionManager.ui
+#: extensionmanager.ui
msgctxt ""
-"ExtensionManager.ui\n"
+"extensionmanager.ui\n"
"getextensions\n"
"label\n"
"string.text"
diff --git a/source/ur/dictionaries/af_ZA.po b/source/ur/dictionaries/af_ZA.po
index 2454f75d05a..7af9e9ffd22 100644
--- a/source/ur/dictionaries/af_ZA.po
+++ b/source/ur/dictionaries/af_ZA.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. M*jg
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/an_ES.po b/source/ur/dictionaries/an_ES.po
index 07f87f4d561..0cf0896b975 100644
--- a/source/ur/dictionaries/an_ES.po
+++ b/source/ur/dictionaries/an_ES.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. gb;t
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/ar.po b/source/ur/dictionaries/ar.po
index a52b0f117a2..9f698605c86 100644
--- a/source/ur/dictionaries/ar.po
+++ b/source/ur/dictionaries/ar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ys!9
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/be_BY.po b/source/ur/dictionaries/be_BY.po
index 798b2256cea..ea97d022b2c 100644
--- a/source/ur/dictionaries/be_BY.po
+++ b/source/ur/dictionaries/be_BY.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. [4y]
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/bg_BG.po b/source/ur/dictionaries/bg_BG.po
index 4007b0e82ee..942d58ae36a 100644
--- a/source/ur/dictionaries/bg_BG.po
+++ b/source/ur/dictionaries/bg_BG.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. dq%%
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/bn_BD.po b/source/ur/dictionaries/bn_BD.po
index d8161eeaf62..b59ab5f417d 100644
--- a/source/ur/dictionaries/bn_BD.po
+++ b/source/ur/dictionaries/bn_BD.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. bojQ
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/br_FR.po b/source/ur/dictionaries/br_FR.po
index 5c4af1cc504..06ea9818148 100644
--- a/source/ur/dictionaries/br_FR.po
+++ b/source/ur/dictionaries/br_FR.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 9Xa=
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/ca.po b/source/ur/dictionaries/ca.po
index 188418e1066..8abbc8cf35a 100644
--- a/source/ur/dictionaries/ca.po
+++ b/source/ur/dictionaries/ca.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. =.lo
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/cs_CZ.po b/source/ur/dictionaries/cs_CZ.po
index a50ac7eeb4f..beae8aea2bb 100644
--- a/source/ur/dictionaries/cs_CZ.po
+++ b/source/ur/dictionaries/cs_CZ.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Blot
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/da_DK.po b/source/ur/dictionaries/da_DK.po
index 04153ad5320..04bc37ab625 100644
--- a/source/ur/dictionaries/da_DK.po
+++ b/source/ur/dictionaries/da_DK.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. \}Cs
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/de.po b/source/ur/dictionaries/de.po
index d32d51297f2..987e15d57d9 100644
--- a/source/ur/dictionaries/de.po
+++ b/source/ur/dictionaries/de.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 8oqA
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/el_GR.po b/source/ur/dictionaries/el_GR.po
index 3125c1dc07c..3d3879e3b1b 100644
--- a/source/ur/dictionaries/el_GR.po
+++ b/source/ur/dictionaries/el_GR.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Onq%
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/en.po b/source/ur/dictionaries/en.po
index c75f7c1bc0a..5fdba8a092f 100644
--- a/source/ur/dictionaries/en.po
+++ b/source/ur/dictionaries/en.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. XeP\
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/en/dialog.po b/source/ur/dictionaries/en/dialog.po
index c3241f772dd..a7d215a92f5 100644
--- a/source/ur/dictionaries/en/dialog.po
+++ b/source/ur/dictionaries/en/dialog.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 9e.W
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Grammar checking"
msgstr ""
-#. Q@$;
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "Check more grammar errors."
msgstr ""
-#. HoPw
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "Possible mistakes"
msgstr ""
-#. 3rmv
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -50,7 +46,6 @@ msgctxt ""
msgid "Check missing capitalization of sentences."
msgstr ""
-#. Z3Ni
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -59,7 +54,6 @@ msgctxt ""
msgid "Capitalization"
msgstr ""
-#. 9l$4
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -68,7 +62,6 @@ msgctxt ""
msgid "Check repeated words."
msgstr ""
-#. M[VX
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -77,7 +70,6 @@ msgctxt ""
msgid "Word duplication"
msgstr ""
-#. O#JY
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -86,7 +78,6 @@ msgctxt ""
msgid "Check missing or extra parentheses and quotation marks."
msgstr ""
-#. 0[^A
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -95,7 +86,6 @@ msgctxt ""
msgid "Parentheses"
msgstr ""
-#. PpHs
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -104,7 +94,6 @@ msgctxt ""
msgid "Punctuation"
msgstr ""
-#. ]@g;
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -113,7 +102,6 @@ msgctxt ""
msgid "Check single spaces between words."
msgstr ""
-#. sq8g
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -122,7 +110,6 @@ msgctxt ""
msgid "Word spacing"
msgstr ""
-#. #L*f
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -131,7 +118,6 @@ msgctxt ""
msgid "Force unspaced em dash instead of spaced en dash."
msgstr ""
-#. /0jw
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -140,7 +126,6 @@ msgctxt ""
msgid "Em dash"
msgstr ""
-#. ]mQU
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -149,7 +134,6 @@ msgctxt ""
msgid "Force spaced en dash instead of unspaced em dash."
msgstr ""
-#. (`[R
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -158,7 +142,6 @@ msgctxt ""
msgid "En dash"
msgstr ""
-#. H5p]
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -167,7 +150,6 @@ msgctxt ""
msgid "Check double quotation marks: \"x\" → “x”"
msgstr ""
-#. ?I09
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -176,7 +158,6 @@ msgctxt ""
msgid "Quotation marks"
msgstr ""
-#. 1c-\
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -185,7 +166,6 @@ msgctxt ""
msgid "Check true multiplication sign: 5x5 → 5×5"
msgstr ""
-#. iHJD
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -194,7 +174,6 @@ msgctxt ""
msgid "Multiplication sign"
msgstr ""
-#. ck+~
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -203,7 +182,6 @@ msgctxt ""
msgid "Check single spaces between sentences."
msgstr ""
-#. 096i
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -212,7 +190,6 @@ msgctxt ""
msgid "Sentence spacing"
msgstr ""
-#. PXO.
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -221,7 +198,6 @@ msgctxt ""
msgid "Check more than two extra space characters between words and sentences."
msgstr ""
-#. HW6K
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -230,7 +206,6 @@ msgctxt ""
msgid "More spaces"
msgstr ""
-#. _bd.
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -239,7 +214,6 @@ msgctxt ""
msgid "Change hyphen characters to real minus signs."
msgstr ""
-#. 6wpz
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -248,7 +222,6 @@ msgctxt ""
msgid "Minus sign"
msgstr ""
-#. [P3;
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -257,7 +230,6 @@ msgctxt ""
msgid "Change typewriter apostrophe, single quotation marks and correct double primes."
msgstr ""
-#. WGfe
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -266,7 +238,6 @@ msgctxt ""
msgid "Apostrophe"
msgstr ""
-#. #i/A
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -275,7 +246,6 @@ msgctxt ""
msgid "Change three dots with ellipsis."
msgstr ""
-#. x8=~
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -284,7 +254,6 @@ msgctxt ""
msgid "Ellipsis"
msgstr ""
-#. BXZ|
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -293,7 +262,6 @@ msgctxt ""
msgid "Others"
msgstr ""
-#. i7h_
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -302,7 +270,6 @@ msgctxt ""
msgid "Measurement conversion from °F, mph, ft, in, lb, gal and miles."
msgstr ""
-#. D=QB
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -311,7 +278,6 @@ msgctxt ""
msgid "Convert to metric (°C, km/h, m, kg, l)"
msgstr ""
-#. 65`Q
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -320,7 +286,6 @@ msgctxt ""
msgid "Common (1000000 → 1,000,000) or ISO (1000000 → 1 000 000)."
msgstr ""
-#. ZQ.i
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -329,7 +294,6 @@ msgctxt ""
msgid "Thousand separation of large numbers"
msgstr ""
-#. %]x4
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
@@ -338,7 +302,6 @@ msgctxt ""
msgid "Measurement conversion from °C; km/h; cm, m, km; kg; l."
msgstr ""
-#. h%;X
#: en_en_US.properties
msgctxt ""
"en_en_US.properties\n"
diff --git a/source/ur/dictionaries/en/dialog/registry/data/org/openoffice/Office.po b/source/ur/dictionaries/en/dialog/registry/data/org/openoffice/Office.po
index 297179d02b4..25d6ba6c56f 100644
--- a/source/ur/dictionaries/en/dialog/registry/data/org/openoffice/Office.po
+++ b/source/ur/dictionaries/en/dialog/registry/data/org/openoffice/Office.po
@@ -1,10 +1,9 @@
#. extracted from dictionaries/en/dialog/registry/data/org/openoffice/Office
-#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-02-24 14:47+0200\n"
"Last-Translator: Yasir <urdulizer@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. PR\r
#: OptionsDialog.xcu
msgctxt ""
"OptionsDialog.xcu\n"
@@ -26,7 +24,6 @@ msgctxt ""
msgid "Dictionaries"
msgstr ""
-#. _5nX
#: OptionsDialog.xcu
msgctxt ""
"OptionsDialog.xcu\n"
diff --git a/source/ur/dictionaries/es.po b/source/ur/dictionaries/es.po
index 35d3bd2624b..7729bbb0946 100644
--- a/source/ur/dictionaries/es.po
+++ b/source/ur/dictionaries/es.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-11-17 19:02+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. }r*O
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/et_EE.po b/source/ur/dictionaries/et_EE.po
index 1fb8d1a5de6..3e6a4d2502e 100644
--- a/source/ur/dictionaries/et_EE.po
+++ b/source/ur/dictionaries/et_EE.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. N8[E
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/fr_FR.po b/source/ur/dictionaries/fr_FR.po
index 98b0eb2a5d6..c3ef6639433 100644
--- a/source/ur/dictionaries/fr_FR.po
+++ b/source/ur/dictionaries/fr_FR.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 8=ws
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/gd_GB.po b/source/ur/dictionaries/gd_GB.po
index 30119796f5e..1c9ab72a32b 100644
--- a/source/ur/dictionaries/gd_GB.po
+++ b/source/ur/dictionaries/gd_GB.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 5C,5
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/gl.po b/source/ur/dictionaries/gl.po
index 95d073acccb..48b0b71f143 100644
--- a/source/ur/dictionaries/gl.po
+++ b/source/ur/dictionaries/gl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Um]a
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/gu_IN.po b/source/ur/dictionaries/gu_IN.po
index a318497dfa0..0a1175a7067 100644
--- a/source/ur/dictionaries/gu_IN.po
+++ b/source/ur/dictionaries/gu_IN.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. oa/$
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/he_IL.po b/source/ur/dictionaries/he_IL.po
index 9b745d48647..b54206002a9 100644
--- a/source/ur/dictionaries/he_IL.po
+++ b/source/ur/dictionaries/he_IL.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 0$d\
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/hi_IN.po b/source/ur/dictionaries/hi_IN.po
index e098368068e..612aea86afe 100644
--- a/source/ur/dictionaries/hi_IN.po
+++ b/source/ur/dictionaries/hi_IN.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ?Zn,
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/hr_HR.po b/source/ur/dictionaries/hr_HR.po
index 2e0c72c356b..f8180881b8f 100644
--- a/source/ur/dictionaries/hr_HR.po
+++ b/source/ur/dictionaries/hr_HR.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. HRhW
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/hu_HU.po b/source/ur/dictionaries/hu_HU.po
index 787e1eeee55..dc03db148e1 100644
--- a/source/ur/dictionaries/hu_HU.po
+++ b/source/ur/dictionaries/hu_HU.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. dBOo
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/hu_HU/dialog.po b/source/ur/dictionaries/hu_HU/dialog.po
index 1aa0c2d1b10..4fade10c68a 100644
--- a/source/ur/dictionaries/hu_HU/dialog.po
+++ b/source/ur/dictionaries/hu_HU/dialog.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. (yO7
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Spelling"
msgstr ""
-#. tD_{
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "Capitalization"
msgstr ""
-#. 9QT2
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "Parentheses"
msgstr ""
-#. WnVo
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -50,7 +46,6 @@ msgctxt ""
msgid "Word parts of compounds"
msgstr ""
-#. +*+#
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -59,7 +54,6 @@ msgctxt ""
msgid "Comma usage"
msgstr ""
-#. PErZ
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -68,7 +62,6 @@ msgctxt ""
msgid "Proofreading"
msgstr ""
-#. T.I:
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -77,7 +70,6 @@ msgctxt ""
msgid "Style checking"
msgstr ""
-#. sU-l
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -86,7 +78,6 @@ msgctxt ""
msgid "Underline typo-like compound words"
msgstr ""
-#. I/P9
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -95,7 +86,6 @@ msgctxt ""
msgid "Underline all generated compound words"
msgstr ""
-#. 6+J\
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -104,7 +94,6 @@ msgctxt ""
msgid "Possible mistakes"
msgstr ""
-#. 53F}
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -113,7 +102,6 @@ msgctxt ""
msgid "Consistency of money amounts"
msgstr ""
-#. X~\N
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -122,7 +110,6 @@ msgctxt ""
msgid "Word duplication"
msgstr ""
-#. #NB5
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -131,7 +118,6 @@ msgctxt ""
msgid "Word duplication"
msgstr ""
-#. .b*#
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -140,7 +126,6 @@ msgctxt ""
msgid "Duplication within clauses"
msgstr ""
-#. 3z2o
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -149,7 +134,6 @@ msgctxt ""
msgid "Duplication within sentences"
msgstr ""
-#. =^q+
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -158,7 +142,6 @@ msgctxt ""
msgid "Allow previous checkings with affixes"
msgstr ""
-#. `xRF
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -167,7 +150,6 @@ msgctxt ""
msgid "Thousand separation of numbers"
msgstr ""
-#. kZht
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -176,7 +158,6 @@ msgctxt ""
msgid "Typography"
msgstr ""
-#. YD{P
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -185,7 +166,6 @@ msgctxt ""
msgid "Quotation marks"
msgstr ""
-#. 7x;$
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -194,7 +174,6 @@ msgctxt ""
msgid "Apostrophe"
msgstr ""
-#. !.--
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -203,7 +182,6 @@ msgctxt ""
msgid "En dash"
msgstr ""
-#. J;9p
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -212,7 +190,6 @@ msgctxt ""
msgid "Ellipsis"
msgstr ""
-#. sEY|
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -221,7 +198,6 @@ msgctxt ""
msgid "Ligature suggestion"
msgstr ""
-#. VEY2
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -230,7 +206,6 @@ msgctxt ""
msgid "Underline ligatures"
msgstr ""
-#. V%oS
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -239,7 +214,6 @@ msgctxt ""
msgid "Fractions"
msgstr ""
-#. .WP!
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -248,7 +222,6 @@ msgctxt ""
msgid "Thin space"
msgstr ""
-#. ^7+^
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -257,7 +230,6 @@ msgctxt ""
msgid "Double spaces"
msgstr ""
-#. Au8_
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -266,7 +238,6 @@ msgctxt ""
msgid "More spaces"
msgstr ""
-#. $g\3
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -275,7 +246,6 @@ msgctxt ""
msgid "Indices"
msgstr ""
-#. Rhh5
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -284,7 +254,6 @@ msgctxt ""
msgid "Minus"
msgstr ""
-#. (bpf
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
@@ -293,7 +262,6 @@ msgctxt ""
msgid "Measurements"
msgstr ""
-#. 8dyI
#: hu_HU_en_US.properties
msgctxt ""
"hu_HU_en_US.properties\n"
diff --git a/source/ur/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po b/source/ur/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po
index ae42db1471c..5abcb089f11 100644
--- a/source/ur/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po
+++ b/source/ur/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po
@@ -1,10 +1,9 @@
#. extracted from dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office
-#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-02-24 14:47+0200\n"
"Last-Translator: Yasir <urdulizer@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. *[P5
#: OptionsDialog.xcu
msgctxt ""
"OptionsDialog.xcu\n"
@@ -26,7 +24,6 @@ msgctxt ""
msgid "Dictionaries"
msgstr ""
-#. (=QA
#: OptionsDialog.xcu
msgctxt ""
"OptionsDialog.xcu\n"
diff --git a/source/ur/dictionaries/it_IT.po b/source/ur/dictionaries/it_IT.po
index d5049168ced..78982948157 100644
--- a/source/ur/dictionaries/it_IT.po
+++ b/source/ur/dictionaries/it_IT.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 3)CA
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/ku_TR.po b/source/ur/dictionaries/ku_TR.po
index fb3daca154f..4309b4be0c8 100644
--- a/source/ur/dictionaries/ku_TR.po
+++ b/source/ur/dictionaries/ku_TR.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. S-Qn
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/lt_LT.po b/source/ur/dictionaries/lt_LT.po
index bc2e4fdcdc3..a684bf59851 100644
--- a/source/ur/dictionaries/lt_LT.po
+++ b/source/ur/dictionaries/lt_LT.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. tL*^
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/lv_LV.po b/source/ur/dictionaries/lv_LV.po
index ede044cf1b4..4352e31bcb7 100644
--- a/source/ur/dictionaries/lv_LV.po
+++ b/source/ur/dictionaries/lv_LV.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. _J-[
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/ne_NP.po b/source/ur/dictionaries/ne_NP.po
index 113360afcaf..e326eb8ffb8 100644
--- a/source/ur/dictionaries/ne_NP.po
+++ b/source/ur/dictionaries/ne_NP.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. x+],
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/nl_NL.po b/source/ur/dictionaries/nl_NL.po
index 18c1899e65b..2f4977b1f3e 100644
--- a/source/ur/dictionaries/nl_NL.po
+++ b/source/ur/dictionaries/nl_NL.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. =]Af
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/no.po b/source/ur/dictionaries/no.po
index d9db00bbc3e..6d29a026488 100644
--- a/source/ur/dictionaries/no.po
+++ b/source/ur/dictionaries/no.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ifIT
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/oc_FR.po b/source/ur/dictionaries/oc_FR.po
index bab2ee09a43..77b27c53671 100644
--- a/source/ur/dictionaries/oc_FR.po
+++ b/source/ur/dictionaries/oc_FR.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. H,N3
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/pl_PL.po b/source/ur/dictionaries/pl_PL.po
index b28edbfccdd..3f4fe54dccf 100644
--- a/source/ur/dictionaries/pl_PL.po
+++ b/source/ur/dictionaries/pl_PL.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. f%I^
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/pt_BR.po b/source/ur/dictionaries/pt_BR.po
index 75475823b29..9e451f3bee0 100644
--- a/source/ur/dictionaries/pt_BR.po
+++ b/source/ur/dictionaries/pt_BR.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,11 +14,10 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. =qP5
#: description.xml
msgctxt ""
"description.xml\n"
"dispname\n"
"description.text"
-msgid "Brazilian Portuguese spelling Dictionary (1990 Spelling Agreement), and hyphenation rules"
+msgid "Spelling, hyphenation and grammar checking tools for Brazilian Portuguese"
msgstr ""
diff --git a/source/ur/dictionaries/pt_BR/dialog.po b/source/ur/dictionaries/pt_BR/dialog.po
new file mode 100644
index 00000000000..9c502cf5cc5
--- /dev/null
+++ b/source/ur/dictionaries/pt_BR/dialog.po
@@ -0,0 +1,311 @@
+#. extracted from dictionaries/pt_BR/dialog
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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: ur\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: LibreOffice\n"
+"X-Accelerator-Marker: ~\n"
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"spelling\n"
+"property.text"
+msgid "Grammar checking"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_grammar\n"
+"property.text"
+msgid "Check more grammar errors."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"grammar\n"
+"property.text"
+msgid "Possible mistakes"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_cap\n"
+"property.text"
+msgid "Check missing capitalization of sentences."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"cap\n"
+"property.text"
+msgid "Capitalization"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_dup\n"
+"property.text"
+msgid "Check repeated words."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"dup\n"
+"property.text"
+msgid "Word duplication"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_pair\n"
+"property.text"
+msgid "Check missing or extra parentheses and quotation marks."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"pair\n"
+"property.text"
+msgid "Parentheses"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"punctuation\n"
+"property.text"
+msgid "Punctuation"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_spaces\n"
+"property.text"
+msgid "Check single spaces between words."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"spaces\n"
+"property.text"
+msgid "Word spacing"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_mdash\n"
+"property.text"
+msgid "Force unspaced em dash instead of spaced en dash."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"mdash\n"
+"property.text"
+msgid "Em dash"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_ndash\n"
+"property.text"
+msgid "Force spaced en dash instead of unspaced em dash."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"ndash\n"
+"property.text"
+msgid "En dash"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_quotation\n"
+"property.text"
+msgid "Check double quotation marks: \"x\" → “x”"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"quotation\n"
+"property.text"
+msgid "Quotation marks"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_times\n"
+"property.text"
+msgid "Check true multiplication sign: 5x5 → 5×5"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"times\n"
+"property.text"
+msgid "Multiplication sign"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_spaces2\n"
+"property.text"
+msgid "Check single spaces between sentences."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"spaces2\n"
+"property.text"
+msgid "Sentence spacing"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_spaces3\n"
+"property.text"
+msgid "Check more than two extra space characters between words and sentences."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"spaces3\n"
+"property.text"
+msgid "More spaces"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_minus\n"
+"property.text"
+msgid "Change hyphen characters to real minus signs."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"minus\n"
+"property.text"
+msgid "Minus sign"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_apostrophe\n"
+"property.text"
+msgid "Change typewriter apostrophe, single quotation marks and correct double primes."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"apostrophe\n"
+"property.text"
+msgid "Apostrophe"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_ellipsis\n"
+"property.text"
+msgid "Change three dots with ellipsis."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"ellipsis\n"
+"property.text"
+msgid "Ellipsis"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"others\n"
+"property.text"
+msgid "Others"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_metric\n"
+"property.text"
+msgid "Measurement conversion from °F, mph, ft, in, lb, gal and miles."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"metric\n"
+"property.text"
+msgid "Convert to metric (°C, km/h, m, kg, l)"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_numsep\n"
+"property.text"
+msgid "Common (1000000 → 1,000,000) or ISO (1000000 → 1 000 000)."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"numsep\n"
+"property.text"
+msgid "Thousand separation of large numbers"
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"hlp_nonmetric\n"
+"property.text"
+msgid "Measurement conversion from °C; km/h; cm, m, km; kg; l."
+msgstr ""
+
+#: pt_BR_en_US.properties
+msgctxt ""
+"pt_BR_en_US.properties\n"
+"nonmetric\n"
+"property.text"
+msgid "Convert to non-metric (°F, mph, ft, lb, gal)"
+msgstr ""
diff --git a/source/ur/librelogo/source.po b/source/ur/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
index 121cf95eb6b..d971fcf9066 100644
--- a/source/ur/librelogo/source.po
+++ b/source/ur/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
@@ -1,10 +1,9 @@
-#. extracted from librelogo/source
-#, fuzzy
+#. extracted from dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -12,24 +11,23 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ylN4
-#: description.xml
+#: OptionsDialog.xcu
msgctxt ""
-"description.xml\n"
-"dispname\n"
-"description.text"
-msgid "LibreLogo"
+"OptionsDialog.xcu\n"
+"..OptionsDialog.Nodes.org.openoffice.lightproof\n"
+"Label\n"
+"value.text"
+msgid "Dictionaries"
msgstr ""
-#. F@CV
-#: description.xml
+#: OptionsDialog.xcu
msgctxt ""
-"description.xml\n"
-"extdesc\n"
-"description.text"
-msgid "Programming language and environment for education, graphic design and desktop publishing. Usage: View→Toolbars→Logo toolbar in Writer. See Logo in LibreOffice Help.\n"
+"OptionsDialog.xcu\n"
+"..OptionsDialog.Nodes.org.openoffice.lightproof.Leaves.org.openoffice.lightproof.pt_BR\n"
+"Label\n"
+"value.text"
+msgid "Grammar checking (Portuguese)"
msgstr ""
diff --git a/source/ur/dictionaries/pt_PT.po b/source/ur/dictionaries/pt_PT.po
index e0c83fa3fa9..ee7292f6e3b 100644
--- a/source/ur/dictionaries/pt_PT.po
+++ b/source/ur/dictionaries/pt_PT.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. mWcf
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/ro.po b/source/ur/dictionaries/ro.po
index b2840b243f7..628bf3dc2b2 100644
--- a/source/ur/dictionaries/ro.po
+++ b/source/ur/dictionaries/ro.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 8Eaa
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/ru_RU.po b/source/ur/dictionaries/ru_RU.po
index ae35689298a..01e803f6a7f 100644
--- a/source/ur/dictionaries/ru_RU.po
+++ b/source/ur/dictionaries/ru_RU.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. XCYX
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/ru_RU/dialog.po b/source/ur/dictionaries/ru_RU/dialog.po
index a0f6cde2b89..44e7820c9ae 100644
--- a/source/ur/dictionaries/ru_RU/dialog.po
+++ b/source/ur/dictionaries/ru_RU/dialog.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. cG^a
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Abbreviation"
msgstr ""
-#. y{T{
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "Grammar"
msgstr ""
-#. 7CWi
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "Compound words with hyphen"
msgstr ""
-#. [nFL
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -50,7 +46,6 @@ msgctxt ""
msgid "Comma usage"
msgstr ""
-#. .ahk
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -59,7 +54,6 @@ msgctxt ""
msgid "General error"
msgstr ""
-#. 2ZRv
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -68,7 +62,6 @@ msgctxt ""
msgid "Multiword expressions"
msgstr ""
-#. 0gNL
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -77,7 +70,6 @@ msgctxt ""
msgid "Together/separately"
msgstr ""
-#. Jm1Q
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -86,7 +78,6 @@ msgctxt ""
msgid "Proofreading"
msgstr ""
-#. u^sY
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -95,7 +86,6 @@ msgctxt ""
msgid "Space mistake"
msgstr ""
-#. *e_$
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -104,7 +94,6 @@ msgctxt ""
msgid "Typographica"
msgstr ""
-#. 0^;9
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -113,7 +102,6 @@ msgctxt ""
msgid "Word duplication"
msgstr ""
-#. {_8V
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -122,7 +110,6 @@ msgctxt ""
msgid "Others"
msgstr ""
-#. )UB#
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
@@ -131,7 +118,6 @@ msgctxt ""
msgid "Separation of large numbers (ISO)"
msgstr ""
-#. 1D6y
#: ru_RU_en_US.properties
msgctxt ""
"ru_RU_en_US.properties\n"
diff --git a/source/ur/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po b/source/ur/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po
index b149d6340c8..b2e80a074e1 100644
--- a/source/ur/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po
+++ b/source/ur/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po
@@ -1,10 +1,9 @@
#. extracted from dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office
-#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-02-24 14:47+0200\n"
"Last-Translator: Yasir <urdulizer@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. :g40
#: OptionsDialog.xcu
msgctxt ""
"OptionsDialog.xcu\n"
@@ -26,7 +24,6 @@ msgctxt ""
msgid "Dictionaries"
msgstr ""
-#. \hWw
#: OptionsDialog.xcu
msgctxt ""
"OptionsDialog.xcu\n"
diff --git a/source/ur/dictionaries/si_LK.po b/source/ur/dictionaries/si_LK.po
index 95739de143c..46fd31a8552 100644
--- a/source/ur/dictionaries/si_LK.po
+++ b/source/ur/dictionaries/si_LK.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. %WZE
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/sk_SK.po b/source/ur/dictionaries/sk_SK.po
index 46a3b7e4e72..2ecf297f84b 100644
--- a/source/ur/dictionaries/sk_SK.po
+++ b/source/ur/dictionaries/sk_SK.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. IJ[6
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/sl_SI.po b/source/ur/dictionaries/sl_SI.po
index c7ed4f6df00..87a82e1dceb 100644
--- a/source/ur/dictionaries/sl_SI.po
+++ b/source/ur/dictionaries/sl_SI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. c7;T
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/sr.po b/source/ur/dictionaries/sr.po
index 6109a62250f..314287a6b75 100644
--- a/source/ur/dictionaries/sr.po
+++ b/source/ur/dictionaries/sr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. !)vU
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/sv_SE.po b/source/ur/dictionaries/sv_SE.po
index 3864eeb767d..b934e7b20fc 100644
--- a/source/ur/dictionaries/sv_SE.po
+++ b/source/ur/dictionaries/sv_SE.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Mcgn
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/sw_TZ.po b/source/ur/dictionaries/sw_TZ.po
index 767c43644bd..97054e5134e 100644
--- a/source/ur/dictionaries/sw_TZ.po
+++ b/source/ur/dictionaries/sw_TZ.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. c6!@
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/te_IN.po b/source/ur/dictionaries/te_IN.po
index dc7d431c5b9..aa373aeb67d 100644
--- a/source/ur/dictionaries/te_IN.po
+++ b/source/ur/dictionaries/te_IN.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. USC3
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/th_TH.po b/source/ur/dictionaries/th_TH.po
index 056faf2037a..a4fca67b7b2 100644
--- a/source/ur/dictionaries/th_TH.po
+++ b/source/ur/dictionaries/th_TH.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. oK5)
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/uk_UA.po b/source/ur/dictionaries/uk_UA.po
index 32be9ae9f55..a50b5218505 100644
--- a/source/ur/dictionaries/uk_UA.po
+++ b/source/ur/dictionaries/uk_UA.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. mB1I
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/vi.po b/source/ur/dictionaries/vi.po
index 75f4b6a0e68..afcb0b3b143 100644
--- a/source/ur/dictionaries/vi.po
+++ b/source/ur/dictionaries/vi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. F(qG
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/dictionaries/zu_ZA.po b/source/ur/dictionaries/zu_ZA.po
index a072be5f38c..f523b89e3c8 100644
--- a/source/ur/dictionaries/zu_ZA.po
+++ b/source/ur/dictionaries/zu_ZA.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ;UVp
#: description.xml
msgctxt ""
"description.xml\n"
diff --git a/source/ur/editeng/source/accessibility.po b/source/ur/editeng/source/accessibility.po
index 68fde99b9cd..d7d1a83512d 100644
--- a/source/ur/editeng/source/accessibility.po
+++ b/source/ur/editeng/source/accessibility.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. t5il
#: accessibility.src
msgctxt ""
"accessibility.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Image bullet in paragraph"
msgstr ""
-#. 8|X!
#: accessibility.src
msgctxt ""
"accessibility.src\n"
diff --git a/source/ur/editeng/source/editeng.po b/source/ur/editeng/source/editeng.po
index c65e9b4039a..89047bc6ad9 100644
--- a/source/ur/editeng/source/editeng.po
+++ b/source/ur/editeng/source/editeng.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 2(*p
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Delete"
msgstr ""
-#. I3}j
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "Move"
msgstr ""
-#. I?T;
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "Insert"
msgstr ""
-#. eGK$
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -50,7 +46,6 @@ msgctxt ""
msgid "Replace"
msgstr ""
-#. 4/p.
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -59,7 +54,6 @@ msgctxt ""
msgid "Apply attributes"
msgstr ""
-#. uWM0
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -68,7 +62,6 @@ msgctxt ""
msgid "Reset attributes"
msgstr ""
-#. :oTC
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -77,7 +70,6 @@ msgctxt ""
msgid "Indent"
msgstr ""
-#. B%=0
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -86,7 +78,6 @@ msgctxt ""
msgid "Apply Styles"
msgstr ""
-#. H~}+
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -95,7 +86,6 @@ msgctxt ""
msgid "~Change Case"
msgstr ""
-#. x`g8
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "~Spellcheck..."
msgstr ""
-#. k]@@
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -115,7 +104,6 @@ msgctxt ""
msgid "~Add"
msgstr ""
-#. bR{%
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -125,7 +113,6 @@ msgctxt ""
msgid "~Add"
msgstr ""
-#. W}8j
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -135,7 +122,6 @@ msgctxt ""
msgid "Ignore All"
msgstr ""
-#. Z}FQ
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -145,7 +131,6 @@ msgctxt ""
msgid "AutoCorrect"
msgstr ""
-#. 6huV
#: editeng.src
msgctxt ""
"editeng.src\n"
@@ -154,7 +139,6 @@ msgctxt ""
msgid "Word is %x"
msgstr ""
-#. NpM!
#: editeng.src
msgctxt ""
"editeng.src\n"
diff --git a/source/ur/editeng/source/items.po b/source/ur/editeng/source/items.po
index c48824892ad..8f840ff55e6 100644
--- a/source/ur/editeng/source/items.po
+++ b/source/ur/editeng/source/items.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-02-24 15:57+0200\n"
"Last-Translator: Yasir <urdulizer@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. `m0)
#: page.src
msgctxt ""
"page.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Paper tray"
msgstr ""
-#. `IKX
#: page.src
msgctxt ""
"page.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "[From printer settings]"
msgstr ""
-#. MppO
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "True"
msgstr "درست"
-#. W*j@
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "False"
msgstr "جھوٹ"
-#. a`*i
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "No break"
msgstr ""
-#. peH?
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Break before new column"
msgstr ""
-#. w_,F
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Break after new column"
msgstr ""
-#. 7Pc(
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Break before and after new column"
msgstr ""
-#. -_lp
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Break before new page"
msgstr ""
-#. u/3c
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Break after new page"
msgstr ""
-#. `{Y?
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "Break before and after new page"
msgstr ""
-#. ~ObJ
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "No Shadow"
msgstr ""
-#. RgUU
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -132,7 +119,6 @@ msgctxt ""
msgid "Shadow top left"
msgstr ""
-#. H0}V
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -141,7 +127,6 @@ msgctxt ""
msgid "Shadow top right"
msgstr ""
-#. 1mbn
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -150,7 +135,6 @@ msgctxt ""
msgid "Shadow bottom left"
msgstr ""
-#. ipm;
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -159,7 +143,6 @@ msgctxt ""
msgid "Shadow bottom right"
msgstr ""
-#. f5u9
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -168,7 +151,6 @@ msgctxt ""
msgid "Color "
msgstr ""
-#. Gz2%
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -177,7 +159,6 @@ msgctxt ""
msgid "Black"
msgstr ""
-#. %BRR
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -186,7 +167,6 @@ msgctxt ""
msgid "Blue"
msgstr ""
-#. ?3E,
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -195,7 +175,6 @@ msgctxt ""
msgid "Green"
msgstr ""
-#. F:Qc
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -204,7 +183,6 @@ msgctxt ""
msgid "Cyan"
msgstr ""
-#. xbPR
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -213,7 +191,6 @@ msgctxt ""
msgid "Red"
msgstr ""
-#. X*L,
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -222,7 +199,6 @@ msgctxt ""
msgid "Magenta"
msgstr ""
-#. 4E^B
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -231,7 +207,6 @@ msgctxt ""
msgid "Brown"
msgstr ""
-#. T+Tb
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -240,7 +215,6 @@ msgctxt ""
msgid "Gray"
msgstr ""
-#. [e-U
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -249,7 +223,6 @@ msgctxt ""
msgid "Light Gray"
msgstr ""
-#. =tA|
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -258,7 +231,6 @@ msgctxt ""
msgid "Light Blue"
msgstr ""
-#. EO_G
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -267,7 +239,6 @@ msgctxt ""
msgid "Light Green"
msgstr ""
-#. M:z@
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -276,7 +247,6 @@ msgctxt ""
msgid "Light Cyan"
msgstr ""
-#. K8J,
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -285,7 +255,6 @@ msgctxt ""
msgid "Light Red"
msgstr ""
-#. 4U[n
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -294,7 +263,6 @@ msgctxt ""
msgid "Light Magenta"
msgstr ""
-#. @ebO
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -303,7 +271,6 @@ msgctxt ""
msgid "Yellow"
msgstr ""
-#. aboy
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -312,7 +279,6 @@ msgctxt ""
msgid "White"
msgstr ""
-#. Ko*D
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -321,7 +287,6 @@ msgctxt ""
msgid "Not Italic"
msgstr ""
-#. o{,0
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -330,7 +295,6 @@ msgctxt ""
msgid "Oblique italic"
msgstr ""
-#. 3ju/
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -339,7 +303,6 @@ msgctxt ""
msgid "Italic"
msgstr ""
-#. !5hY
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -348,7 +311,6 @@ msgctxt ""
msgid "thin"
msgstr ""
-#. odl:
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -357,7 +319,6 @@ msgctxt ""
msgid "ultra thin"
msgstr ""
-#. HAPs
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -366,7 +327,6 @@ msgctxt ""
msgid "light"
msgstr ""
-#. li?X
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -375,7 +335,6 @@ msgctxt ""
msgid "semi light"
msgstr ""
-#. );gy
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -384,7 +343,6 @@ msgctxt ""
msgid "normal"
msgstr ""
-#. cK$~
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -393,7 +351,6 @@ msgctxt ""
msgid "medium"
msgstr ""
-#. lHA+
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -402,7 +359,6 @@ msgctxt ""
msgid "semi bold"
msgstr ""
-#. 35-f
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -411,7 +367,6 @@ msgctxt ""
msgid "bold"
msgstr ""
-#. Q@mS
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -420,7 +375,6 @@ msgctxt ""
msgid "ultra bold"
msgstr ""
-#. EdRE
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -429,7 +383,6 @@ msgctxt ""
msgid "black"
msgstr ""
-#. szk;
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -438,7 +391,6 @@ msgctxt ""
msgid "No underline"
msgstr ""
-#. N$`=
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -447,7 +399,6 @@ msgctxt ""
msgid "Single underline"
msgstr ""
-#. e=TH
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -456,7 +407,6 @@ msgctxt ""
msgid "Double underline"
msgstr ""
-#. 9F#d
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -465,7 +415,6 @@ msgctxt ""
msgid "Dotted underline"
msgstr ""
-#. uglo
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -474,7 +423,6 @@ msgctxt ""
msgid "Underline"
msgstr ""
-#. ^o2G
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -483,7 +431,6 @@ msgctxt ""
msgid "Underline (dashes)"
msgstr ""
-#. LtkP
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -492,7 +439,6 @@ msgctxt ""
msgid "Underline (long dashes)"
msgstr ""
-#. c|Oo
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -501,7 +447,6 @@ msgctxt ""
msgid "Underline (dot dash)"
msgstr ""
-#. q:--
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -510,7 +455,6 @@ msgctxt ""
msgid "Underline (dot dot dash)"
msgstr ""
-#. [5A\
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -519,7 +463,6 @@ msgctxt ""
msgid "Underline (small wave)"
msgstr ""
-#. JfbI
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -528,7 +471,6 @@ msgctxt ""
msgid "Underline (Wave)"
msgstr ""
-#. HFTP
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -537,7 +479,6 @@ msgctxt ""
msgid "Underline (Double wave)"
msgstr ""
-#. jY!%
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -546,7 +487,6 @@ msgctxt ""
msgid "Underlined (Bold)"
msgstr ""
-#. mG2U
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -555,7 +495,6 @@ msgctxt ""
msgid "Dotted underline (Bold)"
msgstr ""
-#. ,fcU
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -564,7 +503,6 @@ msgctxt ""
msgid "Underline (Dash bold)"
msgstr ""
-#. p^I/
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -573,7 +511,6 @@ msgctxt ""
msgid "Underline (long dash, bold)"
msgstr ""
-#. K:|d
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -582,7 +519,6 @@ msgctxt ""
msgid "Underline (dot dash, bold)"
msgstr ""
-#. X}gG
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -591,7 +527,6 @@ msgctxt ""
msgid "Underline (dot dot dash, bold)"
msgstr ""
-#. RX8\
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -600,7 +535,6 @@ msgctxt ""
msgid "Underline (wave, bold)"
msgstr ""
-#. FTF7
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -609,7 +543,6 @@ msgctxt ""
msgid "No overline"
msgstr ""
-#. lf:R
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -618,7 +551,6 @@ msgctxt ""
msgid "Single overline"
msgstr ""
-#. Y}-d
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -627,7 +559,6 @@ msgctxt ""
msgid "Double overline"
msgstr ""
-#. 1`6|
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -636,7 +567,6 @@ msgctxt ""
msgid "Dotted overline"
msgstr ""
-#. ^k=5
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -645,7 +575,6 @@ msgctxt ""
msgid "Overline"
msgstr ""
-#. l3!R
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -654,7 +583,6 @@ msgctxt ""
msgid "Overline (dashes)"
msgstr ""
-#. rj?D
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -663,7 +591,6 @@ msgctxt ""
msgid "Overline (long dashes)"
msgstr ""
-#. AXoK
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -672,7 +599,6 @@ msgctxt ""
msgid "Overline (dot dash)"
msgstr ""
-#. qnHq
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -681,7 +607,6 @@ msgctxt ""
msgid "Overline (dot dot dash)"
msgstr ""
-#. F*p|
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -690,7 +615,6 @@ msgctxt ""
msgid "Overline (small wave)"
msgstr ""
-#. 4iNC
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -699,7 +623,6 @@ msgctxt ""
msgid "Overline (Wave)"
msgstr ""
-#. c_R/
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -708,7 +631,6 @@ msgctxt ""
msgid "Overline (Double wave)"
msgstr ""
-#. q1=d
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -717,7 +639,6 @@ msgctxt ""
msgid "Overlined (Bold)"
msgstr ""
-#. N*cM
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -726,7 +647,6 @@ msgctxt ""
msgid "Dotted overline (Bold)"
msgstr ""
-#. (]`L
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -735,7 +655,6 @@ msgctxt ""
msgid "Overline (Dash bold)"
msgstr ""
-#. FUNs
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -744,7 +663,6 @@ msgctxt ""
msgid "Overline (long dash, bold)"
msgstr ""
-#. ?GOU
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -753,7 +671,6 @@ msgctxt ""
msgid "Overline (dot dash, bold)"
msgstr ""
-#. 9Al%
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -762,7 +679,6 @@ msgctxt ""
msgid "Overline (dot dot dash, bold)"
msgstr ""
-#. |.\k
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -771,7 +687,6 @@ msgctxt ""
msgid "Overline (wave, bold)"
msgstr ""
-#. @w7S
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -780,7 +695,6 @@ msgctxt ""
msgid "No strikethrough"
msgstr ""
-#. o?fU
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -789,7 +703,6 @@ msgctxt ""
msgid "Single strikethrough"
msgstr ""
-#. =QVc
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -798,7 +711,6 @@ msgctxt ""
msgid "Double strikethrough"
msgstr ""
-#. CAd5
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -807,7 +719,6 @@ msgctxt ""
msgid "Bold strikethrough"
msgstr ""
-#. zN]L
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -816,7 +727,6 @@ msgctxt ""
msgid "Strike through with slash"
msgstr ""
-#. *\\Y
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -825,7 +735,6 @@ msgctxt ""
msgid "Strike through with Xes"
msgstr ""
-#. m3z=
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -834,7 +743,6 @@ msgctxt ""
msgid "None"
msgstr ""
-#. %t+X
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -843,7 +751,6 @@ msgctxt ""
msgid "Caps"
msgstr ""
-#. obX:
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -852,7 +759,6 @@ msgctxt ""
msgid "Lowercase"
msgstr ""
-#. 6z+n
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -861,7 +767,6 @@ msgctxt ""
msgid "Title"
msgstr "عنوان"
-#. L@(9
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -870,7 +775,6 @@ msgctxt ""
msgid "Small caps"
msgstr ""
-#. ?]?J
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -879,7 +783,6 @@ msgctxt ""
msgid "Normal position"
msgstr ""
-#. \G84
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -888,7 +791,6 @@ msgctxt ""
msgid "Superscript "
msgstr ""
-#. qZ|8
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -897,7 +799,6 @@ msgctxt ""
msgid "Subscript "
msgstr ""
-#. P~==
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -906,7 +807,6 @@ msgctxt ""
msgid "automatic"
msgstr "خودکار"
-#. hf\G
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -915,7 +815,6 @@ msgctxt ""
msgid "Align left"
msgstr ""
-#. **?b
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -924,7 +823,6 @@ msgctxt ""
msgid "Align right"
msgstr ""
-#. iEy0
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -933,7 +831,6 @@ msgctxt ""
msgid "Justify"
msgstr ""
-#. .*zC
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -942,7 +839,6 @@ msgctxt ""
msgid "Centered"
msgstr ""
-#. H\^F
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -951,7 +847,6 @@ msgctxt ""
msgid "Justify"
msgstr ""
-#. abYQ
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -960,7 +855,6 @@ msgctxt ""
msgid "Decimal Symbol:"
msgstr ""
-#. _?Pd
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -969,7 +863,6 @@ msgctxt ""
msgid "Fill character:"
msgstr ""
-#. DdJk
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -978,7 +871,6 @@ msgctxt ""
msgid "Left"
msgstr ""
-#. m`AD
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -987,7 +879,6 @@ msgctxt ""
msgid "Right"
msgstr ""
-#. BF!U
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -996,7 +887,6 @@ msgctxt ""
msgid "Decimal"
msgstr ""
-#. Sw@L
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1005,7 +895,6 @@ msgctxt ""
msgid "Centered"
msgstr ""
-#. !ag-
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1014,7 +903,6 @@ msgctxt ""
msgid "Default"
msgstr ""
-#. FCe]
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1023,7 +911,6 @@ msgctxt ""
msgid "Single, solid"
msgstr ""
-#. kc`~
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1032,7 +919,6 @@ msgctxt ""
msgid "Single, dotted"
msgstr ""
-#. ?|Lh
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1041,7 +927,6 @@ msgctxt ""
msgid "Single, dashed"
msgstr ""
-#. G/WV
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1050,7 +935,6 @@ msgctxt ""
msgid "Double"
msgstr ""
-#. eyJ5
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1059,7 +943,6 @@ msgctxt ""
msgid "Double, inside: fine, outside: thick, spacing: small"
msgstr ""
-#. WXz9
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1068,7 +951,6 @@ msgctxt ""
msgid "Double, inside: fine, outside: thick, spacing: medium"
msgstr ""
-#. CGqI
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1077,7 +959,6 @@ msgctxt ""
msgid "Double, inside: fine, outside: thick, spacing: large"
msgstr ""
-#. 6f!m
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1086,7 +967,6 @@ msgctxt ""
msgid "Double, inside: thick, outside: fine, spacing: small"
msgstr ""
-#. R7_s
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1095,7 +975,6 @@ msgctxt ""
msgid "Double, inside: thick, outside: fine, spacing: medium"
msgstr ""
-#. b8Mc
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1104,7 +983,6 @@ msgctxt ""
msgid "Double, inside: thick, outside: fine, spacing: large"
msgstr ""
-#. mTj=
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1113,7 +991,6 @@ msgctxt ""
msgid "3D embossed"
msgstr ""
-#. +uB$
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1122,7 +999,6 @@ msgctxt ""
msgid "3D engraved"
msgstr ""
-#. @9bK
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1131,7 +1007,6 @@ msgctxt ""
msgid "Inset"
msgstr ""
-#. xK@k
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1140,7 +1015,6 @@ msgctxt ""
msgid "Outset"
msgstr ""
-#. `ZBO
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1149,7 +1023,6 @@ msgctxt ""
msgid "mm"
msgstr ""
-#. EcCb
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1158,7 +1031,6 @@ msgctxt ""
msgid "cm"
msgstr ""
-#. _j4`
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1167,7 +1039,6 @@ msgctxt ""
msgid "inch"
msgstr ""
-#. VdV@
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1176,7 +1047,6 @@ msgctxt ""
msgid "pt"
msgstr ""
-#. +ad@
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1185,7 +1055,6 @@ msgctxt ""
msgid "twip"
msgstr ""
-#. L2/C
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1194,7 +1063,6 @@ msgctxt ""
msgid "pixel"
msgstr ""
-#. L,,X
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1203,7 +1071,6 @@ msgctxt ""
msgid "Shadowed"
msgstr ""
-#. 3H|c
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1212,7 +1079,6 @@ msgctxt ""
msgid "Not Shadowed"
msgstr ""
-#. Kux+
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1221,7 +1087,6 @@ msgctxt ""
msgid "Blinking"
msgstr ""
-#. j`^^
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1230,7 +1095,6 @@ msgctxt ""
msgid "Not Blinking"
msgstr ""
-#. ![q=
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1239,7 +1103,6 @@ msgctxt ""
msgid "Pair Kerning"
msgstr ""
-#. TIB$
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1248,7 +1111,6 @@ msgctxt ""
msgid "No pair kerning"
msgstr ""
-#. mgJt
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1257,7 +1119,6 @@ msgctxt ""
msgid "Individual words"
msgstr ""
-#. cYB4
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1266,7 +1127,6 @@ msgctxt ""
msgid "Not Words Only"
msgstr ""
-#. F/+g
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1275,7 +1135,6 @@ msgctxt ""
msgid "Outline"
msgstr ""
-#. =AiM
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1284,7 +1143,6 @@ msgctxt ""
msgid "No Outline"
msgstr ""
-#. Sns]
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1293,7 +1151,6 @@ msgctxt ""
msgid "Print"
msgstr ""
-#. %k)M
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1302,7 +1159,6 @@ msgctxt ""
msgid "Don't print"
msgstr ""
-#. 2(i2
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1311,7 +1167,6 @@ msgctxt ""
msgid "Opaque"
msgstr ""
-#. h\3[
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1320,7 +1175,6 @@ msgctxt ""
msgid "Not Opaque"
msgstr ""
-#. n[YX
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1329,7 +1183,6 @@ msgctxt ""
msgid "Keep with next paragraph"
msgstr ""
-#. E+PN
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1338,7 +1191,6 @@ msgctxt ""
msgid "Don't Keep Paragraphs Together"
msgstr ""
-#. L^La
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1347,7 +1199,6 @@ msgctxt ""
msgid "Split paragraph"
msgstr ""
-#. =ft_
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1356,7 +1207,6 @@ msgctxt ""
msgid "Don't split paragraph"
msgstr ""
-#. HUJg
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1365,7 +1215,6 @@ msgctxt ""
msgid "Contents protected"
msgstr ""
-#. S9WM
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1374,7 +1223,6 @@ msgctxt ""
msgid "Contents not protected"
msgstr ""
-#. WZ:q
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1383,7 +1231,6 @@ msgctxt ""
msgid "Size protected"
msgstr ""
-#. H5Z3
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1392,7 +1239,6 @@ msgctxt ""
msgid "Size not protected"
msgstr ""
-#. ^?hm
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1401,7 +1247,6 @@ msgctxt ""
msgid "Position protected"
msgstr ""
-#. [D=9
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1410,7 +1255,6 @@ msgctxt ""
msgid "Position not protected"
msgstr ""
-#. 1V=y
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1419,7 +1263,6 @@ msgctxt ""
msgid "Transparent"
msgstr ""
-#. el]e
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1428,7 +1271,6 @@ msgctxt ""
msgid "Not Transparent"
msgstr ""
-#. 8-~R
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1437,7 +1279,6 @@ msgctxt ""
msgid "Hyphenation"
msgstr ""
-#. :n)[
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1446,7 +1287,6 @@ msgctxt ""
msgid "No hyphenation"
msgstr ""
-#. l7o|
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1455,7 +1295,6 @@ msgctxt ""
msgid "Page End"
msgstr ""
-#. Ig0C
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1464,7 +1303,6 @@ msgctxt ""
msgid "No Page End"
msgstr ""
-#. V-)G
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1473,7 +1311,6 @@ msgctxt ""
msgid "Width: "
msgstr ""
-#. H3%V
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1482,7 +1319,6 @@ msgctxt ""
msgid "Height: "
msgstr ""
-#. IFQW
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1491,7 +1327,6 @@ msgctxt ""
msgid "Indent left "
msgstr ""
-#. wPF\
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1500,7 +1335,6 @@ msgctxt ""
msgid "First Line "
msgstr ""
-#. }=:d
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1509,7 +1343,6 @@ msgctxt ""
msgid "Indent right "
msgstr ""
-#. ]t)3
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1518,7 +1351,6 @@ msgctxt ""
msgid "Shadow: "
msgstr ""
-#. )owa
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1527,7 +1359,6 @@ msgctxt ""
msgid "Borders "
msgstr ""
-#. 0/=_
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1536,7 +1367,6 @@ msgctxt ""
msgid "No border"
msgstr ""
-#. 5Jwo
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1545,7 +1375,6 @@ msgctxt ""
msgid "top "
msgstr ""
-#. /e]Y
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1554,7 +1383,6 @@ msgctxt ""
msgid "bottom "
msgstr ""
-#. ;(mv
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1563,7 +1391,6 @@ msgctxt ""
msgid "left "
msgstr ""
-#. ,lN3
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1572,7 +1399,6 @@ msgctxt ""
msgid "right "
msgstr ""
-#. JYEV
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1581,7 +1407,6 @@ msgctxt ""
msgid "Spacing "
msgstr ""
-#. tGk.
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1590,7 +1415,6 @@ msgctxt ""
msgid "From top "
msgstr ""
-#. ]4[1
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1600,7 +1424,6 @@ msgid "From bottom "
msgstr ""
#. pb: %1 == will be replaced by the number of lines
-#. ^}/r
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1609,7 +1432,6 @@ msgctxt ""
msgid "%1 Lines"
msgstr ""
-#. QB%S
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1618,7 +1440,6 @@ msgctxt ""
msgid "Widow control"
msgstr ""
-#. ;.?^
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1627,7 +1448,6 @@ msgctxt ""
msgid "Orphan control"
msgstr ""
-#. -_VD
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1636,7 +1456,6 @@ msgctxt ""
msgid "Characters at end of line"
msgstr ""
-#. SB9k
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1645,7 +1464,6 @@ msgctxt ""
msgid "Characters at beginning of line"
msgstr ""
-#. w8tr
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1654,7 +1472,6 @@ msgctxt ""
msgid "Hyphens"
msgstr ""
-#. *rD3
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1663,7 +1480,6 @@ msgctxt ""
msgid "Page Style: "
msgstr ""
-#. O/gB
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1672,7 +1488,6 @@ msgctxt ""
msgid "Kerning "
msgstr ""
-#. 5J^q
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1681,7 +1496,6 @@ msgctxt ""
msgid "locked "
msgstr ""
-#. ELkw
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1690,7 +1504,6 @@ msgctxt ""
msgid "Condensed "
msgstr ""
-#. 6FdL
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -1700,7 +1513,6 @@ msgctxt ""
msgid "Graphic"
msgstr "نقوش"
-#. Is0j
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1709,7 +1521,6 @@ msgctxt ""
msgid "none"
msgstr ""
-#. x]rG
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1718,7 +1529,6 @@ msgctxt ""
msgid "Dots "
msgstr ""
-#. |@}S
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1727,7 +1537,6 @@ msgctxt ""
msgid "Circle "
msgstr ""
-#. _Z:L
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1736,7 +1545,6 @@ msgctxt ""
msgid "Filled circle "
msgstr ""
-#. ^s+%
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1745,7 +1553,6 @@ msgctxt ""
msgid "Accent "
msgstr ""
-#. /fjz
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1754,7 +1561,6 @@ msgctxt ""
msgid "Above"
msgstr ""
-#. 7v=/
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1763,7 +1569,6 @@ msgctxt ""
msgid "Below"
msgstr ""
-#. ,81g
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1772,7 +1577,6 @@ msgctxt ""
msgid "Double-lined off"
msgstr ""
-#. i/uh
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1781,7 +1585,6 @@ msgctxt ""
msgid "Double-lined"
msgstr ""
-#. @8IO
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1790,7 +1593,6 @@ msgctxt ""
msgid "No automatic character spacing"
msgstr ""
-#. [keR
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1799,7 +1601,6 @@ msgctxt ""
msgid "No automatic character spacing"
msgstr ""
-#. Vwk5
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1808,7 +1609,6 @@ msgctxt ""
msgid "No hanging punctuation at line end"
msgstr ""
-#. l[0A
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1817,7 +1617,6 @@ msgctxt ""
msgid "Hanging punctuation at line end"
msgstr ""
-#. :lQ)
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1826,7 +1625,6 @@ msgctxt ""
msgid "Apply list of forbidden characters to beginning and end of lines"
msgstr ""
-#. RI,4
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1835,7 +1633,6 @@ msgctxt ""
msgid "Don't apply list of forbidden characters to beginning and end of lines"
msgstr ""
-#. ?|XU
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1844,7 +1641,6 @@ msgctxt ""
msgid "No rotated characters"
msgstr ""
-#. 4tJ;
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1853,7 +1649,6 @@ msgctxt ""
msgid "Character rotated by $(ARG1)°"
msgstr ""
-#. 8EOh
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1862,7 +1657,6 @@ msgctxt ""
msgid "Fit to line"
msgstr ""
-#. Dzb7
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1871,7 +1665,6 @@ msgctxt ""
msgid "Characters scaled $(ARG1)%"
msgstr ""
-#. AbZe
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1880,7 +1673,6 @@ msgctxt ""
msgid "No scaled characters"
msgstr ""
-#. 5cf5
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1889,7 +1681,6 @@ msgctxt ""
msgid "No relief"
msgstr ""
-#. 02\+
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1898,7 +1689,6 @@ msgctxt ""
msgid "Relief"
msgstr ""
-#. /MSK
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1907,7 +1697,6 @@ msgctxt ""
msgid "Engraved"
msgstr ""
-#. s-*X
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1916,7 +1705,6 @@ msgctxt ""
msgid "Automatic text alignment"
msgstr ""
-#. B1S1
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1925,7 +1713,6 @@ msgctxt ""
msgid "Text aligned to base line"
msgstr ""
-#. )7Zr
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1934,7 +1721,6 @@ msgctxt ""
msgid "Text aligned top"
msgstr ""
-#. _J)X
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1943,7 +1729,6 @@ msgctxt ""
msgid "Text aligned middle"
msgstr ""
-#. x^OA
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1952,7 +1737,6 @@ msgctxt ""
msgid "Text aligned bottom"
msgstr ""
-#. 7,nz
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1961,7 +1745,6 @@ msgctxt ""
msgid "Text direction left-to-right (horizontal)"
msgstr ""
-#. 5)6s
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1970,7 +1753,6 @@ msgctxt ""
msgid "Text direction right-to-left (horizontal)"
msgstr ""
-#. kof^
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1979,7 +1761,6 @@ msgctxt ""
msgid "Text direction right-to-left (vertical)"
msgstr ""
-#. ?T`o
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1988,7 +1769,6 @@ msgctxt ""
msgid "Text direction left-to-right (vertical)"
msgstr ""
-#. JXGc
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -1997,7 +1777,6 @@ msgctxt ""
msgid "Use superordinate object text direction setting"
msgstr ""
-#. fM`2
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2006,7 +1785,6 @@ msgctxt ""
msgid "Paragraph snaps to text grid (if active)"
msgstr ""
-#. #A/P
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2015,7 +1793,6 @@ msgctxt ""
msgid "Paragraph does not snap to text grid"
msgstr ""
-#. UKdN
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2024,7 +1801,6 @@ msgctxt ""
msgid "Not hidden"
msgstr ""
-#. YeN,
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2033,7 +1809,6 @@ msgctxt ""
msgid "Hidden"
msgstr ""
-#. G^l9
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2042,7 +1817,6 @@ msgctxt ""
msgid "Horizontal alignment default"
msgstr ""
-#. l`jc
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2051,7 +1825,6 @@ msgctxt ""
msgid "Align left"
msgstr ""
-#. R}h[
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2060,7 +1833,6 @@ msgctxt ""
msgid "Centered horizontally"
msgstr ""
-#. .{Z*
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2069,7 +1841,6 @@ msgctxt ""
msgid "Align right"
msgstr ""
-#. 8RRN
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2078,7 +1849,6 @@ msgctxt ""
msgid "Justify"
msgstr ""
-#. $V)3
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2087,7 +1857,6 @@ msgctxt ""
msgid "Repeat alignment"
msgstr ""
-#. k;]C
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2096,7 +1865,6 @@ msgctxt ""
msgid "Vertical alignment default"
msgstr ""
-#. gsee
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2105,7 +1873,6 @@ msgctxt ""
msgid "Align to top"
msgstr ""
-#. j)er
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2114,7 +1881,6 @@ msgctxt ""
msgid "Centered vertically"
msgstr ""
-#. !nb,
#: svxitems.src
msgctxt ""
"svxitems.src\n"
@@ -2123,7 +1889,6 @@ msgctxt ""
msgid "Align to bottom"
msgstr ""
-#. r}Pq
#: svxitems.src
#, fuzzy
msgctxt ""
@@ -2133,7 +1898,6 @@ msgctxt ""
msgid "Automatic"
msgstr "خودکار"
-#. i89j
#: svxitems.src
msgctxt ""
"svxitems.src\n"
diff --git a/source/ur/editeng/source/misc.po b/source/ur/editeng/source/misc.po
index 63e95f2e903..d96fcee6c3b 100644
--- a/source/ur/editeng/source/misc.po
+++ b/source/ur/editeng/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. ;GN0
#: lingu.src
msgctxt ""
"lingu.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Continue checking at beginning of document?"
msgstr ""
-#. (XiS
#: lingu.src
msgctxt ""
"lingu.src\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "Continue checking at end of document?"
msgstr ""
-#. Dg\]
#: lingu.src
msgctxt ""
"lingu.src\n"
@@ -43,7 +40,6 @@ msgid ""
"Please check your installation and install the desired language\n"
msgstr ""
-#. F]n]
#: lingu.src
msgctxt ""
"lingu.src\n"
@@ -54,7 +50,6 @@ msgid ""
"due to unknown reason."
msgstr ""
-#. q)8|
#: lingu.src
msgctxt ""
"lingu.src\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "The dictionary is already full."
msgstr ""
-#. 4a]{
#: lingu.src
msgctxt ""
"lingu.src\n"
diff --git a/source/ur/editeng/source/outliner.po b/source/ur/editeng/source/outliner.po
index 8a9fe583d87..05c1afcd9f3 100644
--- a/source/ur/editeng/source/outliner.po
+++ b/source/ur/editeng/source/outliner.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. k.GI
#: outliner.src
msgctxt ""
"outliner.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Move"
msgstr ""
-#. Wp7d
#: outliner.src
msgctxt ""
"outliner.src\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "Indent"
msgstr ""
-#. 1S}L
#: outliner.src
msgctxt ""
"outliner.src\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "Show subpoints"
msgstr ""
-#. 9_,d
#: outliner.src
msgctxt ""
"outliner.src\n"
@@ -50,7 +46,6 @@ msgctxt ""
msgid "Collapse"
msgstr ""
-#. {RTY
#: outliner.src
msgctxt ""
"outliner.src\n"
@@ -59,7 +54,6 @@ msgctxt ""
msgid "Apply attributes"
msgstr ""
-#. \`,S
#: outliner.src
msgctxt ""
"outliner.src\n"
diff --git a/source/ur/extensions/source/abpilot.po b/source/ur/extensions/source/abpilot.po
index df8dd7bfe0c..9501936d030 100644
--- a/source/ur/extensions/source/abpilot.po
+++ b/source/ur/extensions/source/abpilot.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 1JQo
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Address book type"
msgstr ""
-#. 8JN?
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "Connection Settings"
msgstr ""
-#. yQ$-
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "Table selection"
msgstr ""
-#. ?#w,
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "Field Assignment"
msgstr ""
-#. 3KqL
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -64,7 +59,6 @@ msgctxt ""
msgid "Data Source Title"
msgstr ""
-#. ?|S3
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "Address Book Data Source Wizard"
msgstr ""
-#. mg}~
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -86,7 +79,6 @@ msgid ""
"This wizard helps you create the data source."
msgstr ""
-#. IP/A
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -96,7 +88,6 @@ msgctxt ""
msgid "Please select the type of your external address book:"
msgstr ""
-#. [#-P
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -106,7 +97,6 @@ msgctxt ""
msgid "Evolution"
msgstr ""
-#. p#S3
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -116,7 +106,6 @@ msgctxt ""
msgid "Groupwise"
msgstr ""
-#. fe\.
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -126,7 +115,6 @@ msgctxt ""
msgid "Evolution LDAP"
msgstr ""
-#. VyMn
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -136,7 +124,6 @@ msgctxt ""
msgid "Mozilla / Netscape"
msgstr ""
-#. \np^
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -146,7 +133,6 @@ msgctxt ""
msgid "Thunderbird/Icedove"
msgstr ""
-#. L|c=
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -156,7 +142,6 @@ msgctxt ""
msgid "KDE address book"
msgstr ""
-#. V7Xp
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -166,7 +151,6 @@ msgctxt ""
msgid "Mac OS X address book"
msgstr ""
-#. YD2R
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -176,7 +160,6 @@ msgctxt ""
msgid "LDAP address data"
msgstr ""
-#. /ZAL
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -186,7 +169,6 @@ msgctxt ""
msgid "Outlook address book"
msgstr ""
-#. vA$Z
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -196,7 +178,6 @@ msgctxt ""
msgid "Windows system address book"
msgstr ""
-#. Zg(X
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -206,7 +187,6 @@ msgctxt ""
msgid "Other external data source"
msgstr ""
-#. WWX%
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -219,7 +199,6 @@ msgid ""
"Click the following button to open another dialog in which you then enter the necessary information."
msgstr ""
-#. N(1@
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -229,7 +208,6 @@ msgctxt ""
msgid "Settings"
msgstr ""
-#. !_df
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -241,7 +219,6 @@ msgid ""
"Before you proceed, please check the settings made, or (on the previous page) choose another address data source type."
msgstr ""
-#. 3Vhd
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -253,7 +230,6 @@ msgid ""
"Please select the one you mainly want to work with:"
msgstr ""
-#. oTnN
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -268,7 +244,6 @@ msgid ""
"Click the button below to open another dialog where you can enter the settings for your data source."
msgstr ""
-#. YNt9
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -278,7 +253,6 @@ msgctxt ""
msgid "Field Assignment"
msgstr ""
-#. e@G8
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -291,7 +265,6 @@ msgid ""
"Now, just enter the name under which you want to register the data source in %PRODUCTNAME."
msgstr ""
-#. WJF6
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -301,7 +274,6 @@ msgctxt ""
msgid "Location"
msgstr ""
-#. a.A8
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -311,7 +283,6 @@ msgctxt ""
msgid "Browse..."
msgstr ""
-#. kmv1
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -321,7 +292,6 @@ msgctxt ""
msgid "Make this address book available to all modules in %PRODUCTNAME."
msgstr ""
-#. y47[
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -331,7 +301,6 @@ msgctxt ""
msgid "Address book name"
msgstr ""
-#. dv^{
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -341,7 +310,6 @@ msgctxt ""
msgid "Another data source already has this name. As data sources have to have globally unique names, you need to choose another one."
msgstr ""
-#. SDu;
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -350,7 +318,6 @@ msgctxt ""
msgid "Please select a type of address book."
msgstr ""
-#. B=Hq
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -361,7 +328,6 @@ msgid ""
"Do you want to set it up as an address data source, anyway?"
msgstr ""
-#. I07?
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -372,7 +338,6 @@ msgid ""
"Do you want to set it up as an address data source, anyway?"
msgstr ""
-#. JX@8
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -381,7 +346,6 @@ msgctxt ""
msgid "Addresses"
msgstr ""
-#. angg
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -390,7 +354,6 @@ msgctxt ""
msgid "Create Address Data Source"
msgstr ""
-#. ?E#@
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -399,7 +362,6 @@ msgctxt ""
msgid "The connection could not be established."
msgstr ""
-#. 0q1K
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -408,7 +370,6 @@ msgctxt ""
msgid "Please check the settings made for the data source."
msgstr ""
-#. GOTt
#: abspilot.src
msgctxt ""
"abspilot.src\n"
@@ -417,7 +378,6 @@ msgctxt ""
msgid "Address Data - Field Assignment"
msgstr ""
-#. 3r2n
#: abspilot.src
msgctxt ""
"abspilot.src\n"
diff --git a/source/ur/extensions/source/bibliography.po b/source/ur/extensions/source/bibliography.po
index 13bd49badec..28c4b0bfc51 100644
--- a/source/ur/extensions/source/bibliography.po
+++ b/source/ur/extensions/source/bibliography.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. Rbhw
#: datman.src
msgctxt ""
"datman.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Column names"
msgstr ""
-#. ItOt
#: datman.src
msgctxt ""
"datman.src\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "<none>"
msgstr ""
-#. 4hv1
#: datman.src
msgctxt ""
"datman.src\n"
@@ -43,7 +40,6 @@ msgctxt ""
msgid "Column Layout for Table %1"
msgstr ""
-#. lzUI
#: datman.src
msgctxt ""
"datman.src\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "Entry"
msgstr ""
-#. K=~*
#: datman.src
msgctxt ""
"datman.src\n"
@@ -62,7 +57,6 @@ msgctxt ""
msgid "Choose Data Source"
msgstr ""
-#. H25O
#: toolbar.src
#, fuzzy
msgctxt ""
@@ -73,7 +67,6 @@ msgctxt ""
msgid "Table"
msgstr "جدول"
-#. mlEM
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -83,7 +76,6 @@ msgctxt ""
msgid "Search Key"
msgstr ""
-#. $WWh
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -93,7 +85,6 @@ msgctxt ""
msgid "AutoFilter"
msgstr ""
-#. /bA7
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -103,7 +94,6 @@ msgctxt ""
msgid "Standard Filter"
msgstr ""
-#. ^rxA
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -113,7 +103,6 @@ msgctxt ""
msgid "Remove Filter"
msgstr ""
-#. I7e}
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -123,7 +112,6 @@ msgctxt ""
msgid "Column Arrangement"
msgstr ""
-#. pr!1
#: toolbar.src
msgctxt ""
"toolbar.src\n"
@@ -133,7 +121,6 @@ msgctxt ""
msgid "Data Source"
msgstr ""
-#. Kp#/
#: bib.src
msgctxt ""
"bib.src\n"
@@ -142,7 +129,6 @@ msgctxt ""
msgid "Field selection:"
msgstr ""
-#. !{]?
#: bib.src
msgctxt ""
"bib.src\n"
@@ -151,7 +137,6 @@ msgctxt ""
msgid "Table;Query;Sql;Sql [Native]"
msgstr ""
-#. Npkk
#: bib.src
msgctxt ""
"bib.src\n"
@@ -160,7 +145,6 @@ msgctxt ""
msgid "Bibliography Database"
msgstr ""
-#. 3iZl
#: bib.src
msgctxt ""
"bib.src\n"
@@ -169,7 +153,6 @@ msgctxt ""
msgid "Do you want to edit the column arrangement?"
msgstr ""
-#. _;+#
#: sections.src
msgctxt ""
"sections.src\n"
@@ -179,7 +162,6 @@ msgctxt ""
msgid "The following column names could not be assigned:\n"
msgstr ""
-#. ;*(N
#: sections.src
msgctxt ""
"sections.src\n"
@@ -189,7 +171,6 @@ msgctxt ""
msgid "Article"
msgstr ""
-#. 1fmq
#: sections.src
msgctxt ""
"sections.src\n"
@@ -199,7 +180,6 @@ msgctxt ""
msgid "Book"
msgstr ""
-#. cD62
#: sections.src
msgctxt ""
"sections.src\n"
@@ -209,7 +189,6 @@ msgctxt ""
msgid "Brochures"
msgstr ""
-#. [.Aq
#: sections.src
msgctxt ""
"sections.src\n"
@@ -219,7 +198,6 @@ msgctxt ""
msgid "Conference proceedings"
msgstr ""
-#. p*hM
#: sections.src
msgctxt ""
"sections.src\n"
@@ -229,7 +207,6 @@ msgctxt ""
msgid "Book excerpt"
msgstr ""
-#. JdB*
#: sections.src
msgctxt ""
"sections.src\n"
@@ -239,7 +216,6 @@ msgctxt ""
msgid "Book excerpt with title"
msgstr ""
-#. 8y.1
#: sections.src
msgctxt ""
"sections.src\n"
@@ -249,7 +225,6 @@ msgctxt ""
msgid "Conference proceedings"
msgstr ""
-#. JH,h
#: sections.src
msgctxt ""
"sections.src\n"
@@ -259,7 +234,6 @@ msgctxt ""
msgid "Journal"
msgstr ""
-#. Tl@B
#: sections.src
msgctxt ""
"sections.src\n"
@@ -269,7 +243,6 @@ msgctxt ""
msgid "Techn. documentation"
msgstr ""
-#. =rwC
#: sections.src
msgctxt ""
"sections.src\n"
@@ -279,7 +252,6 @@ msgctxt ""
msgid "Thesis"
msgstr ""
-#. }C\Z
#: sections.src
msgctxt ""
"sections.src\n"
@@ -289,7 +261,6 @@ msgctxt ""
msgid "Miscellaneous"
msgstr ""
-#. 8zYB
#: sections.src
msgctxt ""
"sections.src\n"
@@ -299,7 +270,6 @@ msgctxt ""
msgid "Dissertation"
msgstr ""
-#. wb((
#: sections.src
msgctxt ""
"sections.src\n"
@@ -309,7 +279,6 @@ msgctxt ""
msgid "Conference proceedings"
msgstr ""
-#. 0G{o
#: sections.src
msgctxt ""
"sections.src\n"
@@ -319,7 +288,6 @@ msgctxt ""
msgid "Research report"
msgstr ""
-#. t03R
#: sections.src
msgctxt ""
"sections.src\n"
@@ -329,7 +297,6 @@ msgctxt ""
msgid "Unpublished"
msgstr ""
-#. bKkA
#: sections.src
msgctxt ""
"sections.src\n"
@@ -339,7 +306,6 @@ msgctxt ""
msgid "e-mail"
msgstr ""
-#. {\=i
#: sections.src
msgctxt ""
"sections.src\n"
@@ -349,7 +315,6 @@ msgctxt ""
msgid "WWW document"
msgstr ""
-#. lK:k
#: sections.src
msgctxt ""
"sections.src\n"
@@ -359,7 +324,6 @@ msgctxt ""
msgid "User-defined1"
msgstr ""
-#. ,fWi
#: sections.src
msgctxt ""
"sections.src\n"
@@ -369,7 +333,6 @@ msgctxt ""
msgid "User-defined2"
msgstr ""
-#. -3Q0
#: sections.src
msgctxt ""
"sections.src\n"
@@ -379,7 +342,6 @@ msgctxt ""
msgid "User-defined3"
msgstr ""
-#. dUYp
#: sections.src
msgctxt ""
"sections.src\n"
@@ -389,7 +351,6 @@ msgctxt ""
msgid "User-defined4"
msgstr ""
-#. eDcN
#: sections.src
msgctxt ""
"sections.src\n"
@@ -399,7 +360,6 @@ msgctxt ""
msgid "User-defined5"
msgstr ""
-#. ;|`$
#: sections.src
msgctxt ""
"sections.src\n"
@@ -408,7 +368,6 @@ msgctxt ""
msgid "General"
msgstr ""
-#. k4y+
#: sections.src
msgctxt ""
"sections.src\n"
@@ -418,7 +377,6 @@ msgctxt ""
msgid "Insert Section..."
msgstr ""
-#. e(F]
#: sections.src
msgctxt ""
"sections.src\n"
@@ -428,7 +386,6 @@ msgctxt ""
msgid "Delete Section..."
msgstr ""
-#. v$!9
#: sections.src
msgctxt ""
"sections.src\n"
@@ -438,7 +395,6 @@ msgctxt ""
msgid "Modify Name..."
msgstr ""
-#. Vtq4
#: sections.src
msgctxt ""
"sections.src\n"
@@ -447,7 +403,6 @@ msgctxt ""
msgid "~Short name"
msgstr ""
-#. I3)Y
#: sections.src
msgctxt ""
"sections.src\n"
@@ -456,7 +411,6 @@ msgctxt ""
msgid "~Type"
msgstr ""
-#. Y#d(
#: sections.src
msgctxt ""
"sections.src\n"
@@ -465,7 +419,6 @@ msgctxt ""
msgid "~Year"
msgstr ""
-#. DjB2
#: sections.src
msgctxt ""
"sections.src\n"
@@ -474,7 +427,6 @@ msgctxt ""
msgid "Author(s)"
msgstr ""
-#. PHsi
#: sections.src
#, fuzzy
msgctxt ""
@@ -484,7 +436,6 @@ msgctxt ""
msgid "Tit~le"
msgstr "عنوان"
-#. *,8A
#: sections.src
msgctxt ""
"sections.src\n"
@@ -493,7 +444,6 @@ msgctxt ""
msgid "~Publisher"
msgstr ""
-#. Z__r
#: sections.src
msgctxt ""
"sections.src\n"
@@ -502,7 +452,6 @@ msgctxt ""
msgid "A~ddress"
msgstr ""
-#. ;ep$
#: sections.src
msgctxt ""
"sections.src\n"
@@ -511,7 +460,6 @@ msgctxt ""
msgid "~ISBN"
msgstr ""
-#. r*ku
#: sections.src
msgctxt ""
"sections.src\n"
@@ -520,7 +468,6 @@ msgctxt ""
msgid "~Chapter"
msgstr ""
-#. TmGf
#: sections.src
msgctxt ""
"sections.src\n"
@@ -529,7 +476,6 @@ msgctxt ""
msgid "Pa~ge(s)"
msgstr ""
-#. bPZS
#: sections.src
msgctxt ""
"sections.src\n"
@@ -538,7 +484,6 @@ msgctxt ""
msgid "Editor"
msgstr ""
-#. dPQC
#: sections.src
msgctxt ""
"sections.src\n"
@@ -547,7 +492,6 @@ msgctxt ""
msgid "Ed~ition"
msgstr ""
-#. DF`,
#: sections.src
msgctxt ""
"sections.src\n"
@@ -556,7 +500,6 @@ msgctxt ""
msgid "~Book title"
msgstr ""
-#. 7,dY
#: sections.src
msgctxt ""
"sections.src\n"
@@ -565,7 +508,6 @@ msgctxt ""
msgid "Volume"
msgstr ""
-#. @b{R
#: sections.src
msgctxt ""
"sections.src\n"
@@ -574,7 +516,6 @@ msgctxt ""
msgid "Publication t~ype"
msgstr ""
-#. X8VI
#: sections.src
msgctxt ""
"sections.src\n"
@@ -583,7 +524,6 @@ msgctxt ""
msgid "Organi~zation"
msgstr ""
-#. *?bv
#: sections.src
msgctxt ""
"sections.src\n"
@@ -592,7 +532,6 @@ msgctxt ""
msgid "Instit~ution"
msgstr ""
-#. 7UuL
#: sections.src
msgctxt ""
"sections.src\n"
@@ -601,7 +540,6 @@ msgctxt ""
msgid "University"
msgstr ""
-#. [A!K
#: sections.src
msgctxt ""
"sections.src\n"
@@ -610,7 +548,6 @@ msgctxt ""
msgid "Type of re~port"
msgstr ""
-#. Y9}k
#: sections.src
msgctxt ""
"sections.src\n"
@@ -619,7 +556,6 @@ msgctxt ""
msgid "~Month"
msgstr ""
-#. [1\(
#: sections.src
msgctxt ""
"sections.src\n"
@@ -628,7 +564,6 @@ msgctxt ""
msgid "~Journal"
msgstr ""
-#. sr\i
#: sections.src
msgctxt ""
"sections.src\n"
@@ -637,7 +572,6 @@ msgctxt ""
msgid "Numb~er"
msgstr ""
-#. r;~e
#: sections.src
msgctxt ""
"sections.src\n"
@@ -646,7 +580,6 @@ msgctxt ""
msgid "Se~ries"
msgstr ""
-#. L|jB
#: sections.src
msgctxt ""
"sections.src\n"
@@ -655,7 +588,6 @@ msgctxt ""
msgid "Ann~otation"
msgstr ""
-#. ]bo0
#: sections.src
msgctxt ""
"sections.src\n"
@@ -664,7 +596,6 @@ msgctxt ""
msgid "~Note"
msgstr ""
-#. M*U:
#: sections.src
msgctxt ""
"sections.src\n"
@@ -673,7 +604,6 @@ msgctxt ""
msgid "URL"
msgstr ""
-#. FPm5
#: sections.src
msgctxt ""
"sections.src\n"
@@ -682,7 +612,6 @@ msgctxt ""
msgid "User-defined field ~1"
msgstr ""
-#. XKC]
#: sections.src
msgctxt ""
"sections.src\n"
@@ -691,7 +620,6 @@ msgctxt ""
msgid "User-defined field ~2"
msgstr ""
-#. _Eg/
#: sections.src
msgctxt ""
"sections.src\n"
@@ -700,7 +628,6 @@ msgctxt ""
msgid "User-defined field ~3"
msgstr ""
-#. #c=)
#: sections.src
msgctxt ""
"sections.src\n"
@@ -709,7 +636,6 @@ msgctxt ""
msgid "User-defined field ~4"
msgstr ""
-#. 7%j|
#: sections.src
msgctxt ""
"sections.src\n"
diff --git a/source/ur/extensions/source/dbpilots.po b/source/ur/extensions/source/dbpilots.po
index 144f836353c..162f6e19380 100644
--- a/source/ur/extensions/source/dbpilots.po
+++ b/source/ur/extensions/source/dbpilots.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. $j3G
#: gridpages.src
msgctxt ""
"gridpages.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Table element"
msgstr ""
-#. :_jY
#: gridpages.src
msgctxt ""
"gridpages.src\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "Existing fields"
msgstr ""
-#. #:,M
#: gridpages.src
msgctxt ""
"gridpages.src\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "Selected fields"
msgstr ""
-#. 1o.W
#: gridpages.src
msgctxt ""
"gridpages.src\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "Field Selection"
msgstr ""
-#. YRh3
#: gridpages.src
msgctxt ""
"gridpages.src\n"
@@ -62,7 +57,6 @@ msgctxt ""
msgid " (Date)"
msgstr ""
-#. f6a;
#: gridpages.src
msgctxt ""
"gridpages.src\n"
@@ -71,7 +65,6 @@ msgctxt ""
msgid " (Time)"
msgstr ""
-#. ssgQ
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -81,7 +74,6 @@ msgctxt ""
msgid "Data"
msgstr ""
-#. (Gpo
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -97,7 +89,6 @@ msgid ""
"Please note that the settings made on this page will take effect immediately upon leaving the page."
msgstr ""
-#. NusL
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -107,7 +98,6 @@ msgctxt ""
msgid "~Data source:"
msgstr ""
-#. LWd7
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -117,7 +107,6 @@ msgctxt ""
msgid "~..."
msgstr ""
-#. JB;F
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -127,7 +116,6 @@ msgctxt ""
msgid "~Table / Query:"
msgstr ""
-#. Or?S
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -136,7 +124,6 @@ msgctxt ""
msgid "Data"
msgstr ""
-#. b3fR
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -146,7 +133,6 @@ msgctxt ""
msgid "Do you want to save the value in a database field?"
msgstr ""
-#. jj8n
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -156,7 +142,6 @@ msgctxt ""
msgid "~Yes, I want to save it in the following database field:"
msgstr ""
-#. c~:7
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -166,7 +151,6 @@ msgctxt ""
msgid "~No, I only want to save the value in the form."
msgstr ""
-#. `:,h
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -175,7 +159,6 @@ msgctxt ""
msgid "Database Field"
msgstr ""
-#. %E`E
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -185,7 +168,6 @@ msgctxt ""
msgid "Form"
msgstr ""
-#. f7bX
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -195,7 +177,6 @@ msgctxt ""
msgid "Data source"
msgstr ""
-#. W+#i
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -205,7 +186,6 @@ msgctxt ""
msgid "Content type"
msgstr ""
-#. gz2*
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -215,7 +195,6 @@ msgctxt ""
msgid "Content"
msgstr ""
-#. +`K`
#: commonpagesdbp.src
#, fuzzy
msgctxt ""
@@ -225,7 +204,6 @@ msgctxt ""
msgid "Table"
msgstr "جدول"
-#. ku*E
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -234,7 +212,6 @@ msgctxt ""
msgid "Query"
msgstr ""
-#. YUJ,
#: commonpagesdbp.src
msgctxt ""
"commonpagesdbp.src\n"
@@ -243,7 +220,6 @@ msgctxt ""
msgid "SQL command"
msgstr ""
-#. P$*+
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -253,7 +229,6 @@ msgctxt ""
msgid "Control"
msgstr ""
-#. BU8b
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -267,7 +242,6 @@ msgid ""
"Choose the table from which the data should be used as basis for the list content:"
msgstr ""
-#. l`Pq
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -276,7 +250,6 @@ msgctxt ""
msgid "Table Selection"
msgstr ""
-#. sd!v
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -286,7 +259,6 @@ msgctxt ""
msgid "Existing fields"
msgstr ""
-#. 8nq/
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -296,7 +268,6 @@ msgctxt ""
msgid "Display field"
msgstr ""
-#. V#k%
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -306,7 +277,6 @@ msgctxt ""
msgid "The contents of the field selected will be shown in the combo box list."
msgstr ""
-#. n4cy
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -316,7 +286,6 @@ msgctxt ""
msgid "The contents of the selected field will be shown in the list box if the linked fields are identical."
msgstr ""
-#. KvoZ
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -325,7 +294,6 @@ msgctxt ""
msgid "Field Selection"
msgstr ""
-#. ,`\f
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -335,7 +303,6 @@ msgctxt ""
msgid "This is where you select fields with matching contents so that the value from the display field will be shown."
msgstr ""
-#. jBo1
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -345,7 +312,6 @@ msgctxt ""
msgid "Field from the ~Value Table"
msgstr ""
-#. ?dLF
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -355,7 +321,6 @@ msgctxt ""
msgid "Field from the ~List Table"
msgstr ""
-#. Lu=F
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -364,7 +329,6 @@ msgctxt ""
msgid "Field Link"
msgstr ""
-#. ,XBB
#: listcombopages.src
msgctxt ""
"listcombopages.src\n"
@@ -373,7 +337,6 @@ msgctxt ""
msgid "You can either save the value of the combo box in a database field or use it for display purposes."
msgstr ""
-#. *d$D
#: dbpilots.src
msgctxt ""
"dbpilots.src\n"
@@ -382,7 +345,6 @@ msgctxt ""
msgid "Group Element Wizard"
msgstr ""
-#. ^P)8
#: dbpilots.src
msgctxt ""
"dbpilots.src\n"
@@ -391,7 +353,6 @@ msgctxt ""
msgid "Table Element Wizard"
msgstr ""
-#. HVB\
#: dbpilots.src
msgctxt ""
"dbpilots.src\n"
@@ -400,7 +361,6 @@ msgctxt ""
msgid "List Box Wizard"
msgstr ""
-#. Sf5W
#: dbpilots.src
msgctxt ""
"dbpilots.src\n"
@@ -409,7 +369,6 @@ msgctxt ""
msgid "Combo Box Wizard"
msgstr ""
-#. D5#]
#: dbpilots.src
msgctxt ""
"dbpilots.src\n"
@@ -418,7 +377,6 @@ msgctxt ""
msgid "The table connection to the data source could not be established."
msgstr ""
-#. yhZH
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -428,7 +386,6 @@ msgctxt ""
msgid "Which ~names do you want to give the option fields?"
msgstr ""
-#. |m2@
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -438,7 +395,6 @@ msgctxt ""
msgid "~Option fields"
msgstr ""
-#. RM_V
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -447,7 +403,6 @@ msgctxt ""
msgid "Data"
msgstr ""
-#. q]+)
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -457,7 +412,6 @@ msgctxt ""
msgid "Should one option field be selected as a default?"
msgstr ""
-#. ^\h?
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -467,7 +421,6 @@ msgctxt ""
msgid "~Yes, the following:"
msgstr ""
-#. pa#G
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -477,7 +430,6 @@ msgctxt ""
msgid "No, one particular field is not going to be selected."
msgstr ""
-#. w!)y
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -486,7 +438,6 @@ msgctxt ""
msgid "Default Field Selection"
msgstr ""
-#. G3K[
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -496,7 +447,6 @@ msgctxt ""
msgid "When you select an option, the option group is given a specific value."
msgstr ""
-#. S.}}
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -506,7 +456,6 @@ msgctxt ""
msgid "Which ~value do you want to assign to each option?"
msgstr ""
-#. 36TA
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -516,7 +465,6 @@ msgctxt ""
msgid "~Option fields"
msgstr ""
-#. n)Xv
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -525,7 +473,6 @@ msgctxt ""
msgid "Field Values"
msgstr ""
-#. r_Vt
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -535,7 +482,6 @@ msgctxt ""
msgid "Which ~caption is to be given to your option group?"
msgstr ""
-#. Ks;\
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -545,7 +491,6 @@ msgctxt ""
msgid "These were all details needed to create the option group."
msgstr ""
-#. %B*Q
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
@@ -554,7 +499,6 @@ msgctxt ""
msgid "Create Option Group"
msgstr ""
-#. 8fp0
#: groupboxpages.src
msgctxt ""
"groupboxpages.src\n"
diff --git a/source/ur/extensions/source/propctrlr.po b/source/ur/extensions/source/propctrlr.po
index 122e712dd63..f761c2787e0 100644
--- a/source/ur/extensions/source/propctrlr.po
+++ b/source/ur/extensions/source/propctrlr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. s^Me
#: newdatatype.src
msgctxt ""
"newdatatype.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Type a name for the new data type:"
msgstr ""
-#. eMQ`
#: newdatatype.src
msgctxt ""
"newdatatype.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "New Data Type"
msgstr ""
-#. gtRM
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -44,7 +41,6 @@ msgid ""
"Please note that this will affect all controls which are bound to this data type."
msgstr ""
-#. rhqo
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "Button"
msgstr ""
-#. a$g)
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -62,7 +57,6 @@ msgctxt ""
msgid "Option Button"
msgstr ""
-#. ;nYX
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -71,7 +65,6 @@ msgctxt ""
msgid "Check Box"
msgstr ""
-#. tPb3
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -80,7 +73,6 @@ msgctxt ""
msgid "Label Field"
msgstr ""
-#. a]FH
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -89,7 +81,6 @@ msgctxt ""
msgid "Group Box"
msgstr ""
-#. bcKT
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -98,7 +89,6 @@ msgctxt ""
msgid "Text Box"
msgstr ""
-#. K2K~
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -107,7 +97,6 @@ msgctxt ""
msgid "Formatted Field"
msgstr ""
-#. BP7h
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -116,7 +105,6 @@ msgctxt ""
msgid "List Box"
msgstr ""
-#. +#b|
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -125,7 +113,6 @@ msgctxt ""
msgid "Combo Box"
msgstr ""
-#. +C`#
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -134,7 +121,6 @@ msgctxt ""
msgid "Image Button"
msgstr ""
-#. O)BT
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -143,7 +129,6 @@ msgctxt ""
msgid "Hidden Control"
msgstr ""
-#. jRM[
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -152,7 +137,6 @@ msgctxt ""
msgid "Control (unknown type)"
msgstr ""
-#. ),$Q
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -161,7 +145,6 @@ msgctxt ""
msgid "Image Control"
msgstr ""
-#. eo0;
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -170,7 +153,6 @@ msgctxt ""
msgid "File Selection"
msgstr ""
-#. ~|#\
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -179,7 +161,6 @@ msgctxt ""
msgid "Date Field"
msgstr ""
-#. `qPz
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -188,7 +169,6 @@ msgctxt ""
msgid "Time Field"
msgstr ""
-#. -lTu
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -197,7 +177,6 @@ msgctxt ""
msgid "Numeric Field"
msgstr ""
-#. \py,
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -206,7 +185,6 @@ msgctxt ""
msgid "Currency Field"
msgstr ""
-#. FWrU
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -215,7 +193,6 @@ msgctxt ""
msgid "Pattern Field"
msgstr ""
-#. J|/E
#: pcrmiscres.src
msgctxt ""
"pcrmiscres.src\n"
@@ -224,7 +201,6 @@ msgctxt ""
msgid "Table Control "
msgstr ""
-#. p$6p
#: taborder.src
msgctxt ""
"taborder.src\n"
@@ -234,7 +210,6 @@ msgctxt ""
msgid "Controls"
msgstr ""
-#. a?R:
#: taborder.src
msgctxt ""
"taborder.src\n"
@@ -244,7 +219,6 @@ msgctxt ""
msgid "Move Up"
msgstr ""
-#. `.-3
#: taborder.src
msgctxt ""
"taborder.src\n"
@@ -254,7 +228,6 @@ msgctxt ""
msgid "Move Down"
msgstr ""
-#. NGJK
#: taborder.src
msgctxt ""
"taborder.src\n"
@@ -264,7 +237,6 @@ msgctxt ""
msgid "Automatic Sort"
msgstr ""
-#. Y)jO
#: taborder.src
msgctxt ""
"taborder.src\n"
@@ -273,7 +245,6 @@ msgctxt ""
msgid "Tab Order"
msgstr ""
-#. 9@:e
#: formlinkdialog.src
msgctxt ""
"formlinkdialog.src\n"
@@ -283,7 +254,6 @@ msgctxt ""
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 ""
-#. njzO
#: formlinkdialog.src
msgctxt ""
"formlinkdialog.src\n"
@@ -292,7 +262,6 @@ msgctxt ""
msgid "Link fields"
msgstr ""
-#. `%6Y
#: formlinkdialog.src
msgctxt ""
"formlinkdialog.src\n"
@@ -301,7 +270,6 @@ msgctxt ""
msgid "Suggest"
msgstr ""
-#. l?+o
#: formlinkdialog.src
msgctxt ""
"formlinkdialog.src\n"
@@ -310,7 +278,6 @@ msgctxt ""
msgid "Sub Form"
msgstr ""
-#. xdX1
#: formlinkdialog.src
msgctxt ""
"formlinkdialog.src\n"
@@ -320,7 +287,6 @@ msgid "Master Form"
msgstr ""
#. # will be replace with a name.
-#. VSK=
#: formlinkdialog.src
msgctxt ""
"formlinkdialog.src\n"
@@ -329,7 +295,6 @@ msgctxt ""
msgid "The columns of '#' could not be retrieved."
msgstr ""
-#. -4:3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -338,7 +303,6 @@ msgctxt ""
msgid "Edit mask"
msgstr ""
-#. _[Y%
#: formres.src
msgctxt ""
"formres.src\n"
@@ -347,7 +311,6 @@ msgctxt ""
msgid "Literal mask"
msgstr ""
-#. C_~0
#: formres.src
#, fuzzy
msgctxt ""
@@ -357,7 +320,6 @@ msgctxt ""
msgid "Read-only"
msgstr "نا~قابل ترمیم"
-#. wp|I
#: formres.src
msgctxt ""
"formres.src\n"
@@ -366,7 +328,6 @@ msgctxt ""
msgid "Enabled"
msgstr ""
-#. ,ML=
#: formres.src
msgctxt ""
"formres.src\n"
@@ -375,7 +336,6 @@ msgctxt ""
msgid "Visible"
msgstr ""
-#. C{q5
#: formres.src
msgctxt ""
"formres.src\n"
@@ -384,7 +344,6 @@ msgctxt ""
msgid "AutoFill"
msgstr ""
-#. \#!;
#: formres.src
msgctxt ""
"formres.src\n"
@@ -393,7 +352,6 @@ msgctxt ""
msgid "Line count"
msgstr ""
-#. :w)d
#: formres.src
msgctxt ""
"formres.src\n"
@@ -402,7 +360,6 @@ msgctxt ""
msgid "Max. text length"
msgstr ""
-#. S?#_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -411,7 +368,6 @@ msgctxt ""
msgid "Spin Button"
msgstr ""
-#. c9H)
#: formres.src
msgctxt ""
"formres.src\n"
@@ -420,7 +376,6 @@ msgctxt ""
msgid "Strict format"
msgstr ""
-#. S?Nz
#: formres.src
msgctxt ""
"formres.src\n"
@@ -429,7 +384,6 @@ msgctxt ""
msgid "Thousands separator"
msgstr ""
-#. uUsL
#: formres.src
msgctxt ""
"formres.src\n"
@@ -438,7 +392,6 @@ msgctxt ""
msgid "Printable"
msgstr ""
-#. 9svO
#: formres.src
msgctxt ""
"formres.src\n"
@@ -447,7 +400,6 @@ msgctxt ""
msgid "URL"
msgstr ""
-#. =B]w
#: formres.src
msgctxt ""
"formres.src\n"
@@ -456,7 +408,6 @@ msgctxt ""
msgid "Frame"
msgstr ""
-#. \;fA
#: formres.src
msgctxt ""
"formres.src\n"
@@ -465,7 +416,6 @@ msgctxt ""
msgid "Help text"
msgstr ""
-#. @[oe
#: formres.src
msgctxt ""
"formres.src\n"
@@ -474,7 +424,6 @@ msgctxt ""
msgid "Help URL"
msgstr ""
-#. 5;yD
#: formres.src
msgctxt ""
"formres.src\n"
@@ -483,7 +432,6 @@ msgctxt ""
msgid "Additional information"
msgstr ""
-#. 8V1v
#: formres.src
msgctxt ""
"formres.src\n"
@@ -492,7 +440,6 @@ msgctxt ""
msgid "Password character"
msgstr ""
-#. {JkO
#: formres.src
msgctxt ""
"formres.src\n"
@@ -501,7 +448,6 @@ msgctxt ""
msgid "Tristate"
msgstr ""
-#. XPsV
#: formres.src
msgctxt ""
"formres.src\n"
@@ -510,7 +456,6 @@ msgctxt ""
msgid "Empty string is NULL"
msgstr ""
-#. gKIe
#: formres.src
msgctxt ""
"formres.src\n"
@@ -519,7 +464,6 @@ msgctxt ""
msgid "Decimal accuracy"
msgstr ""
-#. vDV_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -528,7 +472,6 @@ msgctxt ""
msgid "Graphics"
msgstr "نقوش"
-#. Y6h_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -537,7 +480,6 @@ msgctxt ""
msgid "Default selection"
msgstr ""
-#. {+kZ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -546,7 +488,6 @@ msgctxt ""
msgid "Default button"
msgstr ""
-#. e9*B
#: formres.src
msgctxt ""
"formres.src\n"
@@ -555,7 +496,6 @@ msgctxt ""
msgid "Label Field"
msgstr ""
-#. h`vU
#: formres.src
msgctxt ""
"formres.src\n"
@@ -564,7 +504,6 @@ msgctxt ""
msgid "Label"
msgstr ""
-#. )3wp
#: formres.src
msgctxt ""
"formres.src\n"
@@ -573,7 +512,6 @@ msgctxt ""
msgid "Alignment"
msgstr ""
-#. YPNU
#: formres.src
msgctxt ""
"formres.src\n"
@@ -582,7 +520,6 @@ msgctxt ""
msgid "Vert. Alignment"
msgstr ""
-#. n9SR
#: formres.src
msgctxt ""
"formres.src\n"
@@ -592,7 +529,6 @@ msgctxt ""
msgid "Top"
msgstr ""
-#. L!Y^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -602,7 +538,6 @@ msgctxt ""
msgid "Middle"
msgstr ""
-#. r\~P
#: formres.src
msgctxt ""
"formres.src\n"
@@ -612,7 +547,6 @@ msgctxt ""
msgid "Bottom"
msgstr ""
-#. :K/s
#: formres.src
msgctxt ""
"formres.src\n"
@@ -621,7 +555,6 @@ msgctxt ""
msgid "Graphics alignment"
msgstr ""
-#. S[^Y
#: formres.src
msgctxt ""
"formres.src\n"
@@ -630,7 +563,6 @@ msgctxt ""
msgid "Font"
msgstr ""
-#. Aor5
#: formres.src
msgctxt ""
"formres.src\n"
@@ -639,7 +571,6 @@ msgctxt ""
msgid "Background color"
msgstr ""
-#. r8Bv
#: formres.src
msgctxt ""
"formres.src\n"
@@ -648,7 +579,6 @@ msgctxt ""
msgid "Border"
msgstr ""
-#. H05x
#: formres.src
msgctxt ""
"formres.src\n"
@@ -657,7 +587,6 @@ msgctxt ""
msgid "Icon size"
msgstr ""
-#. lJf2
#: formres.src
msgctxt ""
"formres.src\n"
@@ -667,7 +596,6 @@ msgctxt ""
msgid "Small"
msgstr ""
-#. v.\*
#: formres.src
msgctxt ""
"formres.src\n"
@@ -677,7 +605,6 @@ msgctxt ""
msgid "Large"
msgstr ""
-#. k@aG
#: formres.src
msgctxt ""
"formres.src\n"
@@ -686,7 +613,6 @@ msgctxt ""
msgid "Positioning"
msgstr ""
-#. r@H`
#: formres.src
msgctxt ""
"formres.src\n"
@@ -695,7 +621,6 @@ msgctxt ""
msgid "Navigation"
msgstr ""
-#. 6D{T
#: formres.src
msgctxt ""
"formres.src\n"
@@ -704,7 +629,6 @@ msgctxt ""
msgid "Acting on a record"
msgstr ""
-#. h{oJ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -713,7 +637,6 @@ msgctxt ""
msgid "Filtering / Sorting"
msgstr ""
-#. 0of2
#: formres.src
msgctxt ""
"formres.src\n"
@@ -722,7 +645,6 @@ msgctxt ""
msgid "Horizontal scroll bar"
msgstr ""
-#. !-Kj
#: formres.src
msgctxt ""
"formres.src\n"
@@ -731,7 +653,6 @@ msgctxt ""
msgid "Vertical scroll bar"
msgstr ""
-#. .G=Y
#: formres.src
msgctxt ""
"formres.src\n"
@@ -740,7 +661,6 @@ msgctxt ""
msgid "Word break"
msgstr ""
-#. M@V3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -749,7 +669,6 @@ msgctxt ""
msgid "Multiline input"
msgstr ""
-#. uerX
#: formres.src
msgctxt ""
"formres.src\n"
@@ -758,7 +677,6 @@ msgctxt ""
msgid "Multiselection"
msgstr ""
-#. N0W=
#: formres.src
#, fuzzy
msgctxt ""
@@ -768,7 +686,6 @@ msgctxt ""
msgid "Name"
msgstr "~نام"
-#. *t]/
#: formres.src
msgctxt ""
"formres.src\n"
@@ -777,7 +694,6 @@ msgctxt ""
msgid "Group name"
msgstr ""
-#. ?8N/
#: formres.src
msgctxt ""
"formres.src\n"
@@ -786,7 +702,6 @@ msgctxt ""
msgid "Tab order"
msgstr ""
-#. =xa@
#: formres.src
msgctxt ""
"formres.src\n"
@@ -795,7 +710,6 @@ msgctxt ""
msgid "Mouse wheel scroll"
msgstr ""
-#. i^O.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -804,7 +718,6 @@ msgctxt ""
msgid "Filter"
msgstr ""
-#. M^@9
#: formres.src
msgctxt ""
"formres.src\n"
@@ -813,7 +726,6 @@ msgctxt ""
msgid "Sort"
msgstr ""
-#. AXX0
#: formres.src
msgctxt ""
"formres.src\n"
@@ -822,7 +734,6 @@ msgctxt ""
msgid "Record marker"
msgstr ""
-#. r-jp
#: formres.src
msgctxt ""
"formres.src\n"
@@ -831,7 +742,6 @@ msgctxt ""
msgid "Filter proposal"
msgstr ""
-#. #|_O
#: formres.src
msgctxt ""
"formres.src\n"
@@ -840,7 +750,6 @@ msgctxt ""
msgid "Navigation bar"
msgstr ""
-#. I*I9
#: formres.src
msgctxt ""
"formres.src\n"
@@ -849,7 +758,6 @@ msgctxt ""
msgid "Cycle"
msgstr ""
-#. jek%
#: formres.src
msgctxt ""
"formres.src\n"
@@ -858,7 +766,6 @@ msgctxt ""
msgid "Tabstop"
msgstr ""
-#. ULD~
#: formres.src
msgctxt ""
"formres.src\n"
@@ -867,7 +774,6 @@ msgctxt ""
msgid "Data field"
msgstr ""
-#. _{S8
#: formres.src
msgctxt ""
"formres.src\n"
@@ -876,7 +782,6 @@ msgctxt ""
msgid "Dropdown"
msgstr ""
-#. #|^\
#: formres.src
msgctxt ""
"formres.src\n"
@@ -885,7 +790,6 @@ msgctxt ""
msgid "Bound field"
msgstr ""
-#. 0z+)
#: formres.src
msgctxt ""
"formres.src\n"
@@ -894,7 +798,6 @@ msgctxt ""
msgid "List content"
msgstr ""
-#. ~b3V
#: formres.src
msgctxt ""
"formres.src\n"
@@ -903,7 +806,6 @@ msgctxt ""
msgid "Type of list contents"
msgstr ""
-#. 0T[g
#: formres.src
msgctxt ""
"formres.src\n"
@@ -912,7 +814,6 @@ msgctxt ""
msgid "Content"
msgstr ""
-#. A/Os
#: formres.src
msgctxt ""
"formres.src\n"
@@ -921,7 +822,6 @@ msgctxt ""
msgid "Content type"
msgstr ""
-#. WE*;
#: formres.src
msgctxt ""
"formres.src\n"
@@ -930,7 +830,6 @@ msgctxt ""
msgid "Allow additions"
msgstr ""
-#. F@XG
#: formres.src
msgctxt ""
"formres.src\n"
@@ -939,7 +838,6 @@ msgctxt ""
msgid "Allow deletions"
msgstr ""
-#. -S87
#: formres.src
msgctxt ""
"formres.src\n"
@@ -948,7 +846,6 @@ msgctxt ""
msgid "Allow modifications"
msgstr ""
-#. 4W?_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -957,7 +854,6 @@ msgctxt ""
msgid "Add data only"
msgstr ""
-#. X=]v
#: formres.src
msgctxt ""
"formres.src\n"
@@ -966,7 +862,6 @@ msgctxt ""
msgid "Data source"
msgstr ""
-#. moG/
#: formres.src
msgctxt ""
"formres.src\n"
@@ -975,7 +870,6 @@ msgctxt ""
msgid "Link master fields"
msgstr ""
-#. q@tb
#: formres.src
msgctxt ""
"formres.src\n"
@@ -984,7 +878,6 @@ msgctxt ""
msgid "Link slave fields"
msgstr ""
-#. ODr[
#: formres.src
msgctxt ""
"formres.src\n"
@@ -993,7 +886,6 @@ msgctxt ""
msgid "Value min."
msgstr ""
-#. bp2?
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1002,7 +894,6 @@ msgctxt ""
msgid "Value max."
msgstr ""
-#. [eew
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1011,7 +902,6 @@ msgctxt ""
msgid "Incr./decrement value"
msgstr ""
-#. ]e}P
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1020,7 +910,6 @@ msgctxt ""
msgid "Currency symbol"
msgstr ""
-#. Jl%q
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1029,7 +918,6 @@ msgctxt ""
msgid "Date min."
msgstr ""
-#. iuNO
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1038,7 +926,6 @@ msgctxt ""
msgid "Date max."
msgstr ""
-#. dJPA
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1047,7 +934,6 @@ msgctxt ""
msgid "Date format"
msgstr ""
-#. 33T]
#: formres.src
#, fuzzy
msgctxt ""
@@ -1057,7 +943,6 @@ msgctxt ""
msgid "Selection"
msgstr "~انتخاب"
-#. z|8+
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1066,7 +951,6 @@ msgctxt ""
msgid "Time min."
msgstr ""
-#. K=!B
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1075,7 +959,6 @@ msgctxt ""
msgid "Time max."
msgstr ""
-#. S!5/
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1084,7 +967,6 @@ msgctxt ""
msgid "Time format"
msgstr ""
-#. 3pJn
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1093,7 +975,6 @@ msgctxt ""
msgid "Prefix symbol"
msgstr ""
-#. 4sJ}
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1102,7 +983,6 @@ msgctxt ""
msgid "Value"
msgstr "قیمت"
-#. 9Rdn
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1111,7 +991,6 @@ msgctxt ""
msgid "Formatting"
msgstr ""
-#. ?$EN
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1120,7 +999,6 @@ msgctxt ""
msgid "Class ID"
msgstr ""
-#. qAX(
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1129,7 +1007,6 @@ msgctxt ""
msgid "Height"
msgstr ""
-#. 7:#s
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1138,7 +1015,6 @@ msgctxt ""
msgid "Width"
msgstr ""
-#. n:B.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1147,7 +1023,6 @@ msgctxt ""
msgid "List index"
msgstr ""
-#. $AcG
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1156,7 +1031,6 @@ msgctxt ""
msgid "Row height"
msgstr ""
-#. ?Pek
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1165,7 +1039,6 @@ msgctxt ""
msgid "Fill color"
msgstr ""
-#. ]dkd
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1174,7 +1047,6 @@ msgctxt ""
msgid "Line color"
msgstr ""
-#. 7*Rh
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1183,7 +1055,6 @@ msgctxt ""
msgid "Reference value (on)"
msgstr ""
-#. ndxJ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1192,7 +1063,6 @@ msgctxt ""
msgid "Reference value (off)"
msgstr ""
-#. !d/7
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1201,7 +1071,6 @@ msgctxt ""
msgid "List entries"
msgstr ""
-#. X#ie
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1210,7 +1079,6 @@ msgctxt ""
msgid "Action"
msgstr ""
-#. 5*J.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1219,7 +1087,6 @@ msgctxt ""
msgid "URL"
msgstr ""
-#. $,h2
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1228,7 +1095,6 @@ msgctxt ""
msgid "Type of submission"
msgstr ""
-#. )C4Q
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1237,7 +1103,6 @@ msgctxt ""
msgid "Default status"
msgstr ""
-#. [Y5P
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1246,7 +1111,6 @@ msgctxt ""
msgid "Submission encoding"
msgstr ""
-#. bs(D
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1255,7 +1119,6 @@ msgctxt ""
msgid "Default value"
msgstr ""
-#. 8V5s
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1264,7 +1127,6 @@ msgctxt ""
msgid "Default text"
msgstr ""
-#. m:fJ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1273,7 +1135,6 @@ msgctxt ""
msgid "Default date"
msgstr ""
-#. =9eF
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1282,7 +1143,6 @@ msgctxt ""
msgid "Default time"
msgstr ""
-#. 5\n,
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1291,7 +1151,6 @@ msgctxt ""
msgid "Frame"
msgstr ""
-#. gvBZ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1301,7 +1160,6 @@ msgctxt ""
msgid "Without frame"
msgstr ""
-#. `OE4
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1311,7 +1169,6 @@ msgctxt ""
msgid "3D look"
msgstr ""
-#. WER5
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1321,7 +1178,6 @@ msgctxt ""
msgid "Flat"
msgstr ""
-#. s!/R
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1331,7 +1187,6 @@ msgctxt ""
msgid "Valuelist"
msgstr ""
-#. .DU=
#: formres.src
#, fuzzy
msgctxt ""
@@ -1342,7 +1197,6 @@ msgctxt ""
msgid "Table"
msgstr "جدول"
-#. lo]r
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1352,7 +1206,6 @@ msgctxt ""
msgid "Query"
msgstr ""
-#. Ymw,
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1362,7 +1215,6 @@ msgctxt ""
msgid "Sql"
msgstr ""
-#. ?=gQ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1372,7 +1224,6 @@ msgctxt ""
msgid "Sql [Native]"
msgstr ""
-#. ,S\v
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1382,7 +1233,6 @@ msgctxt ""
msgid "Tablefields"
msgstr ""
-#. Pb[-
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1392,7 +1242,6 @@ msgctxt ""
msgid "Left"
msgstr ""
-#. (^\V
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1402,7 +1251,6 @@ msgctxt ""
msgid "Center"
msgstr ""
-#. d71O
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1412,7 +1260,6 @@ msgctxt ""
msgid "Right"
msgstr ""
-#. Qv,_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1422,7 +1269,6 @@ msgctxt ""
msgid "None"
msgstr ""
-#. envc
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1432,7 +1278,6 @@ msgctxt ""
msgid "Submit form"
msgstr ""
-#. Ncsk
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1442,7 +1287,6 @@ msgctxt ""
msgid "Reset form"
msgstr ""
-#. zk8i
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1452,7 +1296,6 @@ msgctxt ""
msgid "Open document/web page"
msgstr ""
-#. U!^p
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1462,7 +1305,6 @@ msgctxt ""
msgid "First record"
msgstr ""
-#. `DKS
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1472,7 +1314,6 @@ msgctxt ""
msgid "Previous record"
msgstr ""
-#. #tT1
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1482,7 +1323,6 @@ msgctxt ""
msgid "Next record"
msgstr ""
-#. iQf\
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1492,7 +1332,6 @@ msgctxt ""
msgid "Last record"
msgstr ""
-#. K.a;
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1502,7 +1341,6 @@ msgctxt ""
msgid "Save record"
msgstr ""
-#. md:S
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1512,7 +1350,6 @@ msgctxt ""
msgid "Undo data entry"
msgstr ""
-#. ;kox
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1522,7 +1359,6 @@ msgctxt ""
msgid "New record"
msgstr ""
-#. ch,#
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1532,7 +1368,6 @@ msgctxt ""
msgid "Delete record"
msgstr ""
-#. }G3{
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1542,7 +1377,6 @@ msgctxt ""
msgid "Refresh form"
msgstr ""
-#. 39MD
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1552,7 +1386,6 @@ msgctxt ""
msgid "Get"
msgstr ""
-#. nup%
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1562,7 +1395,6 @@ msgctxt ""
msgid "Post"
msgstr ""
-#. .:Px
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1572,7 +1404,6 @@ msgctxt ""
msgid "URL"
msgstr ""
-#. DT?;
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1582,7 +1413,6 @@ msgctxt ""
msgid "Multipart"
msgstr ""
-#. Bght
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1592,7 +1422,6 @@ msgctxt ""
msgid "Text"
msgstr ""
-#. 5SE#
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1602,7 +1431,6 @@ msgctxt ""
msgid "Standard (short)"
msgstr ""
-#. w\.d
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1612,7 +1440,6 @@ msgctxt ""
msgid "Standard (short YY)"
msgstr ""
-#. /649
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1622,7 +1449,6 @@ msgctxt ""
msgid "Standard (short YYYY)"
msgstr ""
-#. =^4t
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1632,7 +1458,6 @@ msgctxt ""
msgid "Standard (long)"
msgstr ""
-#. !q\M
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1642,7 +1467,6 @@ msgctxt ""
msgid "DD/MM/YY"
msgstr ""
-#. x,)s
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1652,7 +1476,6 @@ msgctxt ""
msgid "MM/DD/YY"
msgstr ""
-#. r`c0
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1662,7 +1485,6 @@ msgctxt ""
msgid "YY/MM/DD"
msgstr ""
-#. K1Ia
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1672,7 +1494,6 @@ msgctxt ""
msgid "DD/MM/YYYY"
msgstr ""
-#. F)Ta
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1682,7 +1503,6 @@ msgctxt ""
msgid "MM/DD/YYYY"
msgstr ""
-#. 4moL
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1692,7 +1512,6 @@ msgctxt ""
msgid "YYYY/MM/DD"
msgstr ""
-#. Jk}k
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1702,7 +1521,6 @@ msgctxt ""
msgid "YY-MM-DD"
msgstr ""
-#. iU`H
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1712,7 +1530,6 @@ msgctxt ""
msgid "YYYY-MM-DD"
msgstr ""
-#. oN[8
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1722,7 +1539,6 @@ msgctxt ""
msgid "13:45"
msgstr ""
-#. 4xjn
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1732,7 +1548,6 @@ msgctxt ""
msgid "13:45:00"
msgstr ""
-#. 6MyJ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1742,7 +1557,6 @@ msgctxt ""
msgid "01:45 PM"
msgstr ""
-#. E#X6
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1752,7 +1566,6 @@ msgctxt ""
msgid "01:45:00 PM"
msgstr ""
-#. `UFq
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1762,7 +1575,6 @@ msgctxt ""
msgid "Not Selected"
msgstr ""
-#. K3uO
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1772,7 +1584,6 @@ msgctxt ""
msgid "Selected"
msgstr ""
-#. X_8I
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1782,7 +1593,6 @@ msgctxt ""
msgid "Not Defined"
msgstr ""
-#. Xptb
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1792,7 +1602,6 @@ msgctxt ""
msgid "All records"
msgstr ""
-#. fY_,
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1802,7 +1611,6 @@ msgctxt ""
msgid "Active record"
msgstr ""
-#. VwD6
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1812,7 +1620,6 @@ msgctxt ""
msgid "Current page"
msgstr ""
-#. nM7X
#: formres.src
#, fuzzy
msgctxt ""
@@ -1823,7 +1630,6 @@ msgctxt ""
msgid "No"
msgstr "نهی"
-#. qP@v
#: formres.src
#, fuzzy
msgctxt ""
@@ -1834,7 +1640,6 @@ msgctxt ""
msgid "Yes"
msgstr "جی "
-#. p!5z
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1844,7 +1649,6 @@ msgctxt ""
msgid "Parent Form"
msgstr ""
-#. n8)q
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1854,7 +1658,6 @@ msgctxt ""
msgid "None"
msgstr ""
-#. sS9+
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1864,7 +1667,6 @@ msgctxt ""
msgid "Single"
msgstr ""
-#. .HAc
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1874,7 +1676,6 @@ msgctxt ""
msgid "Multi"
msgstr ""
-#. qWrG
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1884,7 +1685,6 @@ msgctxt ""
msgid "Range"
msgstr ""
-#. \aOo
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1893,7 +1693,6 @@ msgctxt ""
msgid "Fill parameters"
msgstr ""
-#. z1`m
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1902,7 +1701,6 @@ msgctxt ""
msgid "Execute action"
msgstr ""
-#. c{1]
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1911,7 +1709,6 @@ msgctxt ""
msgid "After updating"
msgstr ""
-#. ^aZ=
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1920,7 +1717,6 @@ msgctxt ""
msgid "Before updating"
msgstr ""
-#. 0L4,
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1929,7 +1725,6 @@ msgctxt ""
msgid "Before record action"
msgstr ""
-#. q4W6
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1938,7 +1733,6 @@ msgctxt ""
msgid "After record action"
msgstr ""
-#. o2v`
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1947,7 +1741,6 @@ msgctxt ""
msgid "Confirm deletion"
msgstr ""
-#. M91!
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1956,7 +1749,6 @@ msgctxt ""
msgid "Error occurred"
msgstr ""
-#. :9M2
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1965,7 +1757,6 @@ msgctxt ""
msgid "When receiving focus"
msgstr ""
-#. =o+p
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1974,7 +1765,6 @@ msgctxt ""
msgid "When losing focus"
msgstr ""
-#. [D8#
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1983,7 +1773,6 @@ msgctxt ""
msgid "Item status changed"
msgstr ""
-#. |8SN
#: formres.src
msgctxt ""
"formres.src\n"
@@ -1992,7 +1781,6 @@ msgctxt ""
msgid "Key pressed"
msgstr ""
-#. FW$u
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2001,7 +1789,6 @@ msgctxt ""
msgid "Key released"
msgstr ""
-#. =PkA
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2010,7 +1797,6 @@ msgctxt ""
msgid "When loading"
msgstr ""
-#. ^Kw+
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2019,7 +1805,6 @@ msgctxt ""
msgid "Before reloading"
msgstr ""
-#. 8H0@
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2028,7 +1813,6 @@ msgctxt ""
msgid "When reloading"
msgstr ""
-#. WS3:
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2037,7 +1821,6 @@ msgctxt ""
msgid "Mouse moved while key pressed"
msgstr ""
-#. yr$)
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2046,7 +1829,6 @@ msgctxt ""
msgid "Mouse inside"
msgstr ""
-#. 5,mV
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2055,7 +1837,6 @@ msgctxt ""
msgid "Mouse outside"
msgstr ""
-#. gi#W
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2064,7 +1845,6 @@ msgctxt ""
msgid "Mouse moved"
msgstr ""
-#. si70
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2073,7 +1853,6 @@ msgctxt ""
msgid "Mouse button pressed"
msgstr ""
-#. p!M}
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2082,7 +1861,6 @@ msgctxt ""
msgid "Mouse button released"
msgstr ""
-#. \2se
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2091,7 +1869,6 @@ msgctxt ""
msgid "Before record change"
msgstr ""
-#. YnB!
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2100,7 +1877,6 @@ msgctxt ""
msgid "After record change"
msgstr ""
-#. 5#jX
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2109,7 +1885,6 @@ msgctxt ""
msgid "After resetting"
msgstr ""
-#. $eXM
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2118,7 +1893,6 @@ msgctxt ""
msgid "Prior to reset"
msgstr ""
-#. M14g
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2127,7 +1901,6 @@ msgctxt ""
msgid "Approve action"
msgstr ""
-#. -!|E
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2136,7 +1909,6 @@ msgctxt ""
msgid "Before submitting"
msgstr ""
-#. Frn3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2145,7 +1917,6 @@ msgctxt ""
msgid "Text modified"
msgstr ""
-#. uyNm
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2154,7 +1925,6 @@ msgctxt ""
msgid "Before unloading"
msgstr ""
-#. ;HGO
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2163,7 +1933,6 @@ msgctxt ""
msgid "When unloading"
msgstr ""
-#. (PP(
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2172,7 +1941,6 @@ msgctxt ""
msgid "Changed"
msgstr ""
-#. aKp;
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2181,7 +1949,6 @@ msgctxt ""
msgid "Events"
msgstr ""
-#. @v~z
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2190,7 +1957,6 @@ msgctxt ""
msgid "Analyze SQL command"
msgstr ""
-#. W;0g
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2199,7 +1965,6 @@ msgctxt ""
msgid "PositionX"
msgstr ""
-#. Pjpn
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2208,7 +1973,6 @@ msgctxt ""
msgid "PositionY"
msgstr ""
-#. M6ON
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2217,7 +1981,6 @@ msgctxt ""
msgid "Title"
msgstr "عنوان"
-#. -87E
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2226,7 +1989,6 @@ msgctxt ""
msgid "Page (step)"
msgstr ""
-#. ;kM`
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2235,7 +1997,6 @@ msgctxt ""
msgid "Progress value"
msgstr ""
-#. 1?kb
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2244,7 +2005,6 @@ msgctxt ""
msgid "Progress value min."
msgstr ""
-#. S)Z:
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2253,7 +2013,6 @@ msgctxt ""
msgid "Progress value max."
msgstr ""
-#. qDPA
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2262,7 +2021,6 @@ msgctxt ""
msgid "Scroll value"
msgstr ""
-#. s0rz
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2271,7 +2029,6 @@ msgctxt ""
msgid "Scroll value max."
msgstr ""
-#. @L1:
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2280,7 +2037,6 @@ msgctxt ""
msgid "Scroll value min."
msgstr ""
-#. PoU-
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2289,7 +2045,6 @@ msgctxt ""
msgid "Scroll width"
msgstr ""
-#. TH`U
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2298,7 +2053,6 @@ msgctxt ""
msgid "Scroll height"
msgstr ""
-#. #/`L
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2307,7 +2061,6 @@ msgctxt ""
msgid "Scroll top"
msgstr ""
-#. Y.\3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2316,7 +2069,6 @@ msgctxt ""
msgid "Scroll left"
msgstr ""
-#. dcw%
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2325,7 +2077,6 @@ msgctxt ""
msgid "Default scroll value"
msgstr ""
-#. A,nt
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2334,7 +2085,6 @@ msgctxt ""
msgid "Small change"
msgstr ""
-#. -NF]
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2343,7 +2093,6 @@ msgctxt ""
msgid "Large change"
msgstr ""
-#. XQig
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2352,7 +2101,6 @@ msgctxt ""
msgid "Delay"
msgstr ""
-#. cdN\
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2361,7 +2109,6 @@ msgctxt ""
msgid "Repeat"
msgstr "مکرر"
-#. IT`?
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2370,7 +2117,6 @@ msgctxt ""
msgid "Visible size"
msgstr ""
-#. fr[=
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2379,7 +2125,6 @@ msgctxt ""
msgid "Orientation"
msgstr ""
-#. kOP3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2389,7 +2134,6 @@ msgctxt ""
msgid "Horizontal"
msgstr ""
-#. @0u#
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2399,7 +2143,6 @@ msgctxt ""
msgid "Vertical"
msgstr ""
-#. @{o^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2408,7 +2151,6 @@ msgctxt ""
msgid "While adjusting"
msgstr ""
-#. \nO8
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2417,7 +2159,6 @@ msgctxt ""
msgid "Date"
msgstr ""
-#. #^c)
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2426,7 +2167,6 @@ msgctxt ""
msgid "State"
msgstr ""
-#. %pud
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2435,7 +2175,6 @@ msgctxt ""
msgid "Time"
msgstr ""
-#. IC[|
#: formres.src
#, fuzzy
msgctxt ""
@@ -2445,7 +2184,6 @@ msgctxt ""
msgid "Scale"
msgstr "تغیر شدہ"
-#. .=PL
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2454,7 +2192,6 @@ msgctxt ""
msgid "Button type"
msgstr ""
-#. 1Xm3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2464,7 +2201,6 @@ msgctxt ""
msgid "Default"
msgstr ""
-#. #VJ5
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2474,7 +2210,6 @@ msgctxt ""
msgid "OK"
msgstr ""
-#. [@v_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2484,7 +2219,6 @@ msgctxt ""
msgid "Cancel"
msgstr ""
-#. Xzb_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2494,7 +2228,6 @@ msgctxt ""
msgid "Help"
msgstr ""
-#. 6fk?
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2503,7 +2236,6 @@ msgctxt ""
msgid "The connection to the data source \"$name$\" could not be established."
msgstr ""
-#. E.]F
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2512,7 +2244,6 @@ msgctxt ""
msgid "Text"
msgstr ""
-#. dE\_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2521,7 +2252,6 @@ msgctxt ""
msgid "Linked cell"
msgstr ""
-#. i3l-
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2530,7 +2260,6 @@ msgctxt ""
msgid "Source cell range"
msgstr ""
-#. s2s{
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2539,7 +2268,6 @@ msgctxt ""
msgid "Contents of the linked cell"
msgstr ""
-#. 3?q/
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2549,7 +2277,6 @@ msgctxt ""
msgid "The selected entry"
msgstr ""
-#. F$*\
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2559,7 +2286,6 @@ msgctxt ""
msgid "Position of the selected entry"
msgstr ""
-#. .r5g
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2568,7 +2294,6 @@ msgctxt ""
msgid "Scrollbars"
msgstr ""
-#. Xq.j
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2578,7 +2303,6 @@ msgctxt ""
msgid "Single-line"
msgstr ""
-#. R0-%
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2588,7 +2312,6 @@ msgctxt ""
msgid "Multi-line"
msgstr ""
-#. G4gE
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2598,7 +2321,6 @@ msgctxt ""
msgid "Multi-line with formatting"
msgstr ""
-#. {:/n
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2607,7 +2329,6 @@ msgctxt ""
msgid "Symbol color"
msgstr ""
-#. +9o9
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2616,7 +2337,6 @@ msgctxt ""
msgid "Text lines end with"
msgstr ""
-#. Pn$*
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2626,7 +2346,6 @@ msgctxt ""
msgid "LF (Unix)"
msgstr ""
-#. {JJn
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2636,7 +2355,6 @@ msgctxt ""
msgid "CR+LF (Windows)"
msgstr ""
-#. chgv
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2646,7 +2364,6 @@ msgctxt ""
msgid "None"
msgstr ""
-#. qCVL
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2656,7 +2373,6 @@ msgctxt ""
msgid "Horizontal"
msgstr ""
-#. C~lr
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2666,7 +2382,6 @@ msgctxt ""
msgid "Vertical"
msgstr ""
-#. /tKF
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2676,7 +2391,6 @@ msgctxt ""
msgid "Both"
msgstr ""
-#. 9-$K
#: formres.src
#, fuzzy
msgctxt ""
@@ -2687,7 +2401,6 @@ msgctxt ""
msgid "Table"
msgstr "جدول"
-#. ,bsl
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2697,7 +2410,6 @@ msgctxt ""
msgid "Query"
msgstr ""
-#. Sfg@
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2707,7 +2419,6 @@ msgctxt ""
msgid "SQL command"
msgstr ""
-#. *Xi.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2716,7 +2427,6 @@ msgctxt ""
msgid "Toggle"
msgstr ""
-#. 137^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2725,7 +2435,6 @@ msgctxt ""
msgid "Take Focus on Click"
msgstr ""
-#. 75:(
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2734,7 +2443,6 @@ msgctxt ""
msgid "Hide selection"
msgstr ""
-#. #K-[
#: formres.src
#, fuzzy
msgctxt ""
@@ -2744,7 +2452,6 @@ msgctxt ""
msgid "Style"
msgstr "انداز:"
-#. S}u\
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2754,7 +2461,6 @@ msgctxt ""
msgid "3D"
msgstr ""
-#. hfq?
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2764,7 +2470,6 @@ msgctxt ""
msgid "Flat"
msgstr ""
-#. #/cN
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2773,7 +2478,6 @@ msgctxt ""
msgid "Border color"
msgstr ""
-#. $4$`
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2783,7 +2487,6 @@ msgctxt ""
msgid "Left top"
msgstr ""
-#. UuZU
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2793,7 +2496,6 @@ msgctxt ""
msgid "Left centered"
msgstr ""
-#. sn],
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2803,7 +2505,6 @@ msgctxt ""
msgid "Left bottom"
msgstr ""
-#. q%p}
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2813,7 +2514,6 @@ msgctxt ""
msgid "Right top"
msgstr ""
-#. El?n
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2823,7 +2523,6 @@ msgctxt ""
msgid "Right centered"
msgstr ""
-#. sIfy
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2833,7 +2532,6 @@ msgctxt ""
msgid "Right bottom"
msgstr ""
-#. ]UGJ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2843,7 +2541,6 @@ msgctxt ""
msgid "Above left"
msgstr ""
-#. +[9p
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2853,7 +2550,6 @@ msgctxt ""
msgid "Above centered"
msgstr ""
-#. dWOS
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2863,7 +2559,6 @@ msgctxt ""
msgid "Above right"
msgstr ""
-#. CC~q
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2873,7 +2568,6 @@ msgctxt ""
msgid "Below left"
msgstr ""
-#. mqC(
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2883,7 +2577,6 @@ msgctxt ""
msgid "Below centered"
msgstr ""
-#. v-Fd
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2893,7 +2586,6 @@ msgctxt ""
msgid "Below right"
msgstr ""
-#. +o?.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2903,7 +2595,6 @@ msgctxt ""
msgid "Centered"
msgstr ""
-#. 0;oG
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2912,7 +2603,6 @@ msgctxt ""
msgid "Wrap text automatically"
msgstr ""
-#. %+Y^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2921,7 +2611,6 @@ msgctxt ""
msgid "Text type"
msgstr ""
-#. S#Q3
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2931,7 +2620,6 @@ msgctxt ""
msgid "Hide"
msgstr ""
-#. PnDz
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2941,7 +2629,6 @@ msgctxt ""
msgid "Show"
msgstr ""
-#. u$=i
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2950,7 +2637,6 @@ msgctxt ""
msgid "XML data model"
msgstr ""
-#. f\dm
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2959,7 +2645,6 @@ msgctxt ""
msgid "Binding expression"
msgstr ""
-#. OlmL
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2968,7 +2653,6 @@ msgctxt ""
msgid "Required"
msgstr ""
-#. r!.y
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2977,7 +2661,6 @@ msgctxt ""
msgid "List entry source"
msgstr ""
-#. 2RO$
#: formres.src
msgctxt ""
"formres.src\n"
@@ -2986,7 +2669,6 @@ msgctxt ""
msgid "Relevant"
msgstr ""
-#. M\XT
#: formres.src
#, fuzzy
msgctxt ""
@@ -2996,7 +2678,6 @@ msgctxt ""
msgid "Read-only"
msgstr "نا~قابل ترمیم"
-#. ~R[H
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3005,7 +2686,6 @@ msgctxt ""
msgid "Constraint"
msgstr ""
-#. w]xA
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3014,7 +2694,6 @@ msgctxt ""
msgid "Calculation"
msgstr ""
-#. C7!B
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3023,7 +2702,6 @@ msgctxt ""
msgid "Data type"
msgstr ""
-#. RTu-
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3032,7 +2710,6 @@ msgctxt ""
msgid "Whitespaces"
msgstr ""
-#. 2`~}
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3042,7 +2719,6 @@ msgctxt ""
msgid "Preserve"
msgstr ""
-#. DB_^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3052,7 +2728,6 @@ msgctxt ""
msgid "Replace"
msgstr ""
-#. a:1a
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3062,7 +2737,6 @@ msgctxt ""
msgid "Collapse"
msgstr ""
-#. _:{*
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3071,7 +2745,6 @@ msgctxt ""
msgid "Pattern"
msgstr ""
-#. {TC%
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3080,7 +2753,6 @@ msgctxt ""
msgid "Length"
msgstr ""
-#. qNpQ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3089,7 +2761,6 @@ msgctxt ""
msgid "Length (at least)"
msgstr ""
-#. UHOq
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3098,7 +2769,6 @@ msgctxt ""
msgid "Length (at most)"
msgstr ""
-#. 6j97
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3107,7 +2777,6 @@ msgctxt ""
msgid "Digits (total)"
msgstr ""
-#. O%8#
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3116,7 +2785,6 @@ msgctxt ""
msgid "Digits (fraction)"
msgstr ""
-#. ^fxb
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3125,7 +2793,6 @@ msgctxt ""
msgid "Max. (inclusive)"
msgstr ""
-#. rm_.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3134,7 +2801,6 @@ msgctxt ""
msgid "Max. (exclusive)"
msgstr ""
-#. ]~D~
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3143,7 +2809,6 @@ msgctxt ""
msgid "Min. (inclusive)"
msgstr ""
-#. qah+
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3152,7 +2817,6 @@ msgctxt ""
msgid "Min. (exclusive)"
msgstr ""
-#. J\Hf
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3161,7 +2825,6 @@ msgctxt ""
msgid "Submission"
msgstr ""
-#. (Cb(
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3170,7 +2833,6 @@ msgctxt ""
msgid "Binding"
msgstr ""
-#. 0!k2
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3179,7 +2841,6 @@ msgctxt ""
msgid "Selection type"
msgstr ""
-#. HlSx
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3188,7 +2849,6 @@ msgctxt ""
msgid "Root displayed"
msgstr ""
-#. .+E7
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3197,7 +2857,6 @@ msgctxt ""
msgid "Show handles"
msgstr ""
-#. @h9_
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3206,7 +2865,6 @@ msgctxt ""
msgid "Show root handles"
msgstr ""
-#. 2:Pq
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3215,7 +2873,6 @@ msgctxt ""
msgid "Editable"
msgstr ""
-#. BCaS
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3224,7 +2881,6 @@ msgctxt ""
msgid "Invokes stop node editing"
msgstr ""
-#. \S=z
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3233,7 +2889,6 @@ msgctxt ""
msgid "With title bar"
msgstr ""
-#. EO4w
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3242,7 +2897,6 @@ msgctxt ""
msgid "No Label"
msgstr ""
-#. smZT
#: formres.src
#, fuzzy
msgctxt ""
@@ -3253,7 +2907,6 @@ msgctxt ""
msgid "No"
msgstr "نهی"
-#. 1gPb
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3263,7 +2916,6 @@ msgctxt ""
msgid "Keep Ratio"
msgstr ""
-#. `Wm.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3273,7 +2925,6 @@ msgctxt ""
msgid "Fit to Size"
msgstr ""
-#. vJ8;
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3282,7 +2933,6 @@ msgctxt ""
msgid "Input required"
msgstr ""
-#. FJqs
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3291,7 +2941,6 @@ msgctxt ""
msgid "Text direction"
msgstr ""
-#. E6Mb
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3301,7 +2950,6 @@ msgctxt ""
msgid "Left-to-right"
msgstr ""
-#. e(6@
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3311,7 +2959,6 @@ msgctxt ""
msgid "Right-to-left"
msgstr ""
-#. ^{n^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3321,7 +2968,6 @@ msgctxt ""
msgid "Use superordinate object settings"
msgstr ""
-#. }q9O
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3331,7 +2977,6 @@ msgctxt ""
msgid "Never"
msgstr ""
-#. Crc\
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3341,7 +2986,6 @@ msgctxt ""
msgid "When focused"
msgstr ""
-#. Sr4`
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3351,7 +2995,6 @@ msgctxt ""
msgid "Always"
msgstr ""
-#. F/k`
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3360,7 +3003,6 @@ msgctxt ""
msgid "Anchor"
msgstr ""
-#. 7r+v
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3370,7 +3012,6 @@ msgctxt ""
msgid "To Paragraph"
msgstr ""
-#. Fy8h
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3380,7 +3021,6 @@ msgctxt ""
msgid "As Character"
msgstr ""
-#. ye~-
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3390,7 +3030,6 @@ msgctxt ""
msgid "To Page"
msgstr ""
-#. MB0^
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3400,7 +3039,6 @@ msgctxt ""
msgid "To Frame"
msgstr ""
-#. 3i7.
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3410,7 +3048,6 @@ msgctxt ""
msgid "To Character"
msgstr ""
-#. |ZcH
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3420,7 +3057,6 @@ msgctxt ""
msgid "To Page"
msgstr ""
-#. )n?x
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3431,7 +3067,6 @@ 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.
-#. 9qOJ
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3441,7 +3076,6 @@ msgid "Regular"
msgstr ""
#. That's the 'Bold Italic' as used for a font style, so please use a consistent translation.
-#. /i9?
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3451,7 +3085,6 @@ msgid "Bold Italic"
msgstr ""
#. That's the 'Italic' as used for a font style, so please use a consistent translation.
-#. ^IUO
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3461,7 +3094,6 @@ msgid "Italic"
msgstr ""
#. That's the 'Bold' as used for a font style, so please use a consistent translation.
-#. ;yDn
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3470,7 +3102,6 @@ msgctxt ""
msgid "Bold"
msgstr ""
-#. aX]A
#: formres.src
msgctxt ""
"formres.src\n"
@@ -3479,7 +3110,6 @@ msgctxt ""
msgid "(Default)"
msgstr ""
-#. d)p)
#: fontdialog.src
msgctxt ""
"fontdialog.src\n"
@@ -3489,7 +3119,6 @@ msgctxt ""
msgid "Font"
msgstr ""
-#. L{e]
#: fontdialog.src
msgctxt ""
"fontdialog.src\n"
@@ -3499,7 +3128,6 @@ msgctxt ""
msgid "Font Effects"
msgstr ""
-#. CnL3
#: fontdialog.src
#, fuzzy
msgctxt ""
@@ -3509,7 +3137,6 @@ msgctxt ""
msgid "Character"
msgstr "حروف"
-#. hzG4
#: selectlabeldialog.src
msgctxt ""
"selectlabeldialog.src\n"
@@ -3519,7 +3146,6 @@ msgctxt ""
msgid "These are control fields that can be used as label fields for the $control_class$ $control_name$."
msgstr ""
-#. -0+n
#: selectlabeldialog.src
msgctxt ""
"selectlabeldialog.src\n"
@@ -3529,7 +3155,6 @@ msgctxt ""
msgid "~No assignment"
msgstr ""
-#. kV]M
#: selectlabeldialog.src
msgctxt ""
"selectlabeldialog.src\n"
@@ -3538,7 +3163,6 @@ msgctxt ""
msgid "Label Field Selection"
msgstr ""
-#. %X$n
#: selectlabeldialog.src
msgctxt ""
"selectlabeldialog.src\n"
@@ -3547,7 +3171,6 @@ msgctxt ""
msgid "Forms"
msgstr ""
-#. gyU6
#: propres.src
msgctxt ""
"propres.src\n"
@@ -3556,7 +3179,6 @@ msgctxt ""
msgid "Default"
msgstr ""
-#. cx8C
#: propres.src
msgctxt ""
"propres.src\n"
@@ -3565,7 +3187,6 @@ msgctxt ""
msgid "General"
msgstr ""
-#. $aE`
#: propres.src
msgctxt ""
"propres.src\n"
@@ -3574,7 +3195,6 @@ msgctxt ""
msgid "Data"
msgstr ""
-#. e^gC
#: propres.src
#, fuzzy
msgctxt ""
@@ -3585,7 +3205,6 @@ msgctxt ""
msgid "No"
msgstr "نهی"
-#. Z;YA
#: propres.src
#, fuzzy
msgctxt ""
@@ -3596,7 +3215,6 @@ msgctxt ""
msgid "Yes"
msgstr "جی "
-#. PD5y
#: propres.src
msgctxt ""
"propres.src\n"
@@ -3605,7 +3223,6 @@ msgctxt ""
msgid "Help"
msgstr ""
-#. xGE$
#: propres.src
msgctxt ""
"propres.src\n"
@@ -3614,7 +3231,6 @@ msgctxt ""
msgid "<Embedded-Image>"
msgstr ""
-#. aOT_
#: propres.src
msgctxt ""
"propres.src\n"
diff --git a/source/ur/extensions/source/scanner.po b/source/ur/extensions/source/scanner.po
index 887c0371efb..fdb9c636ca3 100644
--- a/source/ur/extensions/source/scanner.po
+++ b/source/ur/extensions/source/scanner.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. _8P\
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -26,7 +25,6 @@ msgid ""
" Dev~ice"
msgstr ""
-#. nZmm
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -38,7 +36,6 @@ msgid ""
"Preview"
msgstr ""
-#. ,$ZF
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -48,7 +45,6 @@ msgctxt ""
msgid "Scan"
msgstr ""
-#. ESbO
#: sanedlg.src
#, fuzzy
msgctxt ""
@@ -59,7 +55,6 @@ msgctxt ""
msgid "Preview"
msgstr "مشاہد~ہ"
-#. ,O6b
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -69,7 +64,6 @@ msgctxt ""
msgid "Scan area"
msgstr ""
-#. apdX
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -79,7 +73,6 @@ msgctxt ""
msgid "Left:"
msgstr ""
-#. ITmF
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -89,7 +82,6 @@ msgctxt ""
msgid "Top:"
msgstr ""
-#. bmM`
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -99,7 +91,6 @@ msgctxt ""
msgid "Right:"
msgstr ""
-#. sNk/
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -109,7 +100,6 @@ msgctxt ""
msgid "Bottom:"
msgstr ""
-#. bTWg
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -119,7 +109,6 @@ msgctxt ""
msgid "Device used:"
msgstr ""
-#. f^4O
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -129,7 +118,6 @@ msgctxt ""
msgid "Resolution [~DPI]"
msgstr ""
-#. Qq$M
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -139,7 +127,6 @@ msgctxt ""
msgid "Show advanced options"
msgstr ""
-#. NK-a
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -149,7 +136,6 @@ msgctxt ""
msgid "Options:"
msgstr ""
-#. J:eK
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -159,7 +145,6 @@ msgctxt ""
msgid "Vector element"
msgstr ""
-#. /}\N
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -169,7 +154,6 @@ msgctxt ""
msgid "Set"
msgstr ""
-#. 5]Q7
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -178,7 +162,6 @@ msgctxt ""
msgid "Scanner"
msgstr ""
-#. h;sG
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -191,7 +174,6 @@ msgid ""
"Type: %s"
msgstr ""
-#. Rw80
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -200,7 +182,6 @@ msgctxt ""
msgid "An error occurred while scanning."
msgstr ""
-#. Tp-+
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -209,7 +190,6 @@ msgctxt ""
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 ""
-#. hX;j
#: sanedlg.src
msgctxt ""
"sanedlg.src\n"
@@ -218,7 +198,6 @@ msgctxt ""
msgid "The SANE interface could not be initialized. Scanning is not possible."
msgstr ""
-#. PgQe
#: grid.src
msgctxt ""
"grid.src\n"
@@ -228,7 +207,6 @@ msgctxt ""
msgid "Set"
msgstr ""
-#. d)D;
#: grid.src
msgctxt ""
"grid.src\n"
@@ -238,7 +216,6 @@ msgctxt ""
msgid "Linear ascending"
msgstr ""
-#. HyhL
#: grid.src
msgctxt ""
"grid.src\n"
@@ -248,7 +225,6 @@ msgctxt ""
msgid "Linear descending"
msgstr ""
-#. ]{CR
#: grid.src
msgctxt ""
"grid.src\n"
@@ -258,7 +234,6 @@ msgctxt ""
msgid "Original values"
msgstr ""
-#. (](f
#: grid.src
msgctxt ""
"grid.src\n"
diff --git a/source/ur/extensions/source/update/check.po b/source/ur/extensions/source/update/check.po
index 2599578afd4..381f7c7ad8f 100644
--- a/source/ur/extensions/source/update/check.po
+++ b/source/ur/extensions/source/update/check.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. g*Z4
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Checking..."
msgstr ""
-#. Xj;\
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "Checking for an update failed."
msgstr ""
-#. 7^\Y
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "%PRODUCTNAME %PRODUCTVERSION is up to date."
msgstr ""
-#. dxD7
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -56,7 +52,6 @@ msgid ""
"A password, usually the administrator's or root password, may be required."
msgstr ""
-#. wfY$
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -65,7 +60,6 @@ msgctxt ""
msgid "Check for Updates"
msgstr ""
-#. kH/w
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -74,7 +68,6 @@ msgctxt ""
msgid "Downloading %PRODUCTNAME %NEXTVERSION paused at..."
msgstr ""
-#. 7.2#
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -83,7 +76,6 @@ msgctxt ""
msgid "Downloading %PRODUCTNAME %NEXTVERSION stalled at"
msgstr ""
-#. ~11K
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -95,7 +87,6 @@ msgid ""
"Under Tools – Options... - %PRODUCTNAME – Online Update you can change the download location."
msgstr ""
-#. tkv_
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -104,7 +95,6 @@ msgctxt ""
msgid "%FILE_NAME has been downloaded to %DOWNLOAD_PATH."
msgstr ""
-#. g+Lt
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -116,7 +106,6 @@ msgid ""
"Click 'Download...' to download %PRODUCTNAME %NEXTVERSION manually from the web site."
msgstr ""
-#. RJN8
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -125,7 +114,6 @@ msgctxt ""
msgid "Downloading %PRODUCTNAME %NEXTVERSION..."
msgstr ""
-#. 3Dm9
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -134,7 +122,6 @@ msgctxt ""
msgid "Download of %PRODUCTNAME %NEXTVERSION completed. Ready for installation."
msgstr ""
-#. `eI9
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -143,7 +130,6 @@ msgctxt ""
msgid "%PRODUCTNAME %PRODUCTVERSION"
msgstr ""
-#. I;J,
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -152,7 +138,6 @@ msgctxt ""
msgid "Do you really want to cancel the download?"
msgstr ""
-#. B9|/
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -161,7 +146,6 @@ msgctxt ""
msgid "To install the update, %PRODUCTNAME %PRODUCTVERSION needs to be closed. Do you want to install the update now?"
msgstr ""
-#. v:FP
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -170,7 +154,6 @@ msgctxt ""
msgid "Install ~now"
msgstr ""
-#. QN)o
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -179,7 +162,6 @@ msgctxt ""
msgid "Install ~later"
msgstr ""
-#. t4,V
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -188,7 +170,6 @@ msgctxt ""
msgid "Could not run the installer application, please run %FILE_NAME in %DOWNLOAD_PATH manually."
msgstr ""
-#. iC9T
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -197,7 +178,6 @@ msgctxt ""
msgid "A file with that name already exists! Do you want to overwrite the existing file?"
msgstr ""
-#. w.]7
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -206,7 +186,6 @@ msgctxt ""
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 ""
-#. 7N7V
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -215,7 +194,6 @@ msgctxt ""
msgid "Reload File"
msgstr ""
-#. 8qG,
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -224,7 +202,6 @@ msgctxt ""
msgid "Continue"
msgstr ""
-#. MT,p
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -233,7 +210,6 @@ msgctxt ""
msgid "%PERCENT%"
msgstr ""
-#. K}OW
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -242,7 +218,6 @@ msgctxt ""
msgid "Status"
msgstr ""
-#. /hQk
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -251,7 +226,6 @@ msgctxt ""
msgid "Description"
msgstr "وضاحت"
-#. CqPi
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -260,7 +234,6 @@ msgctxt ""
msgid "Close"
msgstr ""
-#. Wb-C
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -269,7 +242,6 @@ msgctxt ""
msgid "~Download"
msgstr ""
-#. ^ZR3
#: updatehdl.src
#, fuzzy
msgctxt ""
@@ -279,7 +251,6 @@ msgctxt ""
msgid "~Install"
msgstr "نصب"
-#. `svJ
#: updatehdl.src
#, fuzzy
msgctxt ""
@@ -289,7 +260,6 @@ msgctxt ""
msgid "~Pause"
msgstr "موقوف"
-#. Fypk
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -298,7 +268,6 @@ msgctxt ""
msgid "~Resume"
msgstr ""
-#. }D@S
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -307,7 +276,6 @@ msgctxt ""
msgid "Cancel"
msgstr ""
-#. -L!;
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -316,7 +284,6 @@ msgctxt ""
msgid "%PRODUCTNAME update available"
msgstr ""
-#. 0#nw
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -325,7 +292,6 @@ msgctxt ""
msgid "Click the icon to start the download."
msgstr ""
-#. 7D`X
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -334,7 +300,6 @@ msgctxt ""
msgid "%PRODUCTNAME update available"
msgstr ""
-#. M?%A
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -343,7 +308,6 @@ msgctxt ""
msgid "Click the icon for more information."
msgstr ""
-#. +?c+
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -352,7 +316,6 @@ msgctxt ""
msgid "%PRODUCTNAME update available"
msgstr ""
-#. 5xVs
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -361,7 +324,6 @@ msgctxt ""
msgid "Download of update begins."
msgstr ""
-#. S:I4
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -370,7 +332,6 @@ msgctxt ""
msgid "Download of update in progress"
msgstr ""
-#. vX:u
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -379,7 +340,6 @@ msgctxt ""
msgid "Download of update paused"
msgstr ""
-#. Vi?J
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -388,7 +348,6 @@ msgctxt ""
msgid "Click the icon to resume."
msgstr ""
-#. aWS!
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -397,7 +356,6 @@ msgctxt ""
msgid "Download of update stalled"
msgstr ""
-#. y4,B
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -406,7 +364,6 @@ msgctxt ""
msgid "Click the icon for more information."
msgstr ""
-#. wpWK
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -415,7 +372,6 @@ msgctxt ""
msgid "Download of update completed"
msgstr ""
-#. 8NG0
#: updatehdl.src
#, fuzzy
msgctxt ""
@@ -425,7 +381,6 @@ msgctxt ""
msgid "Click the icon to start the installation."
msgstr "تنصیب کے عمل کا آغاز کرنے کے لئے نصب پر کلک کیجئے"
-#. U-cB
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
@@ -434,7 +389,6 @@ msgctxt ""
msgid "Updates for extensions available"
msgstr ""
-#. oo*[
#: updatehdl.src
msgctxt ""
"updatehdl.src\n"
diff --git a/source/ur/extensions/source/update/check/org/openoffice/Office.po b/source/ur/extensions/source/update/check/org/openoffice/Office.po
index 8b1984f1e14..dd8898412f8 100644
--- a/source/ur/extensions/source/update/check/org/openoffice/Office.po
+++ b/source/ur/extensions/source/update/check/org/openoffice/Office.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. QCbR
#: Addons.xcu
msgctxt ""
"Addons.xcu\n"
diff --git a/source/ur/filter/source/config/fragments/filters.po b/source/ur/filter/source/config/fragments/filters.po
index bc5629a733d..0ad0a95255d 100644
--- a/source/ur/filter/source/config/fragments/filters.po
+++ b/source/ur/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. tluj
#: StarOffice_XML__Draw__ui.xcu
msgctxt ""
"StarOffice_XML__Draw__ui.xcu\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "%productname% %formatversion% Drawing"
msgstr ""
-#. FSla
#: Text__encoded__ui.xcu
msgctxt ""
"Text__encoded__ui.xcu\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "Text Encoded"
msgstr ""
-#. 1jf\
#: UOF_presentation_ui.xcu
msgctxt ""
"UOF_presentation_ui.xcu\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "Unified Office Format presentation"
msgstr ""
-#. ``SF
#: Text__encoded___StarWriter_Web__ui.xcu
msgctxt ""
"Text__encoded___StarWriter_Web__ui.xcu\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "Text Encoded (Writer/Web)"
msgstr ""
-#. WZVM
#: HTML__StarCalc__ui.xcu
msgctxt ""
"HTML__StarCalc__ui.xcu\n"
@@ -64,7 +59,6 @@ msgctxt ""
msgid "HTML Document (Calc)"
msgstr ""
-#. h9p-
#: Text__encoded___StarWriter_GlobalDocument__ui.xcu
msgctxt ""
"Text__encoded___StarWriter_GlobalDocument__ui.xcu\n"
@@ -74,7 +68,6 @@ msgctxt ""
msgid "Text Encoded (Master Document)"
msgstr ""
-#. 90^8
#: HTML__StarWriter__ui.xcu
msgctxt ""
"HTML__StarWriter__ui.xcu\n"
@@ -84,7 +77,6 @@ msgctxt ""
msgid "HTML Document (Writer)"
msgstr ""
-#. eje)
#: UOF_text_ui.xcu
msgctxt ""
"UOF_text_ui.xcu\n"
@@ -94,7 +86,6 @@ msgctxt ""
msgid "Unified Office Format text"
msgstr ""
-#. jWC2
#: MS_Word_2003_XML_ui.xcu
msgctxt ""
"MS_Word_2003_XML_ui.xcu\n"
@@ -104,7 +95,6 @@ msgctxt ""
msgid "Microsoft Word 2003 XML"
msgstr ""
-#. g,/e
#: MS_Excel_4_0_Vorlage_Template_ui.xcu
msgctxt ""
"MS_Excel_4_0_Vorlage_Template_ui.xcu\n"
@@ -114,7 +104,6 @@ msgctxt ""
msgid "Microsoft Excel 4.0 Template"
msgstr ""
-#. x6dO
#: impress_MS_PowerPoint_2007_XML_AutoPlay.xcu
msgctxt ""
"impress_MS_PowerPoint_2007_XML_AutoPlay.xcu\n"
@@ -124,7 +113,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 2007/2010 XML AutoPlay"
msgstr ""
-#. 877d
#: MS_Word_2007_XML_Template.xcu
msgctxt ""
"MS_Word_2007_XML_Template.xcu\n"
@@ -134,7 +122,6 @@ msgctxt ""
msgid "Microsoft Word 2007/2010 XML Template"
msgstr ""
-#. cx]J
#: MS_Excel_95_Vorlage_Template_ui.xcu
msgctxt ""
"MS_Excel_95_Vorlage_Template_ui.xcu\n"
@@ -144,7 +131,6 @@ msgctxt ""
msgid "Microsoft Excel 95 Template"
msgstr ""
-#. EEc%
#: calc8_template_ui.xcu
msgctxt ""
"calc8_template_ui.xcu\n"
@@ -154,7 +140,6 @@ msgctxt ""
msgid "ODF Spreadsheet Template"
msgstr ""
-#. MVN`
#: impress8_template_ui.xcu
msgctxt ""
"impress8_template_ui.xcu\n"
@@ -164,7 +149,6 @@ msgctxt ""
msgid "ODF Presentation Template"
msgstr ""
-#. |H*2
#: chart8_ui.xcu
msgctxt ""
"chart8_ui.xcu\n"
@@ -174,7 +158,6 @@ msgctxt ""
msgid "ODF Chart"
msgstr ""
-#. 3K~!
#: calc_MS_Excel_2007_Binary_ui.xcu
msgctxt ""
"calc_MS_Excel_2007_Binary_ui.xcu\n"
@@ -184,7 +167,6 @@ msgctxt ""
msgid "Microsoft Excel 2007 Binary"
msgstr ""
-#. o?NG
#: impress_MS_PowerPoint_2007_XML_Template.xcu
msgctxt ""
"impress_MS_PowerPoint_2007_XML_Template.xcu\n"
@@ -194,7 +176,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 2007/2010 XML Template"
msgstr ""
-#. ?Kb,
#: impress_OOXML_ui.xcu
msgctxt ""
"impress_OOXML_ui.xcu\n"
@@ -204,7 +185,6 @@ msgctxt ""
msgid "Office Open XML Presentation"
msgstr ""
-#. %(ni
#: draw8_template_ui.xcu
msgctxt ""
"draw8_template_ui.xcu\n"
@@ -214,7 +194,6 @@ msgctxt ""
msgid "ODF Drawing Template"
msgstr ""
-#. Y5_V
#: StarOffice_XML__Math__ui.xcu
#, fuzzy
msgctxt ""
@@ -225,7 +204,6 @@ msgctxt ""
msgid "%productname% %formatversion% Formula"
msgstr "productname% %formatversion% Report Chart%"
-#. Z?OM
#: MS_Word_97_Vorlage_ui.xcu
msgctxt ""
"MS_Word_97_Vorlage_ui.xcu\n"
@@ -235,7 +213,6 @@ msgctxt ""
msgid "Microsoft Word 97/2000/XP/2003 Template"
msgstr ""
-#. #2bU
#: impress_StarOffice_XML_Draw_ui.xcu
msgctxt ""
"impress_StarOffice_XML_Draw_ui.xcu\n"
@@ -245,7 +222,6 @@ msgctxt ""
msgid "%productname% %formatversion% Drawing (Impress)"
msgstr ""
-#. ?G4t
#: MS_Word_2007_XML_Template_ui.xcu
msgctxt ""
"MS_Word_2007_XML_Template_ui.xcu\n"
@@ -255,7 +231,6 @@ msgctxt ""
msgid "Microsoft Word 2007/2010 XML Template"
msgstr ""
-#. 8*:[
#: impress_OOXML_Template_ui.xcu
msgctxt ""
"impress_OOXML_Template_ui.xcu\n"
@@ -265,7 +240,6 @@ msgctxt ""
msgid "Office Open XML Presentation Template"
msgstr ""
-#. r=7Q
#: calc_OOXML_Template_ui.xcu
msgctxt ""
"calc_OOXML_Template_ui.xcu\n"
@@ -275,7 +249,6 @@ msgctxt ""
msgid "Office Open XML Spreadsheet Template"
msgstr ""
-#. 7,nr
#: UOF_spreadsheet_ui.xcu
msgctxt ""
"UOF_spreadsheet_ui.xcu\n"
@@ -285,7 +258,6 @@ msgctxt ""
msgid "Unified Office Format spreadsheet"
msgstr ""
-#. p]gv
#: calc_MS_Excel_2007_XML_ui.xcu
msgctxt ""
"calc_MS_Excel_2007_XML_ui.xcu\n"
@@ -295,7 +267,6 @@ msgctxt ""
msgid "Microsoft Excel 2007/2010 XML"
msgstr ""
-#. 0M*O
#: writer_web_StarOffice_XML_Writer_Web_Template_ui.xcu
msgctxt ""
"writer_web_StarOffice_XML_Writer_Web_Template_ui.xcu\n"
@@ -305,7 +276,6 @@ msgctxt ""
msgid "%productname% %formatversion% HTML Template"
msgstr ""
-#. qT6D
#: writerweb8_writer_template_ui.xcu
msgctxt ""
"writerweb8_writer_template_ui.xcu\n"
@@ -315,7 +285,6 @@ msgctxt ""
msgid "HTML Document Template"
msgstr ""
-#. yL/+
#: StarOffice_XML__Calc__ui.xcu
#, fuzzy
msgctxt ""
@@ -326,7 +295,6 @@ msgctxt ""
msgid "%productname% %formatversion% Spreadsheet"
msgstr "productname% %formatversion% Report Chart%"
-#. o/GW
#: OOXML_Text_Template_ui.xcu
msgctxt ""
"OOXML_Text_Template_ui.xcu\n"
@@ -336,7 +304,6 @@ msgctxt ""
msgid "Office Open XML Text Template"
msgstr ""
-#. $+;N
#: draw8_ui.xcu
msgctxt ""
"draw8_ui.xcu\n"
@@ -346,7 +313,6 @@ msgctxt ""
msgid "ODF Drawing"
msgstr ""
-#. L3Qs
#: calc_MS_Excel_2007_XML_Template_ui.xcu
msgctxt ""
"calc_MS_Excel_2007_XML_Template_ui.xcu\n"
@@ -356,7 +322,6 @@ msgctxt ""
msgid "Microsoft Excel 2007/2010 XML Template"
msgstr ""
-#. H9?2
#: impress8_ui.xcu
msgctxt ""
"impress8_ui.xcu\n"
@@ -366,7 +331,6 @@ msgctxt ""
msgid "ODF Presentation"
msgstr ""
-#. 6HHU
#: Text__StarWriter_Web__ui.xcu
msgctxt ""
"Text__StarWriter_Web__ui.xcu\n"
@@ -376,7 +340,6 @@ msgctxt ""
msgid "Text (Writer/Web)"
msgstr ""
-#. 2*9O
#: impress_MS_PowerPoint_2007_XML_ui.xcu
msgctxt ""
"impress_MS_PowerPoint_2007_XML_ui.xcu\n"
@@ -386,7 +349,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 2007/2010 XML"
msgstr ""
-#. pn~s
#: calc8_ui.xcu
msgctxt ""
"calc8_ui.xcu\n"
@@ -396,7 +358,6 @@ msgctxt ""
msgid "ODF Spreadsheet"
msgstr ""
-#. ,MlL
#: calc_HTML_WebQuery_ui.xcu
msgctxt ""
"calc_HTML_WebQuery_ui.xcu\n"
@@ -406,7 +367,6 @@ msgctxt ""
msgid "Web Page Query (Calc)"
msgstr ""
-#. `Atl
#: HTML_MasterDoc_ui.xcu
msgctxt ""
"HTML_MasterDoc_ui.xcu\n"
@@ -416,7 +376,6 @@ msgctxt ""
msgid "HTML Document (Master Document)"
msgstr ""
-#. AJSF
#: writerweb8_writer_ui.xcu
msgctxt ""
"writerweb8_writer_ui.xcu\n"
@@ -426,7 +385,6 @@ msgctxt ""
msgid "%productname% Text (Writer/Web)"
msgstr ""
-#. }t(*
#: Text_ui.xcu
msgctxt ""
"Text_ui.xcu\n"
@@ -436,7 +394,6 @@ msgctxt ""
msgid "Text"
msgstr ""
-#. ,n.B
#: calc_StarOffice_XML_Calc_Template_ui.xcu
msgctxt ""
"calc_StarOffice_XML_Calc_Template_ui.xcu\n"
@@ -446,7 +403,6 @@ msgctxt ""
msgid "%productname% %formatversion% Spreadsheet Template"
msgstr ""
-#. 7sAm
#: OOXML_Text_ui.xcu
msgctxt ""
"OOXML_Text_ui.xcu\n"
@@ -456,7 +412,6 @@ msgctxt ""
msgid "Office Open XML Text"
msgstr ""
-#. @IUQ
#: HTML_ui.xcu
#, fuzzy
msgctxt ""
@@ -467,7 +422,6 @@ msgctxt ""
msgid "HTML Document"
msgstr "HTML دستاویز"
-#. ][6X
#: impress_html_Export_ui.xcu
msgctxt ""
"impress_html_Export_ui.xcu\n"
@@ -477,7 +431,6 @@ msgctxt ""
msgid "HTML Document (Impress)"
msgstr ""
-#. 2Nj`
#: writer_StarOffice_XML_Writer_Template_ui.xcu
msgctxt ""
"writer_StarOffice_XML_Writer_Template_ui.xcu\n"
@@ -487,7 +440,6 @@ msgctxt ""
msgid "%productname% %formatversion% Text Document Template"
msgstr ""
-#. MOg?
#: MS_Excel_97_Vorlage_Template_ui.xcu
msgctxt ""
"MS_Excel_97_Vorlage_Template_ui.xcu\n"
@@ -497,7 +449,6 @@ msgctxt ""
msgid "Microsoft Excel 97/2000/XP/2003 Template"
msgstr ""
-#. clCD
#: StarOffice_XML__Writer__ui.xcu
msgctxt ""
"StarOffice_XML__Writer__ui.xcu\n"
@@ -507,7 +458,6 @@ msgctxt ""
msgid "%productname% %formatversion% Text Document"
msgstr ""
-#. ZOC6
#: StarOffice_XML__Impress__ui.xcu
msgctxt ""
"StarOffice_XML__Impress__ui.xcu\n"
@@ -517,7 +467,6 @@ msgctxt ""
msgid "%productname% %formatversion% Presentation"
msgstr ""
-#. ^jXH
#: writerglobal8_ui.xcu
msgctxt ""
"writerglobal8_ui.xcu\n"
@@ -527,7 +476,6 @@ msgctxt ""
msgid "ODF Master Document"
msgstr ""
-#. J@6X
#: MS_Excel_5_0_95_Vorlage_Template_ui.xcu
msgctxt ""
"MS_Excel_5_0_95_Vorlage_Template_ui.xcu\n"
@@ -537,7 +485,6 @@ msgctxt ""
msgid "Microsoft Excel 5.0 Template"
msgstr ""
-#. 30UV
#: MS_Excel_2003_XML_ui.xcu
msgctxt ""
"MS_Excel_2003_XML_ui.xcu\n"
@@ -547,7 +494,6 @@ msgctxt ""
msgid "Microsoft Excel 2003 XML"
msgstr ""
-#. K?ig
#: impress_StarOffice_XML_Impress_Template_ui.xcu
msgctxt ""
"impress_StarOffice_XML_Impress_Template_ui.xcu\n"
@@ -557,7 +503,6 @@ msgctxt ""
msgid "%productname% %formatversion% Presentation Template"
msgstr ""
-#. tI1@
#: writer_globaldocument_StarOffice_XML_Writer_ui.xcu
msgctxt ""
"writer_globaldocument_StarOffice_XML_Writer_ui.xcu\n"
@@ -567,7 +512,6 @@ msgctxt ""
msgid "%productname% %formatversion% Text Document"
msgstr ""
-#. ,(b:
#: impress8_draw_ui.xcu
msgctxt ""
"impress8_draw_ui.xcu\n"
@@ -577,7 +521,6 @@ msgctxt ""
msgid "ODF Drawing (Impress)"
msgstr ""
-#. Mt[;
#: writer_web_StarOffice_XML_Writer_ui.xcu
msgctxt ""
"writer_web_StarOffice_XML_Writer_ui.xcu\n"
@@ -587,7 +530,6 @@ msgctxt ""
msgid "%productname% %formatversion% Text Document (Writer/Web)"
msgstr ""
-#. ?H1Y
#: calc_OOXML_ui.xcu
msgctxt ""
"calc_OOXML_ui.xcu\n"
@@ -597,7 +539,6 @@ msgctxt ""
msgid "Office Open XML Spreadsheet"
msgstr ""
-#. yoFo
#: impress_MS_PowerPoint_2007_XML_Template_ui.xcu
msgctxt ""
"impress_MS_PowerPoint_2007_XML_Template_ui.xcu\n"
@@ -607,7 +548,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 2007/2010 XML Template"
msgstr ""
-#. tb):
#: Text___txt___csv__StarCalc__ui.xcu
msgctxt ""
"Text___txt___csv__StarCalc__ui.xcu\n"
@@ -617,7 +557,6 @@ msgctxt ""
msgid "Text CSV"
msgstr ""
-#. 9B3M
#: writer_globaldocument_StarOffice_XML_Writer_GlobalDocument_ui.xcu
msgctxt ""
"writer_globaldocument_StarOffice_XML_Writer_GlobalDocument_ui.xcu\n"
@@ -627,7 +566,6 @@ msgctxt ""
msgid "%productname% %formatversion% Master Document"
msgstr ""
-#. W^dl
#: writer8_ui.xcu
msgctxt ""
"writer8_ui.xcu\n"
@@ -637,7 +575,6 @@ msgctxt ""
msgid "ODF Text Document"
msgstr ""
-#. jmL)
#: MS_Word_95_Vorlage_ui.xcu
msgctxt ""
"MS_Word_95_Vorlage_ui.xcu\n"
@@ -647,7 +584,6 @@ msgctxt ""
msgid "Microsoft Word 95 Template"
msgstr ""
-#. l,@_
#: writer8_template_ui.xcu
msgctxt ""
"writer8_template_ui.xcu\n"
@@ -657,7 +593,6 @@ msgctxt ""
msgid "ODF Text Document Template"
msgstr ""
-#. #3,N
#: draw_html_Export_ui.xcu
msgctxt ""
"draw_html_Export_ui.xcu\n"
@@ -667,7 +602,6 @@ msgctxt ""
msgid "HTML Document (Draw)"
msgstr ""
-#. 3]]=
#: draw_StarOffice_XML_Draw_Template_ui.xcu
msgctxt ""
"draw_StarOffice_XML_Draw_Template_ui.xcu\n"
@@ -677,7 +611,6 @@ msgctxt ""
msgid "%productname% %formatversion% Drawing Template"
msgstr ""
-#. H=YU
#: writerglobal8_writer_ui.xcu
msgctxt ""
"writerglobal8_writer_ui.xcu\n"
@@ -687,7 +620,6 @@ msgctxt ""
msgid "ODF Text Document"
msgstr ""
-#. 2[!X
#: StarOffice_XML__Base__ui.xcu
msgctxt ""
"StarOffice_XML__Base__ui.xcu\n"
@@ -697,7 +629,6 @@ msgctxt ""
msgid "ODF Database"
msgstr ""
-#. ]m0?
#: MS_Word_2007_XML_ui.xcu
msgctxt ""
"MS_Word_2007_XML_ui.xcu\n"
@@ -707,7 +638,6 @@ msgctxt ""
msgid "Microsoft Word 2007/2010 XML"
msgstr ""
-#. @w`5
#: MS_PowerPoint_97_Vorlage_ui.xcu
msgctxt ""
"MS_PowerPoint_97_Vorlage_ui.xcu\n"
@@ -717,7 +647,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 97/2000/XP/2003 Template"
msgstr ""
-#. _bE!
#: StarOffice_XML__Chart__ui.xcu
#, fuzzy
msgctxt ""
@@ -728,7 +657,6 @@ msgctxt ""
msgid "%productname% %formatversion% Chart"
msgstr "productname% %formatversion% Report Chart%"
-#. 8O3T
#: math8_ui.xcu
msgctxt ""
"math8_ui.xcu\n"
diff --git a/source/ur/filter/source/config/fragments/internalgraphicfilters.po b/source/ur/filter/source/config/fragments/internalgraphicfilters.po
index 2d974b2470a..950272e5900 100644
--- a/source/ur/filter/source/config/fragments/internalgraphicfilters.po
+++ b/source/ur/filter/source/config/fragments/internalgraphicfilters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. WH%g
#: svg_Import.xcu
msgctxt ""
"svg_Import.xcu\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics"
msgstr ""
-#. rk[w
#: psd_Import.xcu
msgctxt ""
"psd_Import.xcu\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "PSD - Adobe Photoshop"
msgstr ""
-#. nN9M
#: jpg_Export.xcu
msgctxt ""
"jpg_Export.xcu\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. $180
#: dxf_Import.xcu
msgctxt ""
"dxf_Import.xcu\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
-#. !1co
#: bmp_Import.xcu
msgctxt ""
"bmp_Import.xcu\n"
@@ -64,7 +59,6 @@ msgctxt ""
msgid "BMP - Windows Bitmap"
msgstr ""
-#. kltH
#: tif_Import.xcu
msgctxt ""
"tif_Import.xcu\n"
@@ -74,7 +68,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. cK7s
#: xpm_Export.xcu
msgctxt ""
"xpm_Export.xcu\n"
@@ -84,7 +77,6 @@ msgctxt ""
msgid "XPM - X PixMap"
msgstr ""
-#. LBZQ
#: pcd_Import_Base16.xcu
msgctxt ""
"pcd_Import_Base16.xcu\n"
@@ -94,7 +86,6 @@ msgctxt ""
msgid "PCD - Kodak Photo CD (192x128)"
msgstr ""
-#. Qb,j
#: ras_Import.xcu
msgctxt ""
"ras_Import.xcu\n"
@@ -104,7 +95,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. Co!+
#: ppm_Import.xcu
msgctxt ""
"ppm_Import.xcu\n"
@@ -114,7 +104,6 @@ msgctxt ""
msgid "PPM - Portable Pixelmap"
msgstr ""
-#. MoeF
#: png_Export.xcu
msgctxt ""
"png_Export.xcu\n"
@@ -124,7 +113,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. :=wc
#: sgv_Import.xcu
msgctxt ""
"sgv_Import.xcu\n"
@@ -134,7 +122,6 @@ msgctxt ""
msgid "SGV - StarDraw 2.0"
msgstr ""
-#. 7gT1
#: wmf_Import.xcu
msgctxt ""
"wmf_Import.xcu\n"
@@ -144,7 +131,6 @@ msgctxt ""
msgid "WMF - Windows Metafile"
msgstr ""
-#. ]?[k
#: pcx_Import.xcu
msgctxt ""
"pcx_Import.xcu\n"
@@ -154,7 +140,6 @@ msgctxt ""
msgid "PCX - Zsoft Paintbrush"
msgstr ""
-#. $(nB
#: sgf_Import.xcu
msgctxt ""
"sgf_Import.xcu\n"
@@ -164,7 +149,6 @@ msgctxt ""
msgid "SGF - StarWriter Graphics Format"
msgstr ""
-#. M]4B
#: met_Export.xcu
msgctxt ""
"met_Export.xcu\n"
@@ -174,7 +158,6 @@ msgctxt ""
msgid "MET - OS/2 Metafile"
msgstr ""
-#. 6o+b
#: eps_Import.xcu
msgctxt ""
"eps_Import.xcu\n"
@@ -184,7 +167,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. @ZOn
#: bmp_Export.xcu
msgctxt ""
"bmp_Export.xcu\n"
@@ -194,7 +176,6 @@ msgctxt ""
msgid "BMP - Windows Bitmap"
msgstr ""
-#. P}G7
#: jpg_Import.xcu
msgctxt ""
"jpg_Import.xcu\n"
@@ -204,7 +185,6 @@ msgctxt ""
msgid "JPEG - Joint Photographic Experts Group"
msgstr ""
-#. K_`5
#: ppm_Export.xcu
msgctxt ""
"ppm_Export.xcu\n"
@@ -214,7 +194,6 @@ msgctxt ""
msgid "PPM - Portable Pixelmap"
msgstr ""
-#. )`ND
#: pbm_Export.xcu
msgctxt ""
"pbm_Export.xcu\n"
@@ -224,7 +203,6 @@ msgctxt ""
msgid "PBM - Portable Bitmap"
msgstr ""
-#. aA?q
#: gif_Export.xcu
msgctxt ""
"gif_Export.xcu\n"
@@ -234,7 +212,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange Format"
msgstr ""
-#. :zU2
#: ras_Export.xcu
msgctxt ""
"ras_Export.xcu\n"
@@ -244,7 +221,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr ""
-#. Ga7:
#: tif_Export.xcu
msgctxt ""
"tif_Export.xcu\n"
@@ -254,7 +230,6 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr ""
-#. VNR8
#: pct_Import.xcu
msgctxt ""
"pct_Import.xcu\n"
@@ -264,7 +239,6 @@ msgctxt ""
msgid "PCT - Mac Pict"
msgstr ""
-#. B`\~
#: xbm_Import.xcu
msgctxt ""
"xbm_Import.xcu\n"
@@ -274,7 +248,6 @@ msgctxt ""
msgid "XBM - X Bitmap"
msgstr ""
-#. %Z(;
#: emf_Export.xcu
msgctxt ""
"emf_Export.xcu\n"
@@ -284,7 +257,6 @@ msgctxt ""
msgid "EMF - Enhanced Metafile"
msgstr ""
-#. ]\SO
#: svm_Import.xcu
msgctxt ""
"svm_Import.xcu\n"
@@ -294,7 +266,6 @@ msgctxt ""
msgid "SVM - StarView Metafile"
msgstr ""
-#. llig
#: svg_Export.xcu
msgctxt ""
"svg_Export.xcu\n"
@@ -304,7 +275,6 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics"
msgstr ""
-#. :[\\
#: xpm_Import.xcu
msgctxt ""
"xpm_Import.xcu\n"
@@ -314,7 +284,6 @@ msgctxt ""
msgid "XPM - X PixMap"
msgstr ""
-#. IJmO
#: pcd_Import_Base4.xcu
msgctxt ""
"pcd_Import_Base4.xcu\n"
@@ -324,7 +293,6 @@ msgctxt ""
msgid "PCD - Kodak Photo CD (384x256)"
msgstr ""
-#. JU6T
#: pcd_Import_Base.xcu
msgctxt ""
"pcd_Import_Base.xcu\n"
@@ -334,7 +302,6 @@ msgctxt ""
msgid "PCD - Kodak Photo CD (768x512)"
msgstr ""
-#. y+w+
#: pgm_Import.xcu
msgctxt ""
"pgm_Import.xcu\n"
@@ -344,7 +311,6 @@ msgctxt ""
msgid "PGM - Portable Graymap"
msgstr ""
-#. UlYg
#: svm_Export.xcu
msgctxt ""
"svm_Export.xcu\n"
@@ -354,7 +320,6 @@ msgctxt ""
msgid "SVM - StarView Metafile"
msgstr ""
-#. 9+j;
#: met_Import.xcu
msgctxt ""
"met_Import.xcu\n"
@@ -364,7 +329,6 @@ msgctxt ""
msgid "MET - OS/2 Metafile"
msgstr ""
-#. ;~S:
#: pct_Export.xcu
msgctxt ""
"pct_Export.xcu\n"
@@ -374,7 +338,6 @@ msgctxt ""
msgid "PCT - Mac Pict"
msgstr ""
-#. @A~4
#: png_Import.xcu
msgctxt ""
"png_Import.xcu\n"
@@ -384,7 +347,6 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr ""
-#. WB2s
#: gif_Import.xcu
msgctxt ""
"gif_Import.xcu\n"
@@ -394,7 +356,6 @@ msgctxt ""
msgid "GIF - Graphics Interchange Format"
msgstr ""
-#. sIoS
#: pbm_Import.xcu
msgctxt ""
"pbm_Import.xcu\n"
@@ -404,7 +365,6 @@ msgctxt ""
msgid "PBM - Portable Bitmap"
msgstr ""
-#. }4lG
#: eps_Export.xcu
msgctxt ""
"eps_Export.xcu\n"
@@ -414,7 +374,6 @@ msgctxt ""
msgid "EPS - Encapsulated PostScript"
msgstr ""
-#. 62U|
#: tga_Import.xcu
msgctxt ""
"tga_Import.xcu\n"
@@ -424,7 +383,6 @@ msgctxt ""
msgid "TGA - Truevision Targa"
msgstr ""
-#. zj\*
#: emf_Import.xcu
msgctxt ""
"emf_Import.xcu\n"
@@ -434,7 +392,6 @@ msgctxt ""
msgid "EMF - Enhanced Metafile"
msgstr ""
-#. N-6v
#: wmf_Export.xcu
msgctxt ""
"wmf_Export.xcu\n"
@@ -444,7 +401,6 @@ msgctxt ""
msgid "WMF - Windows Metafile"
msgstr ""
-#. \c6#
#: pgm_Export.xcu
msgctxt ""
"pgm_Export.xcu\n"
diff --git a/source/ur/filter/source/config/fragments/types.po b/source/ur/filter/source/config/fragments/types.po
index c97aa2a978b..cbd5713a809 100644
--- a/source/ur/filter/source/config/fragments/types.po
+++ b/source/ur/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. x3d`
#: writer8_template.xcu
msgctxt ""
"writer8_template.xcu\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Writer 8 Template"
msgstr ""
-#. D[gE
#: MS_PowerPoint_2007_XML_AutoPlay.xcu
msgctxt ""
"MS_PowerPoint_2007_XML_AutoPlay.xcu\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 2007/2010 XML"
msgstr ""
-#. sm8]
#: math8.xcu
msgctxt ""
"math8.xcu\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "Math 8"
msgstr ""
-#. Bgkg
#: draw8.xcu
msgctxt ""
"draw8.xcu\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "Draw 8"
msgstr ""
-#. !^^%
#: writer8.xcu
msgctxt ""
"writer8.xcu\n"
@@ -64,7 +59,6 @@ msgctxt ""
msgid "Writer 8"
msgstr ""
-#. U;W8
#: StarBase.xcu
#, fuzzy
msgctxt ""
@@ -75,7 +69,6 @@ msgctxt ""
msgid "OpenDocument Database"
msgstr "OpenDocument Database Report"
-#. {6WL
#: MS_PowerPoint_2007_XML_Template.xcu
msgctxt ""
"MS_PowerPoint_2007_XML_Template.xcu\n"
@@ -85,7 +78,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 2007/2010 XML Template"
msgstr ""
-#. jQ8A
#: impress8_template.xcu
msgctxt ""
"impress8_template.xcu\n"
@@ -95,7 +87,6 @@ msgctxt ""
msgid "Impress 8 Template"
msgstr ""
-#. $TR?
#: calc8_template.xcu
msgctxt ""
"calc8_template.xcu\n"
@@ -105,7 +96,6 @@ msgctxt ""
msgid "Calc 8 Template"
msgstr ""
-#. qwTC
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
"writer_MS_Word_2007_XML.xcu\n"
@@ -115,7 +105,6 @@ msgctxt ""
msgid "Microsoft Word 2007/2010 XML"
msgstr ""
-#. 6gQv
#: calc_MS_Excel_2003_XML.xcu
msgctxt ""
"calc_MS_Excel_2003_XML.xcu\n"
@@ -125,7 +114,6 @@ msgctxt ""
msgid "Microsoft Excel 2003 XML"
msgstr ""
-#. w7!h
#: MS_Excel_2007_Binary.xcu
msgctxt ""
"MS_Excel_2007_Binary.xcu\n"
@@ -135,7 +123,6 @@ msgctxt ""
msgid "Microsoft Excel 2007 Binary"
msgstr ""
-#. zY[|
#: writer_MS_Word_2003_XML.xcu
msgctxt ""
"writer_MS_Word_2003_XML.xcu\n"
@@ -145,7 +132,6 @@ msgctxt ""
msgid "Microsoft Word 2003 XML"
msgstr ""
-#. GB)m
#: MS_Excel_2007_XML_Template.xcu
msgctxt ""
"MS_Excel_2007_XML_Template.xcu\n"
@@ -155,7 +141,6 @@ msgctxt ""
msgid "Microsoft Excel 2007/2010 XML Template"
msgstr ""
-#. ;Fv(
#: chart8.xcu
msgctxt ""
"chart8.xcu\n"
@@ -165,7 +150,6 @@ msgctxt ""
msgid "Chart 8"
msgstr ""
-#. TTlL
#: writerweb8_writer_template.xcu
msgctxt ""
"writerweb8_writer_template.xcu\n"
@@ -175,7 +159,6 @@ msgctxt ""
msgid "Writer/Web 8 Template"
msgstr ""
-#. x9Oe
#: draw8_template.xcu
msgctxt ""
"draw8_template.xcu\n"
@@ -185,7 +168,6 @@ msgctxt ""
msgid "Draw 8 Template"
msgstr ""
-#. U@|E
#: writer_MS_Word_2007_XML_Template.xcu
msgctxt ""
"writer_MS_Word_2007_XML_Template.xcu\n"
@@ -195,7 +177,6 @@ msgctxt ""
msgid "Microsoft Word 2007/2010 XML Template"
msgstr ""
-#. Eu9!
#: calc8.xcu
msgctxt ""
"calc8.xcu\n"
@@ -205,7 +186,6 @@ msgctxt ""
msgid "Calc 8"
msgstr ""
-#. 3P||
#: impress8.xcu
msgctxt ""
"impress8.xcu\n"
@@ -215,7 +195,6 @@ msgctxt ""
msgid "Impress 8"
msgstr ""
-#. MGe)
#: writerglobal8.xcu
msgctxt ""
"writerglobal8.xcu\n"
@@ -225,7 +204,6 @@ msgctxt ""
msgid "Writer 8 Master Document"
msgstr ""
-#. .k,:
#: MS_PowerPoint_2007_XML.xcu
msgctxt ""
"MS_PowerPoint_2007_XML.xcu\n"
@@ -235,7 +213,6 @@ msgctxt ""
msgid "Microsoft PowerPoint 2007/2010 XML"
msgstr ""
-#. a[Qh
#: MS_Excel_2007_XML.xcu
msgctxt ""
"MS_Excel_2007_XML.xcu\n"
diff --git a/source/ur/filter/source/flash.po b/source/ur/filter/source/flash.po
index 29b0c4d91a7..1e46ec0df58 100644
--- a/source/ur/filter/source/flash.po
+++ b/source/ur/filter/source/flash.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. SaUo
#: impswfdialog.src
msgctxt ""
"impswfdialog.src\n"
@@ -26,7 +25,6 @@ msgid ""
"100: max. quality"
msgstr ""
-#. \Qfh
#: impswfdialog.src
msgctxt ""
"impswfdialog.src\n"
diff --git a/source/ur/filter/source/graphicfilter/eps.po b/source/ur/filter/source/graphicfilter/eps.po
index 71f29330236..7afaaa75770 100644
--- a/source/ur/filter/source/graphicfilter/eps.po
+++ b/source/ur/filter/source/graphicfilter/eps.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. \|.i
#: epsstr.src
msgctxt ""
"epsstr.src\n"
diff --git a/source/ur/filter/source/pdf.po b/source/ur/filter/source/pdf.po
index 98187869ae4..72987a52ddb 100644
--- a/source/ur/filter/source/pdf.po
+++ b/source/ur/filter/source/pdf.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. LY5v
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "E~xport"
msgstr ""
-#. AQU:
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "Set open password"
msgstr ""
-#. Z2)V
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "Set permission password"
msgstr ""
-#. 4S[C
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "Range"
msgstr ""
-#. W0[B
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -61,7 +56,6 @@ msgctxt ""
msgid "~All"
msgstr ""
-#. 0#QB
#: impdialog.src
#, fuzzy
msgctxt ""
@@ -72,7 +66,6 @@ msgctxt ""
msgid "~Pages"
msgstr "صفحات"
-#. (QN6
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -82,7 +75,6 @@ msgctxt ""
msgid "~Selection"
msgstr "~انتخاب"
-#. TDTP
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -92,7 +84,6 @@ msgctxt ""
msgid "Images"
msgstr ""
-#. W0pN
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -102,7 +93,6 @@ msgctxt ""
msgid "~Lossless compression"
msgstr ""
-#. (reK
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -112,7 +102,6 @@ msgctxt ""
msgid "~JPEG compression"
msgstr ""
-#. !YT5
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -122,7 +111,6 @@ msgctxt ""
msgid "~Quality"
msgstr ""
-#. w1Y:
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -132,7 +120,6 @@ msgctxt ""
msgid "~Reduce image resolution"
msgstr ""
-#. wK|)
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -141,7 +128,6 @@ msgctxt ""
msgid "General"
msgstr ""
-#. O__/
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -150,7 +136,6 @@ msgctxt ""
msgid "Watermark"
msgstr ""
-#. m%~K
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -159,7 +144,6 @@ msgctxt ""
msgid "Sign with Watermark"
msgstr ""
-#. Z:i#
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -168,7 +152,6 @@ msgctxt ""
msgid "Watermark Text"
msgstr ""
-#. ]h9H
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -177,7 +160,6 @@ msgctxt ""
msgid "General"
msgstr ""
-#. znbP
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -186,7 +168,6 @@ msgctxt ""
msgid "Em~bed OpenDocument file"
msgstr ""
-#. }Y+-
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -195,7 +176,6 @@ msgctxt ""
msgid "Makes this PDF easily editable in %PRODUCTNAME"
msgstr ""
-#. .Dg$
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -204,7 +184,6 @@ msgctxt ""
msgid "P~DF/A-1a"
msgstr ""
-#. :CRm
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -213,7 +192,6 @@ msgctxt ""
msgid "~Tagged PDF"
msgstr ""
-#. t8Q0
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -222,7 +200,6 @@ msgctxt ""
msgid "~Create PDF form"
msgstr ""
-#. Om4N
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -231,7 +208,6 @@ msgctxt ""
msgid "Submit ~format"
msgstr ""
-#. -R[=
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -240,7 +216,6 @@ msgctxt ""
msgid "Allow duplicate field ~names"
msgstr ""
-#. K~#|
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -249,7 +224,6 @@ msgctxt ""
msgid "Export ~bookmarks"
msgstr ""
-#. o}Se
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -258,7 +232,6 @@ msgctxt ""
msgid "~Export comments"
msgstr ""
-#. {wNC
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -267,7 +240,6 @@ msgctxt ""
msgid "Export ~notes pages"
msgstr ""
-#. al{^
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -276,7 +248,6 @@ msgctxt ""
msgid "Export ~hidden pages"
msgstr ""
-#. p-BB
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -285,7 +256,6 @@ msgctxt ""
msgid "Exp~ort automatically inserted blank pages"
msgstr ""
-#. V{m/
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -294,7 +264,6 @@ msgctxt ""
msgid "E~mbed standard fonts"
msgstr ""
-#. cfF8
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -303,7 +272,6 @@ msgctxt ""
msgid "PDF/A does not allow encryption. The exported PDF file will not be password protected."
msgstr ""
-#. LT;O
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -312,7 +280,6 @@ msgctxt ""
msgid "PDF/A Export"
msgstr ""
-#. S8jQ
#: impdialog.src
#, fuzzy
msgctxt ""
@@ -323,7 +290,6 @@ msgctxt ""
msgid "Panes"
msgstr "صفحات"
-#. -\#!
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -333,7 +299,6 @@ msgctxt ""
msgid "~Page only"
msgstr ""
-#. w.:v
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -343,7 +308,6 @@ msgctxt ""
msgid "~Bookmarks and page"
msgstr ""
-#. 2l@$
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -353,7 +317,6 @@ msgctxt ""
msgid "~Thumbnails and page"
msgstr ""
-#. $I2H
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -363,7 +326,6 @@ msgctxt ""
msgid "Open on page"
msgstr ""
-#. W[ik
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -373,7 +335,6 @@ msgctxt ""
msgid "Magnification"
msgstr ""
-#. 6D(S
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -383,7 +344,6 @@ msgctxt ""
msgid "~Default"
msgstr ""
-#. teE,
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -393,7 +353,6 @@ msgctxt ""
msgid "~Fit in window"
msgstr ""
-#. K\UE
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -403,7 +362,6 @@ msgctxt ""
msgid "Fit ~width"
msgstr ""
-#. Xr2t
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -413,7 +371,6 @@ msgctxt ""
msgid "Fit ~visible"
msgstr ""
-#. {USU
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -423,7 +380,6 @@ msgctxt ""
msgid "~Zoom factor"
msgstr ""
-#. Fz2T
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -433,7 +389,6 @@ msgctxt ""
msgid "Page layout"
msgstr ""
-#. _DAp
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -443,7 +398,6 @@ msgctxt ""
msgid "D~efault"
msgstr ""
-#. PZ);
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -453,7 +407,6 @@ msgctxt ""
msgid "~Single page"
msgstr ""
-#. -^sP
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -463,7 +416,6 @@ msgctxt ""
msgid "~Continuous"
msgstr ""
-#. Nt(1
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -473,7 +425,6 @@ msgctxt ""
msgid "C~ontinuous facing"
msgstr ""
-#. {3So
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -483,7 +434,6 @@ msgctxt ""
msgid "First page is ~left"
msgstr ""
-#. CoFE
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -492,7 +442,6 @@ msgctxt ""
msgid "Initial View"
msgstr ""
-#. s|1u
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -502,7 +451,6 @@ msgctxt ""
msgid "Window options"
msgstr ""
-#. %(k;
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -512,7 +460,6 @@ msgctxt ""
msgid "~Resize window to initial page"
msgstr ""
-#. u,vy
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -522,7 +469,6 @@ msgctxt ""
msgid "~Center window on screen"
msgstr ""
-#. y,,T
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -532,7 +478,6 @@ msgctxt ""
msgid "~Open in full screen mode"
msgstr ""
-#. NuCV
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -542,7 +487,6 @@ msgctxt ""
msgid "~Display document title"
msgstr ""
-#. nOuk
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -552,7 +496,6 @@ msgctxt ""
msgid "User interface options"
msgstr ""
-#. kNB;
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -562,7 +505,6 @@ msgctxt ""
msgid "Hide ~menubar"
msgstr ""
-#. I/hA
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -572,7 +514,6 @@ msgctxt ""
msgid "Hide ~toolbar"
msgstr ""
-#. HX(V
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -582,7 +523,6 @@ msgctxt ""
msgid "Hide ~window controls"
msgstr ""
-#. 9H/u
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -592,7 +532,6 @@ msgctxt ""
msgid "Transitions"
msgstr ""
-#. ccsb
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -602,7 +541,6 @@ msgctxt ""
msgid "~Use transition effects"
msgstr ""
-#. ={F=
#: impdialog.src
#, fuzzy
msgctxt ""
@@ -613,7 +551,6 @@ msgctxt ""
msgid "Bookmarks"
msgstr "بُک مارک"
-#. OKp0
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -623,7 +560,6 @@ msgctxt ""
msgid "All bookmark levels"
msgstr ""
-#. SKf5
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -633,7 +569,6 @@ msgctxt ""
msgid "Visible bookmark levels"
msgstr ""
-#. fE4=
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -642,7 +577,6 @@ msgctxt ""
msgid "User Interface"
msgstr ""
-#. RxVa
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -652,7 +586,6 @@ msgctxt ""
msgid "File encryption and permission"
msgstr ""
-#. 8O\m
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -662,7 +595,6 @@ msgctxt ""
msgid "Set ~passwords..."
msgstr ""
-#. C5/P
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -672,7 +604,6 @@ msgctxt ""
msgid "Set passwords"
msgstr ""
-#. 7#Y[
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -682,7 +613,6 @@ msgctxt ""
msgid "Open password set"
msgstr ""
-#. {Y5j
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -692,7 +622,6 @@ msgctxt ""
msgid "PDF document will be encrypted"
msgstr ""
-#. ^5F;
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -702,7 +631,6 @@ msgctxt ""
msgid "No open password set"
msgstr ""
-#. _,dq
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -712,7 +640,6 @@ msgctxt ""
msgid "PDF document will not be encrypted"
msgstr ""
-#. Vl%G
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -722,7 +649,6 @@ msgctxt ""
msgid "PDF document will not be encrypted due to PDF/A export."
msgstr ""
-#. 6eL*
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -732,7 +658,6 @@ msgctxt ""
msgid "Permission password set"
msgstr ""
-#. EOgG
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -742,7 +667,6 @@ msgctxt ""
msgid "PDF document will be restricted"
msgstr ""
-#. :#af
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -752,7 +676,6 @@ msgctxt ""
msgid "No permission password set"
msgstr ""
-#. uyXD
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -762,7 +685,6 @@ msgctxt ""
msgid "PDF document will be unrestricted"
msgstr ""
-#. ]v4}
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -772,7 +694,6 @@ msgctxt ""
msgid "PDF document will not be restricted due to PDF/A export."
msgstr ""
-#. 7B4x
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -782,7 +703,6 @@ msgctxt ""
msgid "Printing"
msgstr ""
-#. SQO\
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -792,7 +712,6 @@ msgctxt ""
msgid "~Not permitted"
msgstr ""
-#. 5JyD
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -802,7 +721,6 @@ msgctxt ""
msgid "~Low resolution (150 dpi)"
msgstr ""
-#. !_.;
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -812,7 +730,6 @@ msgctxt ""
msgid "~High resolution"
msgstr ""
-#. ;S*M
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -822,7 +739,6 @@ msgctxt ""
msgid "Changes"
msgstr ""
-#. K9`=
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -832,7 +748,6 @@ msgctxt ""
msgid "No~t permitted"
msgstr ""
-#. 1C6j
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -842,7 +757,6 @@ msgctxt ""
msgid "~Inserting, deleting, and rotating pages"
msgstr ""
-#. rN$F
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -852,7 +766,6 @@ msgctxt ""
msgid "~Filling in form fields"
msgstr ""
-#. k~9D
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -862,7 +775,6 @@ msgctxt ""
msgid "~Commenting, filling in form fields"
msgstr ""
-#. i#x!
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -872,7 +784,6 @@ msgctxt ""
msgid "~Any except extracting pages"
msgstr ""
-#. SM5,
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -882,7 +793,6 @@ msgctxt ""
msgid "Ena~ble copying of content"
msgstr ""
-#. 2,%}
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -892,7 +802,6 @@ msgctxt ""
msgid "Enable text access for acce~ssibility tools"
msgstr ""
-#. ?H~_
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -901,7 +810,6 @@ msgctxt ""
msgid "Security"
msgstr ""
-#. Z6B?
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -911,7 +819,6 @@ msgctxt ""
msgid "Use this certificate to digitally sign PDF documents:"
msgstr ""
-#. *h@_
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -921,7 +828,6 @@ msgctxt ""
msgid "~Select..."
msgstr ""
-#. I6O/
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -931,7 +837,6 @@ msgctxt ""
msgid "Clear"
msgstr ""
-#. (ErU
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -941,7 +846,6 @@ msgctxt ""
msgid "Certificate Password"
msgstr ""
-#. G7-[
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -951,7 +855,6 @@ msgctxt ""
msgid "Location"
msgstr ""
-#. 7Auq
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -961,7 +864,6 @@ msgctxt ""
msgid "Contact Information"
msgstr ""
-#. \EMs
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -971,7 +873,6 @@ msgctxt ""
msgid "Reason"
msgstr ""
-#. dFjJ
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -980,7 +881,6 @@ msgctxt ""
msgid "Digital Signatures"
msgstr ""
-#. OX?3
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -990,7 +890,6 @@ msgctxt ""
msgid "Export bookmarks as named destinations"
msgstr ""
-#. HS$N
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1000,7 +899,6 @@ msgctxt ""
msgid "Convert document references to PDF targets"
msgstr ""
-#. !$!B
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1010,7 +908,6 @@ msgctxt ""
msgid "Export URLs relative to file system"
msgstr ""
-#. O?7X
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1020,7 +917,6 @@ msgctxt ""
msgid "Cross-document links"
msgstr ""
-#. )[ir
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1030,7 +926,6 @@ msgctxt ""
msgid "Default mode"
msgstr ""
-#. 9P;G
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1040,7 +935,6 @@ msgctxt ""
msgid "Open with PDF reader application"
msgstr ""
-#. \*C~
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1050,7 +944,6 @@ msgctxt ""
msgid "Open with Internet browser"
msgstr ""
-#. +lJ3
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1059,7 +952,6 @@ msgctxt ""
msgid "---"
msgstr ""
-#. s1;s
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1069,7 +961,6 @@ msgctxt ""
msgid "General"
msgstr ""
-#. $S11
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1079,7 +970,6 @@ msgctxt ""
msgid "Initial View"
msgstr ""
-#. 2{JW
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1089,7 +979,6 @@ msgctxt ""
msgid "User Interface"
msgstr ""
-#. kGN8
#: impdialog.src
#, fuzzy
msgctxt ""
@@ -1100,7 +989,6 @@ msgctxt ""
msgid "Links"
msgstr "سطور"
-#. _Lk_
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1110,7 +998,6 @@ msgctxt ""
msgid "Security"
msgstr ""
-#. 50V0
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1120,7 +1007,6 @@ msgctxt ""
msgid "Digital Signatures"
msgstr ""
-#. \^dH
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1129,7 +1015,6 @@ msgctxt ""
msgid "PDF Options"
msgstr ""
-#. %CF.
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1139,7 +1024,6 @@ msgctxt ""
msgid "During PDF export the following problems occurred:"
msgstr ""
-#. (@3I
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1149,7 +1033,6 @@ msgctxt ""
msgid "PDF/A transparency"
msgstr ""
-#. .z0;
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1159,7 +1042,6 @@ msgctxt ""
msgid "PDF/A forbids transparency. A transparent object was painted opaque instead."
msgstr ""
-#. Qmv-
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1169,7 +1051,6 @@ msgctxt ""
msgid "PDF version conflict"
msgstr ""
-#. oWot
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1179,7 +1060,6 @@ msgctxt ""
msgid "Transparency is not supported in PDF versions earlier than PDF 1.4. A transparent object was painted opaque instead"
msgstr ""
-#. =SfZ
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1189,7 +1069,6 @@ msgctxt ""
msgid "PDF/A form action"
msgstr ""
-#. ^wB8
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1199,7 +1078,6 @@ msgctxt ""
msgid "A form control contained an action not supported by the PDF/A standard. The action was skipped"
msgstr ""
-#. qjQx
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1209,7 +1087,6 @@ msgctxt ""
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 ""
-#. {s)$
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1219,7 +1096,6 @@ msgctxt ""
msgid "Transparencies removed"
msgstr ""
-#. _2f%
#: impdialog.src
msgctxt ""
"impdialog.src\n"
@@ -1228,7 +1104,6 @@ msgctxt ""
msgid "Problems during PDF export"
msgstr ""
-#. emFd
#: pdf.src
msgctxt ""
"pdf.src\n"
diff --git a/source/ur/filter/source/t602.po b/source/ur/filter/source/t602.po
index 69553bf6dc1..5249daba950 100644
--- a/source/ur/filter/source/t602.po
+++ b/source/ur/filter/source/t602.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. !97#
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Settings for T602 import"
msgstr ""
-#. bS;E
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "Encoding"
msgstr ""
-#. #}]Z
#: t602filter.src
#, fuzzy
msgctxt ""
@@ -42,7 +39,6 @@ msgctxt ""
msgid "Automatic"
msgstr "خودکار"
-#. q39x
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "CP852 (Latin2)"
msgstr ""
-#. Z:#0
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "CP895 (KEYB2CS, Kamenicky)"
msgstr ""
-#. tnRz
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "KOI8 CS2"
msgstr ""
-#. xm\=
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "Mode for Russian language (Cyrillic)"
msgstr ""
-#. g]SZ
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "Reformat the text"
msgstr ""
-#. 7*\q
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "Display dot commands"
msgstr ""
-#. 3HiO
#: t602filter.src
msgctxt ""
"t602filter.src\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Cancel"
msgstr ""
-#. Tk%E
#: t602filter.src
msgctxt ""
"t602filter.src\n"
diff --git a/source/ur/filter/source/xsltdialog.po b/source/ur/filter/source/xsltdialog.po
index 4a464045261..30adef134e9 100644
--- a/source/ur/filter/source/xsltdialog.po
+++ b/source/ur/filter/source/xsltdialog.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,165 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. V%R@
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FL_EXPORT\n"
-"fixedline.text"
-msgid "Export"
-msgstr ""
-
-#. R\VB
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FT_EXPORT_XSLT\n"
-"fixedtext.text"
-msgid "XSLT for export"
-msgstr ""
-
-#. 6Zh[
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FT_TRANSFORM_DOCUMENT\n"
-"fixedtext.text"
-msgid "Transform document"
-msgstr ""
-
-#. 3kwV
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"PB_EXPORT_BROWSE\n"
-"pushbutton.text"
-msgid "~Browse..."
-msgstr ""
-
-#. 4pQX
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"PB_CURRENT_DOCUMENT\n"
-"pushbutton.text"
-msgid "~Current Document"
-msgstr ""
-
-#. m1(#
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FL_IMPORT\n"
-"fixedline.text"
-msgid "Import"
-msgstr ""
-
-#. ;V8@
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FT_IMPORT_XSLT\n"
-"fixedtext.text"
-msgid "XSLT for import"
-msgstr ""
-
-#. *m//
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FT_IMPORT_TEMPLATE\n"
-"fixedtext.text"
-msgid "Template for import"
-msgstr ""
-
-#. 6|G?
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"FT_TRANSFORM_FILE\n"
-"fixedtext.text"
-msgid "Transform file"
-msgstr ""
-
-#. j[dR
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"CBX_DISPLAY_SOURCE\n"
-"checkbox.text"
-msgid "~Display source"
-msgstr ""
-
-#. !P/u
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"PB_IMPORT_BROWSE\n"
-"pushbutton.text"
-msgid "B~rowse..."
-msgstr ""
-
-#. ,p_v
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"PB_RECENT_DOCUMENT\n"
-"pushbutton.text"
-msgid "~Recent File"
-msgstr ""
-
-#. /}Y\
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"PB_CLOSE\n"
-"pushbutton.text"
-msgid "~Close"
-msgstr ""
-
-#. Xv;y
-#: xmlfiltertestdialog.src
-msgctxt ""
-"xmlfiltertestdialog.src\n"
-"DLG_XML_FILTER_TEST_DIALOG\n"
-"modaldialog.text"
-msgid "Test XML Filter: %s"
-msgstr ""
-
-#. 44Ax
-#: xmlfileview.src
-msgctxt ""
-"xmlfileview.src\n"
-"DLG_XML_SOURCE_FILE_DIALOG\n"
-"PB_VALIDATE\n"
-"pushbutton.text"
-msgid "~Validate"
-msgstr ""
-
-#. /)Cm
-#: xmlfileview.src
-msgctxt ""
-"xmlfileview.src\n"
-"DLG_XML_SOURCE_FILE_DIALOG\n"
-"workwindow.text"
-msgid "XML Filter output"
-msgstr ""
-
-#. 6U=`
#: xmlfiltertabpagebasic.src
msgctxt ""
"xmlfiltertabpagebasic.src\n"
@@ -182,7 +23,6 @@ msgctxt ""
msgid "Filter name"
msgstr ""
-#. RR@b
#: xmlfiltertabpagebasic.src
msgctxt ""
"xmlfiltertabpagebasic.src\n"
@@ -192,7 +32,6 @@ msgctxt ""
msgid "Application"
msgstr ""
-#. !HS[
#: xmlfiltertabpagebasic.src
msgctxt ""
"xmlfiltertabpagebasic.src\n"
@@ -204,7 +43,6 @@ msgid ""
"file type"
msgstr ""
-#. a@$t
#: xmlfiltertabpagebasic.src
msgctxt ""
"xmlfiltertabpagebasic.src\n"
@@ -214,7 +52,6 @@ msgctxt ""
msgid "File extension"
msgstr ""
-#. ui6:
#: xmlfiltertabpagebasic.src
msgctxt ""
"xmlfiltertabpagebasic.src\n"
@@ -224,7 +61,6 @@ msgctxt ""
msgid "Comments"
msgstr "آراء"
-#. uJhC
#: xmlfiltertabpagebasic.src
msgctxt ""
"xmlfiltertabpagebasic.src\n"
@@ -233,7 +69,6 @@ msgctxt ""
msgid "General"
msgstr ""
-#. `qZZ
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -243,27 +78,6 @@ msgctxt ""
msgid "DocType"
msgstr ""
-#. 26?n
-#: xmlfiltertabpagexslt.src
-msgctxt ""
-"xmlfiltertabpagexslt.src\n"
-"RID_XML_FILTER_TABPAGE_XSLT\n"
-"FT_XML_DTD_SCHEMA\n"
-"fixedtext.text"
-msgid "DTD"
-msgstr ""
-
-#. eh}M
-#: xmlfiltertabpagexslt.src
-msgctxt ""
-"xmlfiltertabpagexslt.src\n"
-"RID_XML_FILTER_TABPAGE_XSLT\n"
-"ED_XML_DTD_SCHEMA_BROWSE\n"
-"pushbutton.text"
-msgid "Browse..."
-msgstr ""
-
-#. HvP0
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -273,7 +87,6 @@ msgctxt ""
msgid "XSLT for export"
msgstr ""
-#. ihb7
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -283,7 +96,6 @@ msgctxt ""
msgid "Browse..."
msgstr ""
-#. kUl.
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -293,7 +105,6 @@ msgctxt ""
msgid "XSLT for import"
msgstr ""
-#. *3QN
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -303,7 +114,6 @@ msgctxt ""
msgid "Browse..."
msgstr ""
-#. J~CV
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -313,7 +123,6 @@ msgctxt ""
msgid "Template for import"
msgstr ""
-#. xdF,
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -323,7 +132,6 @@ msgctxt ""
msgid "Browse..."
msgstr ""
-#. PrLq
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -333,7 +141,6 @@ msgctxt ""
msgid "The filter needs XSLT 2.0 processor"
msgstr ""
-#. 7oY]
#: xmlfiltertabpagexslt.src
msgctxt ""
"xmlfiltertabpagexslt.src\n"
@@ -342,7 +149,6 @@ msgctxt ""
msgid "Transformation"
msgstr ""
-#. c)%c
#: xmlfiltertabdialog.src
msgctxt ""
"xmlfiltertabdialog.src\n"
@@ -352,7 +158,6 @@ msgctxt ""
msgid "General"
msgstr ""
-#. ~YIV
#: xmlfiltertabdialog.src
msgctxt ""
"xmlfiltertabdialog.src\n"
@@ -362,7 +167,6 @@ msgctxt ""
msgid "Transformation"
msgstr ""
-#. Bi34
#: xmlfiltertabdialog.src
msgctxt ""
"xmlfiltertabdialog.src\n"
@@ -371,96 +175,6 @@ msgctxt ""
msgid "XML Filter: %s"
msgstr ""
-#. mC7)
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"PB_XML_FILTER_NEW\n"
-"pushbutton.text"
-msgid "~New..."
-msgstr ""
-
-#. hk8C
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"PB_XML_FILTER_EDIT\n"
-"pushbutton.text"
-msgid "~Edit..."
-msgstr ""
-
-#. o=9H
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"PB_XML_FILTER_TEST\n"
-"pushbutton.text"
-msgid "~Test XSLTs..."
-msgstr ""
-
-#. *B]g
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"PB_XML_FILTER_DELETE\n"
-"pushbutton.text"
-msgid "~Delete..."
-msgstr ""
-
-#. -Y?U
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"PB_XML_FILTER_SAVE\n"
-"pushbutton.text"
-msgid "~Save as Package..."
-msgstr ""
-
-#. TSeo
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"PB_XML_FILTER_OPEN\n"
-"pushbutton.text"
-msgid "~Open Package..."
-msgstr ""
-
-#. r`v9
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"PB_XML_FILTER_CLOSE\n"
-"pushbutton.text"
-msgid "~Close"
-msgstr ""
-
-#. k_8k
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"STR_XML_FILTER_LISTBOX\n"
-"string.text"
-msgid "XML Filter List"
-msgstr ""
-
-#. Bx3g
-#: xmlfiltersettingsdialog.src
-msgctxt ""
-"xmlfiltersettingsdialog.src\n"
-"DLG_XML_FILTER_SETTINGS_DIALOG\n"
-"workwindow.text"
-msgid "XML Filter Settings"
-msgstr ""
-
-#. 8k_g
#: xmlfilterdialogstrings.src
#, fuzzy
msgctxt ""
@@ -470,7 +184,6 @@ msgctxt ""
msgid "Name"
msgstr "~نام"
-#. %-T^
#: xmlfilterdialogstrings.src
#, fuzzy
msgctxt ""
@@ -480,7 +193,6 @@ msgctxt ""
msgid "Type"
msgstr "نوعیت:"
-#. ~qjq
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -489,7 +201,6 @@ msgctxt ""
msgid "Unknown"
msgstr ""
-#. YY?z
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -498,7 +209,6 @@ msgctxt ""
msgid "import filter"
msgstr ""
-#. _D4M
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -507,7 +217,6 @@ msgctxt ""
msgid "import/export filter"
msgstr ""
-#. %m6@
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -516,7 +225,6 @@ msgctxt ""
msgid "export filter"
msgstr ""
-#. P0XA
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -525,7 +233,6 @@ msgctxt ""
msgid "Do you really want to delete the XML Filter '%s'? This action cannot be undone."
msgstr ""
-#. L*7(
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -534,7 +241,6 @@ msgctxt ""
msgid "An XML filter with the name '%s' already exists. Please enter a different name."
msgstr ""
-#. M;HY
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -543,16 +249,6 @@ msgctxt ""
msgid "The name for the user interface '%s1' is already used by the XML filter '%s2'. Please enter a different name."
msgstr ""
-#. V7TL
-#: xmlfilterdialogstrings.src
-msgctxt ""
-"xmlfilterdialogstrings.src\n"
-"STR_ERROR_DTD_NOT_FOUND\n"
-"string.text"
-msgid "The DTD could not be found. Please enter a valid path."
-msgstr ""
-
-#. *exW
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -561,7 +257,6 @@ msgctxt ""
msgid "The XSLT for export cannot be found. Please enter a valid path."
msgstr ""
-#. }JWy
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -570,7 +265,6 @@ msgctxt ""
msgid "The XSLT for import cannot be found. Please enter a valid path."
msgstr ""
-#. F]Q[
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -579,7 +273,6 @@ msgctxt ""
msgid "The given import template cannot be found. Please enter a valid path."
msgstr ""
-#. d7wd
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -588,7 +281,6 @@ msgctxt ""
msgid "Not specified"
msgstr ""
-#. 4On}
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -597,7 +289,6 @@ msgctxt ""
msgid "New Filter"
msgstr ""
-#. :~$h
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -606,7 +297,6 @@ msgctxt ""
msgid "Untitled"
msgstr ""
-#. U7)s
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -615,7 +305,6 @@ msgctxt ""
msgid "undefined filter"
msgstr ""
-#. 1KTV
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -624,7 +313,6 @@ msgctxt ""
msgid "The XML filter '%s' has been saved as package '%s'. "
msgstr ""
-#. Sn(,
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -633,7 +321,6 @@ msgctxt ""
msgid "%s XML filters have been saved in the package '%s'."
msgstr ""
-#. dW^I
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -642,7 +329,6 @@ msgctxt ""
msgid "XSLT filter package"
msgstr ""
-#. T][`
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -651,7 +337,6 @@ msgctxt ""
msgid "The XML filter '%s' has been installed successfully."
msgstr ""
-#. iaY+
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -660,7 +345,6 @@ msgctxt ""
msgid "%s XML filters have been installed successfully."
msgstr ""
-#. FwPH
#: xmlfilterdialogstrings.src
msgctxt ""
"xmlfilterdialogstrings.src\n"
@@ -668,3 +352,11 @@ msgctxt ""
"string.text"
msgid "No XML filter could be installed because the package '%s' does not contain any XML filters."
msgstr ""
+
+#: xmlfilterdialogstrings.src
+msgctxt ""
+"xmlfilterdialogstrings.src\n"
+"STR_XML_FILTER_LISTBOX\n"
+"string.text"
+msgid "XML Filter List"
+msgstr ""
diff --git a/source/ur/filter/uiconfig/ui.po b/source/ur/filter/uiconfig/ui.po
index a13b0ec7efd..26745b7a662 100644
--- a/source/ur/filter/uiconfig/ui.po
+++ b/source/ur/filter/uiconfig/ui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-20 18:13+0100\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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: ur\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 8lI@
#: xmlfiltersettings.ui
msgctxt ""
"xmlfiltersettings.ui\n"
@@ -22,3 +22,120 @@ msgctxt ""
"string.text"
msgid "XML Filter Settings"
msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"TestXMLFilterDialog\n"
+"title\n"
+"string.text"
+msgid "Test XML Filter: %s"
+msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"label3\n"
+"label\n"
+"string.text"
+msgid "XSLT for export"
+msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"label4\n"
+"label\n"
+"string.text"
+msgid "Transform document"
+msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"exportbrowse\n"
+"label\n"
+"string.text"
+msgid "Browse..."
+msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"currentdocument\n"
+"label\n"
+"string.text"
+msgid "Current Document"
+msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"label1\n"
+"label\n"
+"string.text"
+msgid "Export"
+msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"label5\n"
+"label\n"
+"string.text"
+msgid "XSLT for import"
+msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"importbrowse\n"
+"label\n"
+"string.text"
+msgid "Browse..."
+msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"recentfile\n"
+"label\n"
+"string.text"
+msgid "Recent File"
+msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"templateimport\n"
+"label\n"
+"string.text"
+msgid "Template for import"
+msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"displaysource\n"
+"label\n"
+"string.text"
+msgid "Display source"
+msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"label6\n"
+"label\n"
+"string.text"
+msgid "Transform file"
+msgstr ""
+
+#: testxmlfilter.ui
+msgctxt ""
+"testxmlfilter.ui\n"
+"label2\n"
+"label\n"
+"string.text"
+msgid "Import"
+msgstr ""
diff --git a/source/ur/forms/source/resource.po b/source/ur/forms/source/resource.po
index e8f0a4068a1..536fcf49beb 100644
--- a/source/ur/forms/source/resource.po
+++ b/source/ur/forms/source/resource.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. +QYe
#: strings.src
msgctxt ""
"strings.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "The contents of a combo box or list field could not be determined."
msgstr ""
-#. #vZY
#: strings.src
msgctxt ""
"strings.src\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "Insert graphics"
msgstr ""
-#. vk|m
#: strings.src
msgctxt ""
"strings.src\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "substituted"
msgstr ""
-#. .jR@
#: strings.src
msgctxt ""
"strings.src\n"
@@ -50,7 +46,6 @@ msgctxt ""
msgid "An error occurred while this control was being loaded. It was therefore replaced with a placeholder."
msgstr ""
-#. G8hN
#: strings.src
msgctxt ""
"strings.src\n"
@@ -59,7 +54,6 @@ msgctxt ""
msgid "Error reading data from database"
msgstr ""
-#. 4jLM
#: strings.src
msgctxt ""
"strings.src\n"
@@ -68,7 +62,6 @@ msgctxt ""
msgid "Connection failed"
msgstr ""
-#. 9aqb
#: strings.src
msgctxt ""
"strings.src\n"
@@ -77,7 +70,6 @@ msgctxt ""
msgid "The data content could not be loaded."
msgstr ""
-#. Fj5.
#: strings.src
msgctxt ""
"strings.src\n"
@@ -86,7 +78,6 @@ msgctxt ""
msgid "The data content could not be updated"
msgstr ""
-#. v_cg
#: strings.src
msgctxt ""
"strings.src\n"
@@ -95,7 +86,6 @@ msgctxt ""
msgid "Error inserting the new record"
msgstr ""
-#. Pby/
#: strings.src
msgctxt ""
"strings.src\n"
@@ -104,7 +94,6 @@ msgctxt ""
msgid "Error updating the current record"
msgstr ""
-#. Gb4h
#: strings.src
msgctxt ""
"strings.src\n"
@@ -113,7 +102,6 @@ msgctxt ""
msgid "Error deleting the current record"
msgstr ""
-#. 2.)M
#: strings.src
msgctxt ""
"strings.src\n"
@@ -122,7 +110,6 @@ msgctxt ""
msgid "Error deleting the specified records"
msgstr ""
-#. =dhV
#: strings.src
msgctxt ""
"strings.src\n"
@@ -131,7 +118,6 @@ msgctxt ""
msgid "The object cannot be NULL."
msgstr ""
-#. P]bw
#: strings.src
msgctxt ""
"strings.src\n"
@@ -140,7 +126,6 @@ msgctxt ""
msgid "Insert graphics from..."
msgstr ""
-#. [$;*
#: strings.src
msgctxt ""
"strings.src\n"
@@ -149,7 +134,6 @@ msgctxt ""
msgid "Remove graphics"
msgstr ""
-#. cU6U
#: strings.src
msgctxt ""
"strings.src\n"
@@ -158,7 +142,6 @@ msgctxt ""
msgid "The given stream is invalid."
msgstr ""
-#. :TaJ
#: strings.src
msgctxt ""
"strings.src\n"
@@ -167,7 +150,6 @@ msgctxt ""
msgid "Syntax error in query expression"
msgstr ""
-#. `A/s
#: strings.src
msgctxt ""
"strings.src\n"
@@ -176,7 +158,6 @@ msgctxt ""
msgid "The value types supported by the binding cannot be used for exchanging data with this control."
msgstr ""
-#. hS|Q
#: strings.src
msgctxt ""
"strings.src\n"
@@ -185,7 +166,6 @@ msgctxt ""
msgid "Record"
msgstr ""
-#. \hkl
#: strings.src
msgctxt ""
"strings.src\n"
@@ -194,7 +174,6 @@ msgctxt ""
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 ""
-#. eI8L
#: strings.src
msgctxt ""
"strings.src\n"
@@ -203,7 +182,6 @@ msgctxt ""
msgid "of"
msgstr ""
-#. RQ:o
#: strings.src
msgctxt ""
"strings.src\n"
@@ -214,7 +192,6 @@ msgid ""
"Do you want to save your changes?"
msgstr ""
-#. UDgo
#: strings.src
msgctxt ""
"strings.src\n"
@@ -223,7 +200,6 @@ msgctxt ""
msgid "Error setting the sort criteria"
msgstr ""
-#. 6MAG
#: strings.src
msgctxt ""
"strings.src\n"
@@ -232,7 +208,6 @@ msgctxt ""
msgid "Error setting the filter criteria"
msgstr ""
-#. )2J[
#: strings.src
msgctxt ""
"strings.src\n"
@@ -241,7 +216,6 @@ msgctxt ""
msgid "To execute this function, parameters are needed."
msgstr ""
-#. `9#J
#: strings.src
msgctxt ""
"strings.src\n"
@@ -250,7 +224,6 @@ msgctxt ""
msgid "This function cannot be executed, but is only for status queries."
msgstr ""
-#. 2Jm9
#: strings.src
msgctxt ""
"strings.src\n"
@@ -259,7 +232,6 @@ msgctxt ""
msgid "Unknown function."
msgstr ""
-#. Pi1%
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -268,7 +240,6 @@ msgctxt ""
msgid "Please enter a binding expression."
msgstr ""
-#. FDCA
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -277,7 +248,6 @@ msgctxt ""
msgid "This is an invalid binding expression."
msgstr ""
-#. U*B_
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -286,7 +256,6 @@ msgctxt ""
msgid "Value is invalid."
msgstr ""
-#. #Y_Y
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -295,7 +264,6 @@ msgctxt ""
msgid "A value is required."
msgstr ""
-#. zi(D
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -304,7 +272,6 @@ msgctxt ""
msgid "The constraint '$1' not validated."
msgstr ""
-#. _$9C
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -313,7 +280,6 @@ msgctxt ""
msgid "The value is not of the type '$2'."
msgstr ""
-#. SFil
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -322,7 +288,6 @@ msgctxt ""
msgid "The value must be smaller than or equal to $2."
msgstr ""
-#. XyW3
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -331,7 +296,6 @@ msgctxt ""
msgid "The value must be smaller than $2."
msgstr ""
-#. e7+c
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -340,7 +304,6 @@ msgctxt ""
msgid "The value must be greater than or equal to $2."
msgstr ""
-#. ^|1O
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -349,7 +312,6 @@ msgctxt ""
msgid "The value must be greater than $2."
msgstr ""
-#. pT8q
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -358,7 +320,6 @@ msgctxt ""
msgid "The value does not match the pattern '$2'."
msgstr ""
-#. lTio
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -367,7 +328,6 @@ msgctxt ""
msgid "$2 digits allowed at most."
msgstr ""
-#. HqUH
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -376,7 +336,6 @@ msgctxt ""
msgid "$2 fraction digits allowed at most."
msgstr ""
-#. M?=5
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -385,7 +344,6 @@ msgctxt ""
msgid "The string must be $2 characters long."
msgstr ""
-#. WrdA
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -394,7 +352,6 @@ msgctxt ""
msgid "The string must be at least $2 characters long."
msgstr ""
-#. @4hv
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -403,7 +360,6 @@ msgctxt ""
msgid "The string can only be $2 characters long at most."
msgstr ""
-#. rbes
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -412,7 +368,6 @@ msgctxt ""
msgid "String"
msgstr ""
-#. rXuQ
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -421,7 +376,6 @@ msgctxt ""
msgid "Hyperlink"
msgstr ""
-#. u~~U
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -430,7 +384,6 @@ msgctxt ""
msgid "True/False (Boolean)"
msgstr ""
-#. 0Sac
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -439,7 +392,6 @@ msgctxt ""
msgid "Decimal"
msgstr ""
-#. CmEF
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -448,7 +400,6 @@ msgctxt ""
msgid "Floating point"
msgstr ""
-#. 1qG)
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -457,7 +408,6 @@ msgctxt ""
msgid "Double"
msgstr ""
-#. f~uq
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -466,7 +416,6 @@ msgctxt ""
msgid "Date"
msgstr ""
-#. P)O)
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -475,7 +424,6 @@ msgctxt ""
msgid "Time"
msgstr ""
-#. )=bo
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -484,7 +432,6 @@ msgctxt ""
msgid "Date and Time"
msgstr ""
-#. ;c9I
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -493,7 +440,6 @@ msgctxt ""
msgid "Month and year"
msgstr ""
-#. {/\k
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -502,7 +448,6 @@ msgctxt ""
msgid "Year"
msgstr ""
-#. `|l(
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -511,7 +456,6 @@ msgctxt ""
msgid "Month and day"
msgstr ""
-#. DD08
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -520,7 +464,6 @@ msgctxt ""
msgid "Month"
msgstr ""
-#. D866
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -529,7 +472,6 @@ msgctxt ""
msgid "Day"
msgstr ""
-#. q08I
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -538,7 +480,6 @@ msgctxt ""
msgid "Error during evaluation"
msgstr ""
-#. dgoc
#: xforms.src
msgctxt ""
"xforms.src\n"
@@ -547,7 +488,6 @@ msgctxt ""
msgid "The string '$1' does not match the required regular expression '$2'."
msgstr ""
-#. C]\5
#: xforms.src
msgctxt ""
"xforms.src\n"
diff --git a/source/ur/formula/source/core/resource.po b/source/ur/formula/source/core/resource.po
index 655836c8484..68bfd86c8e4 100644
--- a/source/ur/formula/source/core/resource.po
+++ b/source/ur/formula/source/core/resource.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. cjBl
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "IF"
msgstr ""
-#. Vc$S
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "CHOOSE"
msgstr ""
-#. mP7x
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "AND"
msgstr ""
-#. 2J3O
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "OR"
msgstr ""
-#. /mhn
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -64,7 +59,6 @@ msgctxt ""
msgid "XOR"
msgstr ""
-#. ^$C=
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -74,7 +68,6 @@ msgctxt ""
msgid "NOT"
msgstr ""
-#. Xn\o
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -84,7 +77,6 @@ msgctxt ""
msgid "NEG"
msgstr ""
-#. 4Nri
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -94,7 +86,6 @@ msgctxt ""
msgid "PI"
msgstr ""
-#. FG^j
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -104,7 +95,6 @@ msgctxt ""
msgid "RAND"
msgstr ""
-#. m^ND
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -114,7 +104,6 @@ msgctxt ""
msgid "TRUE"
msgstr ""
-#. E+:h
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -124,7 +113,6 @@ msgctxt ""
msgid "FALSE"
msgstr ""
-#. [[kV
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -134,7 +122,6 @@ msgctxt ""
msgid "TODAY"
msgstr ""
-#. ,50T
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -144,7 +131,6 @@ msgctxt ""
msgid "NOW"
msgstr ""
-#. U/JS
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -154,7 +140,6 @@ msgctxt ""
msgid "NA"
msgstr ""
-#. lMaX
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -164,7 +149,6 @@ msgctxt ""
msgid "CURRENT"
msgstr ""
-#. R@HZ
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -174,7 +158,6 @@ msgctxt ""
msgid "DEGREES"
msgstr ""
-#. Mr~v
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -184,7 +167,6 @@ msgctxt ""
msgid "RADIANS"
msgstr ""
-#. IG@C
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -194,7 +176,6 @@ msgctxt ""
msgid "SIN"
msgstr ""
-#. QRgx
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -204,7 +185,6 @@ msgctxt ""
msgid "COS"
msgstr ""
-#. /pOK
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -214,7 +194,6 @@ msgctxt ""
msgid "TAN"
msgstr ""
-#. x\9W
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -224,7 +203,6 @@ msgctxt ""
msgid "COT"
msgstr ""
-#. l?U)
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -234,7 +212,6 @@ msgctxt ""
msgid "ASIN"
msgstr ""
-#. VDQS
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -244,7 +221,6 @@ msgctxt ""
msgid "ACOS"
msgstr ""
-#. Y?JM
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -254,7 +230,6 @@ msgctxt ""
msgid "ATAN"
msgstr ""
-#. ,k?^
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -264,7 +239,6 @@ msgctxt ""
msgid "ACOT"
msgstr ""
-#. J8\|
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -274,7 +248,6 @@ msgctxt ""
msgid "SINH"
msgstr ""
-#. 13E8
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -284,7 +257,6 @@ msgctxt ""
msgid "COSH"
msgstr ""
-#. X5,.
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -294,7 +266,6 @@ msgctxt ""
msgid "TANH"
msgstr ""
-#. mERq
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -304,7 +275,6 @@ msgctxt ""
msgid "COTH"
msgstr ""
-#. GR)j
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -314,7 +284,6 @@ msgctxt ""
msgid "ASINH"
msgstr ""
-#. Jz,L
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -324,7 +293,6 @@ msgctxt ""
msgid "ACOSH"
msgstr ""
-#. Pe+Z
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -334,7 +302,6 @@ msgctxt ""
msgid "ATANH"
msgstr ""
-#. ppm0
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -344,7 +311,6 @@ msgctxt ""
msgid "ACOTH"
msgstr ""
-#. iVv8
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -354,7 +320,6 @@ msgctxt ""
msgid "CSC"
msgstr ""
-#. B;/]
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -364,7 +329,6 @@ msgctxt ""
msgid "SEC"
msgstr ""
-#. g0x@
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -374,7 +338,6 @@ msgctxt ""
msgid "CSCH"
msgstr ""
-#. jX!b
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -384,7 +347,6 @@ msgctxt ""
msgid "SECH"
msgstr ""
-#. $3PN
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -394,7 +356,6 @@ msgctxt ""
msgid "EXP"
msgstr ""
-#. Od!d
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -404,7 +365,6 @@ msgctxt ""
msgid "LN"
msgstr ""
-#. 9;=d
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -414,7 +374,6 @@ msgctxt ""
msgid "SQRT"
msgstr ""
-#. 5q(s
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -424,7 +383,6 @@ msgctxt ""
msgid "FACT"
msgstr ""
-#. A0GS
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -434,7 +392,6 @@ msgctxt ""
msgid "YEAR"
msgstr ""
-#. $9fa
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -444,7 +401,6 @@ msgctxt ""
msgid "MONTH"
msgstr ""
-#. 3#lj
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -454,7 +410,6 @@ msgctxt ""
msgid "DAY"
msgstr ""
-#. /+$;
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -464,7 +419,6 @@ msgctxt ""
msgid "HOUR"
msgstr ""
-#. */yO
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -474,7 +428,6 @@ msgctxt ""
msgid "MINUTE"
msgstr ""
-#. x8*Z
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -484,7 +437,6 @@ msgctxt ""
msgid "SECOND"
msgstr ""
-#. ;h+?
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -494,7 +446,6 @@ msgctxt ""
msgid "SIGN"
msgstr ""
-#. \[#g
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -504,7 +455,6 @@ msgctxt ""
msgid "ABS"
msgstr ""
-#. -x3}
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -514,7 +464,6 @@ msgctxt ""
msgid "INT"
msgstr ""
-#. `[`,
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -524,7 +473,6 @@ msgctxt ""
msgid "PHI"
msgstr ""
-#. iLL#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -534,7 +482,6 @@ msgctxt ""
msgid "GAUSS"
msgstr ""
-#. W#m=
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -544,7 +491,6 @@ msgctxt ""
msgid "ISBLANK"
msgstr ""
-#. h@5#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -554,7 +500,6 @@ msgctxt ""
msgid "ISTEXT"
msgstr ""
-#. 4-0T
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -564,7 +509,6 @@ msgctxt ""
msgid "ISNONTEXT"
msgstr ""
-#. ^dn3
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -574,7 +518,6 @@ msgctxt ""
msgid "ISLOGICAL"
msgstr ""
-#. CMiG
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -584,7 +527,6 @@ msgctxt ""
msgid "TYPE"
msgstr ""
-#. 4[o9
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -594,7 +536,6 @@ msgctxt ""
msgid "CELL"
msgstr ""
-#. :~9k
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -604,7 +545,6 @@ msgctxt ""
msgid "ISREF"
msgstr ""
-#. Q^JJ
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -614,7 +554,6 @@ msgctxt ""
msgid "ISNUMBER"
msgstr ""
-#. [h|0
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -624,7 +563,6 @@ msgctxt ""
msgid "ISFORMULA"
msgstr ""
-#. M`V(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -634,7 +572,6 @@ msgctxt ""
msgid "ISNA"
msgstr ""
-#. U-xd
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -644,7 +581,6 @@ msgctxt ""
msgid "ISERR"
msgstr ""
-#. +$]+
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -654,7 +590,6 @@ msgctxt ""
msgid "ISERROR"
msgstr ""
-#. 95R\
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -664,7 +599,6 @@ msgctxt ""
msgid "ISEVEN"
msgstr ""
-#. /dJH
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -674,7 +608,6 @@ msgctxt ""
msgid "ISODD"
msgstr ""
-#. g:yn
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -684,7 +617,6 @@ msgctxt ""
msgid "N"
msgstr ""
-#. Bf]2
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -694,7 +626,6 @@ msgctxt ""
msgid "DATEVALUE"
msgstr ""
-#. };uD
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -704,7 +635,6 @@ msgctxt ""
msgid "TIMEVALUE"
msgstr ""
-#. C,O;
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -714,7 +644,6 @@ msgctxt ""
msgid "CODE"
msgstr ""
-#. iTbH
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -724,7 +653,6 @@ msgctxt ""
msgid "TRIM"
msgstr ""
-#. rUJT
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -734,7 +662,6 @@ msgctxt ""
msgid "UPPER"
msgstr ""
-#. QS)*
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -744,7 +671,6 @@ msgctxt ""
msgid "PROPER"
msgstr ""
-#. =E`*
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -754,7 +680,6 @@ msgctxt ""
msgid "LOWER"
msgstr ""
-#. BgE_
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -764,7 +689,6 @@ msgctxt ""
msgid "LEN"
msgstr ""
-#. K;q#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -774,7 +698,6 @@ msgctxt ""
msgid "T"
msgstr ""
-#. T:Tj
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -784,7 +707,6 @@ msgctxt ""
msgid "VALUE"
msgstr ""
-#. #s{|
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -794,7 +716,6 @@ msgctxt ""
msgid "CLEAN"
msgstr ""
-#. x+76
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -804,7 +725,6 @@ msgctxt ""
msgid "CHAR"
msgstr ""
-#. 3(uz
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -814,7 +734,6 @@ msgctxt ""
msgid "JIS"
msgstr ""
-#. V*1?
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -824,7 +743,6 @@ msgctxt ""
msgid "ASC"
msgstr ""
-#. /FU`
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -834,7 +752,6 @@ msgctxt ""
msgid "UNICODE"
msgstr ""
-#. S#.r
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -844,7 +761,6 @@ msgctxt ""
msgid "UNICHAR"
msgstr ""
-#. DqY,
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -854,7 +770,6 @@ msgctxt ""
msgid "LOG10"
msgstr ""
-#. P0SO
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -864,7 +779,6 @@ msgctxt ""
msgid "EVEN"
msgstr ""
-#. ;X.V
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -874,7 +788,6 @@ msgctxt ""
msgid "ODD"
msgstr ""
-#. m}`N
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -884,7 +797,6 @@ msgctxt ""
msgid "NORMSDIST"
msgstr ""
-#. g@_F
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -894,7 +806,6 @@ msgctxt ""
msgid "FISHER"
msgstr ""
-#. E8y6
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -904,7 +815,6 @@ msgctxt ""
msgid "FISHERINV"
msgstr ""
-#. ReL]
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -914,7 +824,6 @@ msgctxt ""
msgid "NORMSINV"
msgstr ""
-#. q{O:
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -924,7 +833,6 @@ msgctxt ""
msgid "GAMMALN"
msgstr ""
-#. $?cw
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -934,7 +842,6 @@ msgctxt ""
msgid "ERRORTYPE"
msgstr ""
-#. JQE\
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -944,7 +851,6 @@ msgctxt ""
msgid "FORMULA"
msgstr ""
-#. )e8{
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -954,7 +860,6 @@ msgctxt ""
msgid "ARABIC"
msgstr ""
-#. [Z@V
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -964,7 +869,6 @@ msgctxt ""
msgid "ATAN2"
msgstr ""
-#. jdzi
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -974,7 +878,6 @@ msgctxt ""
msgid "CEILING"
msgstr ""
-#. m+T#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -984,7 +887,6 @@ msgctxt ""
msgid "FLOOR"
msgstr ""
-#. G%ac
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -994,7 +896,6 @@ msgctxt ""
msgid "ROUND"
msgstr ""
-#. 5%D*
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1004,7 +905,6 @@ msgctxt ""
msgid "ROUNDUP"
msgstr ""
-#. U;+9
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1014,7 +914,6 @@ msgctxt ""
msgid "ROUNDDOWN"
msgstr ""
-#. acvR
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1024,7 +923,6 @@ msgctxt ""
msgid "TRUNC"
msgstr ""
-#. %2BT
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1034,7 +932,6 @@ msgctxt ""
msgid "LOG"
msgstr ""
-#. ,gec
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1044,7 +941,6 @@ msgctxt ""
msgid "POWER"
msgstr ""
-#. KTQ5
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1054,7 +950,6 @@ msgctxt ""
msgid "GCD"
msgstr ""
-#. xY1Q
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1064,7 +959,6 @@ msgctxt ""
msgid "LCM"
msgstr ""
-#. QmsM
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1074,7 +968,6 @@ msgctxt ""
msgid "MOD"
msgstr ""
-#. y\!5
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1084,7 +977,6 @@ msgctxt ""
msgid "SUMPRODUCT"
msgstr ""
-#. bWw(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1094,7 +986,6 @@ msgctxt ""
msgid "SUMSQ"
msgstr ""
-#. p2-M
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1104,7 +995,6 @@ msgctxt ""
msgid "SUMX2MY2"
msgstr ""
-#. h!||
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1114,7 +1004,6 @@ msgctxt ""
msgid "SUMX2PY2"
msgstr ""
-#. VX!5
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1124,7 +1013,6 @@ msgctxt ""
msgid "SUMXMY2"
msgstr ""
-#. I!~Y
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1134,7 +1022,6 @@ msgctxt ""
msgid "DATE"
msgstr ""
-#. o(bC
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1144,7 +1031,6 @@ msgctxt ""
msgid "TIME"
msgstr ""
-#. uJqB
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1154,7 +1040,6 @@ msgctxt ""
msgid "DAYS"
msgstr ""
-#. ]I2$
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1164,7 +1049,6 @@ msgctxt ""
msgid "DAYS360"
msgstr ""
-#. dwaI
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1174,7 +1058,6 @@ msgctxt ""
msgid "DATEDIF"
msgstr ""
-#. d,kb
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1184,7 +1067,6 @@ msgctxt ""
msgid "MIN"
msgstr ""
-#. 9VV1
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1194,7 +1076,6 @@ msgctxt ""
msgid "MINA"
msgstr ""
-#. Pjby
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1204,7 +1085,6 @@ msgctxt ""
msgid "MAX"
msgstr ""
-#. EXm0
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1214,7 +1094,6 @@ msgctxt ""
msgid "MAXA"
msgstr ""
-#. kYY;
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1224,7 +1103,6 @@ msgctxt ""
msgid "SUM"
msgstr ""
-#. vIN,
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1234,7 +1112,6 @@ msgctxt ""
msgid "PRODUCT"
msgstr ""
-#. D!nm
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1244,7 +1121,6 @@ msgctxt ""
msgid "AVERAGE"
msgstr ""
-#. n]XY
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1254,7 +1130,6 @@ msgctxt ""
msgid "AVERAGEA"
msgstr ""
-#. b4se
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1264,7 +1139,6 @@ msgctxt ""
msgid "COUNT"
msgstr ""
-#. G;:H
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1274,7 +1148,6 @@ msgctxt ""
msgid "COUNTA"
msgstr ""
-#. *@eF
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1284,7 +1157,6 @@ msgctxt ""
msgid "NPV"
msgstr ""
-#. [.O@
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1294,7 +1166,6 @@ msgctxt ""
msgid "IRR"
msgstr ""
-#. NC,e
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1304,7 +1175,6 @@ msgctxt ""
msgid "MIRR"
msgstr ""
-#. }{EG
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1314,7 +1184,6 @@ msgctxt ""
msgid "ISPMT"
msgstr ""
-#. sz\Q
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1324,7 +1193,6 @@ msgctxt ""
msgid "VAR"
msgstr ""
-#. :Uz?
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1334,7 +1202,6 @@ msgctxt ""
msgid "VARA"
msgstr ""
-#. (n^W
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1344,7 +1211,6 @@ msgctxt ""
msgid "VARP"
msgstr ""
-#. Rffd
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1354,7 +1220,6 @@ msgctxt ""
msgid "VARPA"
msgstr ""
-#. #X]Z
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1364,7 +1229,6 @@ msgctxt ""
msgid "STDEV"
msgstr ""
-#. YP,U
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1374,7 +1238,6 @@ msgctxt ""
msgid "STDEVA"
msgstr ""
-#. k==L
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1384,7 +1247,6 @@ msgctxt ""
msgid "STDEVP"
msgstr ""
-#. ^_9?
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1394,7 +1256,6 @@ msgctxt ""
msgid "STDEVPA"
msgstr ""
-#. i!c6
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1404,7 +1265,6 @@ msgctxt ""
msgid "B"
msgstr ""
-#. E?A`
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1414,7 +1274,6 @@ msgctxt ""
msgid "NORMDIST"
msgstr ""
-#. H8(s
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1424,7 +1283,6 @@ msgctxt ""
msgid "EXPONDIST"
msgstr ""
-#. 8_m#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1434,7 +1292,6 @@ msgctxt ""
msgid "BINOMDIST"
msgstr ""
-#. XcTN
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1444,7 +1301,6 @@ msgctxt ""
msgid "POISSON"
msgstr ""
-#. O{vk
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1454,7 +1310,6 @@ msgctxt ""
msgid "COMBIN"
msgstr ""
-#. r,Da
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1464,7 +1319,6 @@ msgctxt ""
msgid "COMBINA"
msgstr ""
-#. 8pwJ
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1474,7 +1328,6 @@ msgctxt ""
msgid "PERMUT"
msgstr ""
-#. C~E_
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1484,7 +1337,6 @@ msgctxt ""
msgid "PERMUTATIONA"
msgstr ""
-#. $qaM
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1494,7 +1346,6 @@ msgctxt ""
msgid "PV"
msgstr ""
-#. B}%j
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1504,7 +1355,6 @@ msgctxt ""
msgid "SYD"
msgstr ""
-#. M!(#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1514,7 +1364,6 @@ msgctxt ""
msgid "DDB"
msgstr ""
-#. gd.N
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1524,7 +1373,6 @@ msgctxt ""
msgid "DB"
msgstr ""
-#. Fk.$
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1534,7 +1382,6 @@ msgctxt ""
msgid "VDB"
msgstr ""
-#. ;cmf
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1544,7 +1391,6 @@ msgctxt ""
msgid "DURATION"
msgstr ""
-#. @5X\
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1554,7 +1400,6 @@ msgctxt ""
msgid "SLN"
msgstr ""
-#. 7ADN
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1564,7 +1409,6 @@ msgctxt ""
msgid "PMT"
msgstr ""
-#. TnuR
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1574,7 +1418,6 @@ msgctxt ""
msgid "COLUMNS"
msgstr ""
-#. gg|p
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1584,7 +1427,6 @@ msgctxt ""
msgid "ROWS"
msgstr ""
-#. X?;`
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1594,7 +1436,6 @@ msgctxt ""
msgid "SHEETS"
msgstr ""
-#. T0Oh
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1604,7 +1445,6 @@ msgctxt ""
msgid "COLUMN"
msgstr ""
-#. qT,(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1614,7 +1454,6 @@ msgctxt ""
msgid "ROW"
msgstr ""
-#. ,K0c
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1624,7 +1463,6 @@ msgctxt ""
msgid "SHEET"
msgstr ""
-#. 4PFm
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1634,7 +1472,6 @@ msgctxt ""
msgid "RRI"
msgstr ""
-#. (*dv
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1644,7 +1481,6 @@ msgctxt ""
msgid "FV"
msgstr ""
-#. 7!c6
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1654,7 +1490,6 @@ msgctxt ""
msgid "NPER"
msgstr ""
-#. |ncs
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1664,7 +1499,6 @@ msgctxt ""
msgid "RATE"
msgstr ""
-#. D*#a
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1674,7 +1508,6 @@ msgctxt ""
msgid "IPMT"
msgstr ""
-#. N9g.
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1684,7 +1517,6 @@ msgctxt ""
msgid "PPMT"
msgstr ""
-#. [Wns
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1694,7 +1526,6 @@ msgctxt ""
msgid "CUMIPMT"
msgstr ""
-#. ek~l
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1704,7 +1535,6 @@ msgctxt ""
msgid "CUMPRINC"
msgstr ""
-#. e2hf
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1714,7 +1544,6 @@ msgctxt ""
msgid "EFFECTIVE"
msgstr ""
-#. $o9`
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1724,7 +1553,6 @@ msgctxt ""
msgid "NOMINAL"
msgstr ""
-#. .H+F
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1734,7 +1562,6 @@ msgctxt ""
msgid "SUBTOTAL"
msgstr ""
-#. Z(n2
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1744,7 +1571,6 @@ msgctxt ""
msgid "DSUM"
msgstr ""
-#. E@77
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1754,7 +1580,6 @@ msgctxt ""
msgid "DCOUNT"
msgstr ""
-#. ~S?:
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1764,7 +1589,6 @@ msgctxt ""
msgid "DCOUNTA"
msgstr ""
-#. EuvL
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1774,7 +1598,6 @@ msgctxt ""
msgid "DAVERAGE"
msgstr ""
-#. Thmd
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1784,7 +1607,6 @@ msgctxt ""
msgid "DGET"
msgstr ""
-#. `Yn@
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1794,7 +1616,6 @@ msgctxt ""
msgid "DMAX"
msgstr ""
-#. @Y=\
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1804,7 +1625,6 @@ msgctxt ""
msgid "DMIN"
msgstr ""
-#. r=lc
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1814,7 +1634,6 @@ msgctxt ""
msgid "DPRODUCT"
msgstr ""
-#. l;EA
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1824,7 +1643,6 @@ msgctxt ""
msgid "DSTDEV"
msgstr ""
-#. PB9d
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1834,7 +1652,6 @@ msgctxt ""
msgid "DSTDEVP"
msgstr ""
-#. =]D,
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1844,7 +1661,6 @@ msgctxt ""
msgid "DVAR"
msgstr ""
-#. l.$)
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1854,7 +1670,6 @@ msgctxt ""
msgid "DVARP"
msgstr ""
-#. qcU#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1864,7 +1679,6 @@ msgctxt ""
msgid "INDIRECT"
msgstr ""
-#. bdnL
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1874,7 +1688,6 @@ msgctxt ""
msgid "ADDRESS"
msgstr ""
-#. F:u*
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1884,7 +1697,6 @@ msgctxt ""
msgid "MATCH"
msgstr ""
-#. G*]k
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1894,7 +1706,6 @@ msgctxt ""
msgid "COUNTBLANK"
msgstr ""
-#. rl!)
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1904,7 +1715,6 @@ msgctxt ""
msgid "COUNTIF"
msgstr ""
-#. dP[c
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1914,7 +1724,6 @@ msgctxt ""
msgid "SUMIF"
msgstr ""
-#. X-d{
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1924,7 +1733,6 @@ msgctxt ""
msgid "LOOKUP"
msgstr ""
-#. _DRq
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1934,7 +1742,6 @@ msgctxt ""
msgid "VLOOKUP"
msgstr ""
-#. ?}]%
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1944,7 +1751,6 @@ msgctxt ""
msgid "HLOOKUP"
msgstr ""
-#. _\%7
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1954,7 +1760,6 @@ msgctxt ""
msgid "MULTIRANGE"
msgstr ""
-#. ?eU1
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1964,7 +1769,6 @@ msgctxt ""
msgid "OFFSET"
msgstr ""
-#. Jz5#
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1974,7 +1778,6 @@ msgctxt ""
msgid "INDEX"
msgstr ""
-#. +qQ8
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1984,7 +1787,6 @@ msgctxt ""
msgid "AREAS"
msgstr ""
-#. F_]z
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -1994,7 +1796,6 @@ msgctxt ""
msgid "DOLLAR"
msgstr ""
-#. =AV.
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2004,7 +1805,6 @@ msgctxt ""
msgid "REPLACE"
msgstr ""
-#. GD+x
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2014,7 +1814,6 @@ msgctxt ""
msgid "FIXED"
msgstr ""
-#. `V[a
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2024,7 +1823,6 @@ msgctxt ""
msgid "FIND"
msgstr ""
-#. re$@
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2034,7 +1832,6 @@ msgctxt ""
msgid "EXACT"
msgstr ""
-#. KZf]
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2044,7 +1841,6 @@ msgctxt ""
msgid "LEFT"
msgstr ""
-#. 0rPe
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2054,7 +1850,6 @@ msgctxt ""
msgid "RIGHT"
msgstr ""
-#. ]3[S
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2064,7 +1859,6 @@ msgctxt ""
msgid "SEARCH"
msgstr ""
-#. r]IN
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2074,7 +1868,6 @@ msgctxt ""
msgid "MID"
msgstr ""
-#. KrZV
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2084,7 +1877,6 @@ msgctxt ""
msgid "TEXT"
msgstr ""
-#. Dri6
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2094,7 +1886,6 @@ msgctxt ""
msgid "SUBSTITUTE"
msgstr ""
-#. @=si
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2104,7 +1895,6 @@ msgctxt ""
msgid "REPT"
msgstr ""
-#. b27s
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2114,7 +1904,6 @@ msgctxt ""
msgid "CONCATENATE"
msgstr ""
-#. \7ZC
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2124,7 +1913,6 @@ msgctxt ""
msgid "MVALUE"
msgstr ""
-#. $jQA
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2134,7 +1922,6 @@ msgctxt ""
msgid "MDETERM"
msgstr ""
-#. p\Zh
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2144,7 +1931,6 @@ msgctxt ""
msgid "MINVERSE"
msgstr ""
-#. x?y^
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2154,7 +1940,6 @@ msgctxt ""
msgid "MMULT"
msgstr ""
-#. M:e(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2164,7 +1949,6 @@ msgctxt ""
msgid "TRANSPOSE"
msgstr ""
-#. xyM5
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2174,7 +1958,6 @@ msgctxt ""
msgid "MUNIT"
msgstr ""
-#. qF^k
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2184,7 +1967,6 @@ msgctxt ""
msgid "GOALSEEK"
msgstr ""
-#. 8\V7
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2194,7 +1976,6 @@ msgctxt ""
msgid "HYPGEOMDIST"
msgstr ""
-#. $a)3
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2204,7 +1985,6 @@ msgctxt ""
msgid "LOGNORMDIST"
msgstr ""
-#. S]Ef
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2214,7 +1994,6 @@ msgctxt ""
msgid "TDIST"
msgstr ""
-#. 3#9(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2224,7 +2003,6 @@ msgctxt ""
msgid "FDIST"
msgstr ""
-#. Kff1
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2234,7 +2012,6 @@ msgctxt ""
msgid "CHIDIST"
msgstr ""
-#. _R.J
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2244,7 +2021,6 @@ msgctxt ""
msgid "WEIBULL"
msgstr ""
-#. To7B
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2254,7 +2030,6 @@ msgctxt ""
msgid "NEGBINOMDIST"
msgstr ""
-#. 1]Bv
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2264,7 +2039,6 @@ msgctxt ""
msgid "CRITBINOM"
msgstr ""
-#. @Km^
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2274,7 +2048,6 @@ msgctxt ""
msgid "KURT"
msgstr ""
-#. ,wlP
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2284,7 +2057,6 @@ msgctxt ""
msgid "HARMEAN"
msgstr ""
-#. `p*C
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2294,7 +2066,6 @@ msgctxt ""
msgid "GEOMEAN"
msgstr ""
-#. qM)N
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2304,7 +2075,6 @@ msgctxt ""
msgid "STANDARDIZE"
msgstr ""
-#. #Ce(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2314,7 +2084,6 @@ msgctxt ""
msgid "AVEDEV"
msgstr ""
-#. I+ZX
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2324,7 +2093,6 @@ msgctxt ""
msgid "SKEW"
msgstr ""
-#. u;Z(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2334,7 +2102,6 @@ msgctxt ""
msgid "DEVSQ"
msgstr ""
-#. WOM2
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2344,7 +2111,6 @@ msgctxt ""
msgid "MEDIAN"
msgstr ""
-#. cY%B
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2354,7 +2120,6 @@ msgctxt ""
msgid "MODE"
msgstr ""
-#. mki,
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2364,7 +2129,6 @@ msgctxt ""
msgid "ZTEST"
msgstr ""
-#. G5!Y
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2374,7 +2138,6 @@ msgctxt ""
msgid "TTEST"
msgstr ""
-#. )6^A
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2384,7 +2147,6 @@ msgctxt ""
msgid "RANK"
msgstr ""
-#. 1ZUU
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2394,7 +2156,6 @@ msgctxt ""
msgid "PERCENTILE"
msgstr ""
-#. -`uX
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2404,7 +2165,6 @@ msgctxt ""
msgid "PERCENTRANK"
msgstr ""
-#. B3)6
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2414,7 +2174,6 @@ msgctxt ""
msgid "LARGE"
msgstr ""
-#. `^/,
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2424,7 +2183,6 @@ msgctxt ""
msgid "SMALL"
msgstr ""
-#. F0yF
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2434,7 +2192,6 @@ msgctxt ""
msgid "FREQUENCY"
msgstr ""
-#. 44gA
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2444,7 +2201,6 @@ msgctxt ""
msgid "QUARTILE"
msgstr ""
-#. $\Os
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2454,7 +2210,6 @@ msgctxt ""
msgid "NORMINV"
msgstr ""
-#. .LzE
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2464,7 +2219,6 @@ msgctxt ""
msgid "CONFIDENCE"
msgstr ""
-#. cM67
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2474,7 +2228,6 @@ msgctxt ""
msgid "FTEST"
msgstr ""
-#. k.|9
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2484,7 +2237,6 @@ msgctxt ""
msgid "TRIMMEAN"
msgstr ""
-#. .Bua
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2494,7 +2246,6 @@ msgctxt ""
msgid "PROB"
msgstr ""
-#. mLn^
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2504,7 +2255,6 @@ msgctxt ""
msgid "CORREL"
msgstr ""
-#. @-w~
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2514,7 +2264,6 @@ msgctxt ""
msgid "COVAR"
msgstr ""
-#. JSkE
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2524,7 +2273,6 @@ msgctxt ""
msgid "PEARSON"
msgstr ""
-#. (tCP
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2534,7 +2282,6 @@ msgctxt ""
msgid "RSQ"
msgstr ""
-#. 4heE
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2544,7 +2291,6 @@ msgctxt ""
msgid "STEYX"
msgstr ""
-#. I7m3
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2554,7 +2300,6 @@ msgctxt ""
msgid "SLOPE"
msgstr ""
-#. {p,-
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2564,7 +2309,6 @@ msgctxt ""
msgid "INTERCEPT"
msgstr ""
-#. v#n|
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2574,7 +2318,6 @@ msgctxt ""
msgid "TREND"
msgstr ""
-#. Qf]v
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2584,7 +2327,6 @@ msgctxt ""
msgid "GROWTH"
msgstr ""
-#. -EP8
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2594,7 +2336,6 @@ msgctxt ""
msgid "LINEST"
msgstr ""
-#. Gsz[
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2604,7 +2345,6 @@ msgctxt ""
msgid "LOGEST"
msgstr ""
-#. o0iV
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2614,7 +2354,6 @@ msgctxt ""
msgid "FORECAST"
msgstr ""
-#. M?3F
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2624,7 +2363,6 @@ msgctxt ""
msgid "CHIINV"
msgstr ""
-#. 1ny?
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2634,7 +2372,6 @@ msgctxt ""
msgid "GAMMADIST"
msgstr ""
-#. A(nJ
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2644,7 +2381,6 @@ msgctxt ""
msgid "GAMMAINV"
msgstr ""
-#. )T9W
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2654,7 +2390,6 @@ msgctxt ""
msgid "TINV"
msgstr ""
-#. X/)S
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2664,7 +2399,6 @@ msgctxt ""
msgid "FINV"
msgstr ""
-#. ;Q,}
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2674,7 +2408,6 @@ msgctxt ""
msgid "CHITEST"
msgstr ""
-#. A$e/
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2684,7 +2417,6 @@ msgctxt ""
msgid "LOGINV"
msgstr ""
-#. F}DZ
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2694,7 +2426,6 @@ msgctxt ""
msgid "MULTIPLE.OPERATIONS"
msgstr ""
-#. *2sm
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2704,7 +2435,6 @@ msgctxt ""
msgid "BETADIST"
msgstr ""
-#. .f*\
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2714,7 +2444,6 @@ msgctxt ""
msgid "BETAINV"
msgstr ""
-#. 7_Jr
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2724,7 +2453,6 @@ msgctxt ""
msgid "WEEKNUM"
msgstr ""
-#. huqp
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2734,7 +2462,6 @@ msgctxt ""
msgid "EASTERSUNDAY"
msgstr ""
-#. n~Zf
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2744,7 +2471,6 @@ msgctxt ""
msgid "WEEKDAY"
msgstr ""
-#. M3m.
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2754,7 +2480,6 @@ msgctxt ""
msgid "#NAME!"
msgstr ""
-#. cdty
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2764,7 +2489,6 @@ msgctxt ""
msgid "STYLE"
msgstr ""
-#. l([n
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2774,7 +2498,6 @@ msgctxt ""
msgid "DDE"
msgstr ""
-#. g/Em
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2784,7 +2507,6 @@ msgctxt ""
msgid "BASE"
msgstr ""
-#. PBBY
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2794,7 +2516,6 @@ msgctxt ""
msgid "DECIMAL"
msgstr ""
-#. 1m0+
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2804,7 +2525,6 @@ msgctxt ""
msgid "CONVERT"
msgstr ""
-#. bi_(
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2814,7 +2534,6 @@ msgctxt ""
msgid "ROMAN"
msgstr ""
-#. (a}=
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2824,7 +2543,6 @@ msgctxt ""
msgid "HYPERLINK"
msgstr ""
-#. .j,H
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2834,7 +2552,6 @@ msgctxt ""
msgid "INFO"
msgstr ""
-#. ]:og
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2844,7 +2561,6 @@ msgctxt ""
msgid "BAHTTEXT"
msgstr ""
-#. V_p5
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2854,7 +2570,6 @@ msgctxt ""
msgid "GETPIVOTDATA"
msgstr ""
-#. v_m^
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2864,7 +2579,6 @@ msgctxt ""
msgid "EUROCONVERT"
msgstr ""
-#. q{4P
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2874,7 +2588,6 @@ msgctxt ""
msgid "NUMBERVALUE"
msgstr ""
-#. YqfY
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2884,7 +2597,6 @@ msgctxt ""
msgid "GAMMA"
msgstr ""
-#. c?p*
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2894,7 +2606,6 @@ msgctxt ""
msgid "CHISQDIST"
msgstr ""
-#. s,k=
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2904,7 +2615,6 @@ msgctxt ""
msgid "CHISQINV"
msgstr ""
-#. S(m8
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2914,7 +2624,6 @@ msgctxt ""
msgid "BITAND"
msgstr ""
-#. %ToX
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2924,7 +2633,6 @@ msgctxt ""
msgid "BITOR"
msgstr ""
-#. 6_pV
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2934,7 +2642,6 @@ msgctxt ""
msgid "BITXOR"
msgstr ""
-#. .~dm
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2944,7 +2651,6 @@ msgctxt ""
msgid "BITRSHIFT"
msgstr ""
-#. ]fP+
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2954,7 +2660,6 @@ msgctxt ""
msgid "BITLSHIFT"
msgstr ""
-#. 5HqI
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2964,7 +2669,6 @@ msgctxt ""
msgid "#NULL!"
msgstr ""
-#. 2U]$
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2974,7 +2678,6 @@ msgctxt ""
msgid "#DIV/0!"
msgstr ""
-#. $a}i
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2984,7 +2687,6 @@ msgctxt ""
msgid "#VALUE!"
msgstr ""
-#. (T^C
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -2994,7 +2696,6 @@ msgctxt ""
msgid "#REF!"
msgstr ""
-#. N[*Z
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -3004,7 +2705,6 @@ msgctxt ""
msgid "#NAME?"
msgstr ""
-#. M-]K
#: core_resource.src
msgctxt ""
"core_resource.src\n"
@@ -3014,7 +2714,6 @@ msgctxt ""
msgid "#NUM!"
msgstr ""
-#. [WhE
#: core_resource.src
msgctxt ""
"core_resource.src\n"
diff --git a/source/ur/formula/source/ui/dlg.po b/source/ur/formula/source/ui/dlg.po
index 8f486ca7f70..52b744cf029 100644
--- a/source/ur/formula/source/ui/dlg.po
+++ b/source/ur/formula/source/ui/dlg.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. H*F=
#: parawin.src
msgctxt ""
"parawin.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. jd0F
#: parawin.src
#, fuzzy
msgctxt ""
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Select"
msgstr "~انتخاب کیجئے"
-#. R-Js
#: parawin.src
msgctxt ""
"parawin.src\n"
@@ -43,7 +40,6 @@ msgctxt ""
msgid "Function not known"
msgstr ""
-#. x}mq
#: parawin.src
msgctxt ""
"parawin.src\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "(optional)"
msgstr ""
-#. 8-`p
#: parawin.src
msgctxt ""
"parawin.src\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "(required)"
msgstr ""
-#. 0h1x
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "Last Used"
msgstr ""
-#. h,@F
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -83,7 +76,6 @@ msgctxt ""
msgid "All"
msgstr ""
-#. V%02
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -93,7 +85,6 @@ msgctxt ""
msgid "~Category"
msgstr ""
-#. ]E,m
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -103,7 +94,6 @@ msgctxt ""
msgid "~Function"
msgstr ""
-#. W`#G
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -113,7 +103,6 @@ msgctxt ""
msgid "~Structure"
msgstr ""
-#. 229U
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -123,7 +112,6 @@ msgctxt ""
msgid "=?"
msgstr ""
-#. X*;M
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -133,7 +121,6 @@ msgctxt ""
msgid "Error"
msgstr ""
-#. LA-U
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -143,7 +130,6 @@ msgctxt ""
msgid "Functions"
msgstr ""
-#. OYX,
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -153,7 +139,6 @@ msgctxt ""
msgid "Structure"
msgstr ""
-#. f:ni
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -163,7 +148,6 @@ msgctxt ""
msgid "For~mula"
msgstr ""
-#. v%!v
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -173,7 +157,6 @@ msgctxt ""
msgid "Function result"
msgstr ""
-#. HON9
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -183,7 +166,6 @@ msgctxt ""
msgid "Result"
msgstr ""
-#. U\w!
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -193,7 +175,6 @@ msgctxt ""
msgid "Array"
msgstr ""
-#. qW~Y
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -203,7 +184,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. CQ+I
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -213,7 +193,6 @@ msgctxt ""
msgid "Maximize"
msgstr ""
-#. bG0S
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -223,7 +202,6 @@ msgctxt ""
msgid "<< ~Back"
msgstr ""
-#. $,KF
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -233,7 +211,6 @@ msgctxt ""
msgid "~Next >>"
msgstr ""
-#. h?Ds
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -243,7 +220,6 @@ msgctxt ""
msgid "Function Wizard"
msgstr ""
-#. ${X$
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -253,7 +229,6 @@ msgctxt ""
msgid "Function Wizard -"
msgstr ""
-#. PtZx
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -263,7 +238,6 @@ msgctxt ""
msgid "~End"
msgstr ""
-#. 5GA-
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -273,7 +247,6 @@ msgctxt ""
msgid "Functions"
msgstr ""
-#. vdc,
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -283,7 +256,6 @@ msgctxt ""
msgid "Structure"
msgstr ""
-#. cJ45
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -293,7 +265,6 @@ msgctxt ""
msgid "For~mula"
msgstr ""
-#. !f`w
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -303,7 +274,6 @@ msgctxt ""
msgid "Function result"
msgstr ""
-#. mTa6
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -313,7 +283,6 @@ msgctxt ""
msgid "Result"
msgstr ""
-#. k;$r
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -323,7 +292,6 @@ msgctxt ""
msgid "Array"
msgstr ""
-#. 5r,t
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -333,7 +301,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. nVL#
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -343,7 +310,6 @@ msgctxt ""
msgid "Maximize"
msgstr ""
-#. ;:RX
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -353,7 +319,6 @@ msgctxt ""
msgid "<< ~Back"
msgstr ""
-#. O1up
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -363,7 +328,6 @@ msgctxt ""
msgid "~Next >>"
msgstr ""
-#. ?k]\
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -373,7 +337,6 @@ msgctxt ""
msgid "Function Wizard"
msgstr ""
-#. 2~aH
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
@@ -383,7 +346,6 @@ msgctxt ""
msgid "Function Wizard -"
msgstr ""
-#. )ol`
#: formdlgs.src
msgctxt ""
"formdlgs.src\n"
diff --git a/source/ur/fpicker/source/office.po b/source/ur/fpicker/source/office.po
index 34084c00bcf..9fab96a9160 100644
--- a/source/ur/fpicker/source/office.po
+++ b/source/ur/fpicker/source/office.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:03+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\n"
"PO-Revision-Date: 2012-02-24 15:57+0200\n"
"Last-Translator: Yasir <urdulizer@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. 4ULj
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "~Automatic file name extension"
msgstr "فائل کے نام کی ~خودکار اضافت"
-#. Dj/:
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "Save with pass~word"
msgstr "پاس ~ورڈ کے ساتھ محفوظ کیجئے"
-#. 9N|P
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -42,7 +39,6 @@ msgctxt ""
msgid "~Edit filter settings"
msgstr "فلٹر ~تنطیمات"
-#. lbNM
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -51,7 +47,6 @@ msgctxt ""
msgid "~Read-only"
msgstr "نا~قابل ترمیم"
-#. !:SR
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -60,7 +55,6 @@ msgctxt ""
msgid "~Link"
msgstr "~ربط"
-#. ~{h[
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Pr~eview"
msgstr "مشاہد~ہ"
-#. kNTP
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -78,7 +71,6 @@ msgctxt ""
msgid "~Play"
msgstr "~بجائیے"
-#. %P4+
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -87,7 +79,6 @@ msgctxt ""
msgid "~Version:"
msgstr "~نسخہ:"
-#. p(Uq
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -96,7 +87,6 @@ msgctxt ""
msgid "S~tyles:"
msgstr "اندا~ز:"
-#. )yE=
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -105,7 +95,6 @@ msgctxt ""
msgid "Style:"
msgstr "انداز:"
-#. LqbU
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -114,7 +103,6 @@ msgctxt ""
msgid "~Selection"
msgstr "~انتخاب"
-#. o3;O
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -123,7 +111,6 @@ msgctxt ""
msgid "File ~type:"
msgstr "فائل کی ~نوعیت:"
-#. 1bv8
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -132,7 +119,6 @@ msgctxt ""
msgid "Select Path"
msgstr "مقام منتخب کیجئے"
-#. D07^
#: OfficeFilePicker.src
msgctxt ""
"OfficeFilePicker.src\n"
@@ -141,7 +127,6 @@ msgctxt ""
msgid "Please select a folder."
msgstr "فولڈر منتخب کیجئے."
-#. ]Vv@
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -151,7 +136,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. ;Y*U
#: iodlg.src
#, fuzzy
msgctxt ""
@@ -162,7 +146,6 @@ msgctxt ""
msgid "Create New Folder"
msgstr "نیا فولڈر بنائیں"
-#. 4H%k
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -172,7 +155,6 @@ msgctxt ""
msgid "-"
msgstr ""
-#. /)2a
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -182,7 +164,6 @@ msgctxt ""
msgid "Up One Level"
msgstr "ایک درجہ اوپر"
-#. -eE@
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -192,7 +173,6 @@ msgctxt ""
msgid "..."
msgstr ""
-#. JY_L
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -202,7 +182,6 @@ msgctxt ""
msgid "Connect To Server"
msgstr ""
-#. gtrg
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -212,7 +191,6 @@ msgctxt ""
msgid "File ~name:"
msgstr "~فائل کا نام:"
-#. 3oFW
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -222,7 +200,6 @@ msgctxt ""
msgid "File ~type:"
msgstr "فائل کی نو~عیت:"
-#. 0IUA
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -232,7 +209,6 @@ msgctxt ""
msgid "~Read-only"
msgstr "نا~قابل ترمیم"
-#. f3pW
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -242,7 +218,6 @@ msgctxt ""
msgid "Save with password"
msgstr "پاس ورڈ کے سارتھ محفوظ کیجئے"
-#. !;B:
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -252,7 +227,6 @@ msgctxt ""
msgid "~Automatic file name extension"
msgstr "فائل کے نام کی ~خودکار اضافت"
-#. NSiC
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -262,7 +236,6 @@ msgctxt ""
msgid "Edit ~filter settings"
msgstr "فلٹر ~تنظیمات"
-#. Tfb=
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -272,7 +245,6 @@ msgctxt ""
msgid "~Open"
msgstr "~کھولیے"
-#. !Wl]
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -282,7 +254,6 @@ msgctxt ""
msgid "Open"
msgstr "کھولیے"
-#. vzL/
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -292,7 +263,6 @@ msgctxt ""
msgid "Save as"
msgstr "محفوظ بطور"
-#. +C2x
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -302,7 +272,6 @@ msgctxt ""
msgid "~Save"
msgstr "محفو~ظ کیجئے"
-#. 597d
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -312,7 +281,6 @@ msgctxt ""
msgid "~Path:"
msgstr "~مقام:"
-#. |qgQ
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -322,7 +290,6 @@ msgctxt ""
msgid "Select path"
msgstr "مقام منتخب کیجئے"
-#. .EW)
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -332,7 +299,6 @@ msgctxt ""
msgid "~Select"
msgstr "~انتخاب کیجئے"
-#. +TS2
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -342,7 +308,6 @@ msgctxt ""
msgid "Current version"
msgstr "موجودہ نسخہ"
-#. 8Um~
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -352,7 +317,6 @@ msgctxt ""
msgid "File Preview"
msgstr "فائل کا مشاہدہ"
-#. k{IY
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -362,7 +326,6 @@ msgctxt ""
msgid "My Documents"
msgstr ""
-#. \sF-
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -372,7 +335,6 @@ msgctxt ""
msgid "Places"
msgstr ""
-#. 5j@s
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -382,7 +344,6 @@ msgctxt ""
msgid "Na~me"
msgstr "~نام"
-#. FB6m
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -392,7 +353,6 @@ msgctxt ""
msgid "Create new folder"
msgstr "نیا فولڈر بنائیں"
-#. ,U8x
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -401,7 +361,6 @@ msgctxt ""
msgid "$name$ does not exist."
msgstr "$name$ موجود نہیں۔"
-#. @`7(
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -414,7 +373,6 @@ msgstr ""
"فائل $name$ موجود نہیں.\n"
"فائل کے درست نام کا اندراج یقینی بنائیں."
-#. Zl^@
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -423,7 +381,6 @@ msgctxt ""
msgid "All files"
msgstr "سب فائل کو"
-#. {30k
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -438,7 +395,6 @@ msgstr ""
"\n"
"کیا آپ اسے نئی فائل سے بدلنا چاہتے ہیں؟"
-#. sG][
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -447,7 +403,6 @@ msgctxt ""
msgid "Folder"
msgstr "فولڈر"
-#. 3usx
#: iodlg.src
msgctxt ""
"iodlg.src\n"
@@ -460,7 +415,6 @@ msgstr ""
"کوئی بیرونی سٹوریج ڈیوائس نہیں پائی گئی.\n"
"اطمینان کر لیں کہ ڈیوائس درست طریقے سے لگائی گئی ہے اور دوبارہ کوشش کیجئے."
-#. qSJd
#: iodlg.src
msgctxt ""
"iodlg.src\n"
diff --git a/source/ur/framework/source/classes.po b/source/ur/framework/source/classes.po
index 7deca66c5e1..e1a32a254a4 100644
--- a/source/ur/framework/source/classes.po
+++ b/source/ur/framework/source/classes.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. +x#`
#: resource.src
msgctxt ""
"resource.src\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Add-Ons"
msgstr ""
-#. J7v!
#: resource.src
msgctxt ""
"resource.src\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "Add-~On Help"
msgstr ""
-#. =X1Z
#: resource.src
msgctxt ""
"resource.src\n"
@@ -41,7 +38,6 @@ msgctxt ""
msgid "All"
msgstr ""
-#. mL;x
#: resource.src
msgctxt ""
"resource.src\n"
@@ -50,7 +46,6 @@ msgctxt ""
msgid "~Update"
msgstr ""
-#. }FiV
#: resource.src
msgctxt ""
"resource.src\n"
@@ -59,7 +54,6 @@ msgctxt ""
msgid "~Close & Return to "
msgstr ""
-#. _J\Z
#: resource.src
msgctxt ""
"resource.src\n"
@@ -69,7 +63,6 @@ msgctxt ""
msgid "Visible ~Buttons"
msgstr ""
-#. .__I
#: resource.src
msgctxt ""
"resource.src\n"
@@ -79,7 +72,6 @@ msgctxt ""
msgid "~Customize Toolbar..."
msgstr ""
-#. Mz%D
#: resource.src
msgctxt ""
"resource.src\n"
@@ -89,7 +81,6 @@ msgctxt ""
msgid "~Dock Toolbar"
msgstr ""
-#. #bq-
#: resource.src
msgctxt ""
"resource.src\n"
@@ -99,7 +90,6 @@ msgctxt ""
msgid "Dock ~All Toolbars"
msgstr ""
-#. ;Sdo
#: resource.src
msgctxt ""
"resource.src\n"
@@ -109,7 +99,6 @@ msgctxt ""
msgid "~Lock Toolbar Position"
msgstr ""
-#. X1|H
#: resource.src
msgctxt ""
"resource.src\n"
@@ -119,7 +108,6 @@ msgctxt ""
msgid "Close ~Toolbar"
msgstr ""
-#. JT^K
#: resource.src
msgctxt ""
"resource.src\n"
@@ -128,7 +116,6 @@ msgctxt ""
msgid "Save Copy ~as..."
msgstr ""
-#. jC/t
#: resource.src
#, fuzzy
msgctxt ""
@@ -138,7 +125,6 @@ msgctxt ""
msgid "No Documents"
msgstr "نئی کتاب"
-#. VbG3
#: resource.src
msgctxt ""
"resource.src\n"
@@ -147,7 +133,6 @@ msgctxt ""
msgid "Add-On %num%"
msgstr ""
-#. Rbv~
#: resource.src
msgctxt ""
"resource.src\n"
@@ -156,7 +141,6 @@ msgctxt ""
msgid "A %PRODUCTNAME product by %OOOVENDOR"
msgstr ""
-#. 5{4l
#: resource.src
msgctxt ""
"resource.src\n"
@@ -166,7 +150,6 @@ msgctxt ""
msgid "Please follow these steps to proceed with the installation:"
msgstr ""
-#. 1L2:
#: resource.src
msgctxt ""
"resource.src\n"
@@ -176,7 +159,6 @@ msgctxt ""
msgid "1."
msgstr ""
-#. R$W\
#: resource.src
msgctxt ""
"resource.src\n"
@@ -186,7 +168,6 @@ msgctxt ""
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 ""
-#. RB$j
#: resource.src
msgctxt ""
"resource.src\n"
@@ -196,7 +177,6 @@ msgctxt ""
msgid "Scroll Down"
msgstr ""
-#. U}jG
#: resource.src
msgctxt ""
"resource.src\n"
@@ -206,7 +186,6 @@ msgctxt ""
msgid "2."
msgstr ""
-#. FEdQ
#: resource.src
msgctxt ""
"resource.src\n"
@@ -216,7 +195,6 @@ msgctxt ""
msgid "Accept the License Agreement."
msgstr ""
-#. R_iD
#: resource.src
msgctxt ""
"resource.src\n"
@@ -226,7 +204,6 @@ msgctxt ""
msgid "~Accept"
msgstr ""
-#. j~Je
#: resource.src
msgctxt ""
"resource.src\n"
@@ -236,7 +213,6 @@ msgctxt ""
msgid "Decline"
msgstr ""
-#. V{V{
#: resource.src
msgctxt ""
"resource.src\n"
@@ -245,7 +221,6 @@ msgctxt ""
msgid "License Agreement"
msgstr ""
-#. WzdP
#: resource.src
msgctxt ""
"resource.src\n"
@@ -254,7 +229,6 @@ msgctxt ""
msgid "Retry"
msgstr ""
-#. 7aH6
#: resource.src
msgctxt ""
"resource.src\n"
@@ -270,7 +244,6 @@ msgid ""
"\n"
msgstr ""
-#. kJ]/
#: resource.src
msgctxt ""
"resource.src\n"
@@ -279,7 +252,6 @@ msgctxt ""
msgid "~Reset"
msgstr ""
-#. gI|E
#: resource.src
msgctxt ""
"resource.src\n"
@@ -290,7 +262,6 @@ msgid ""
"Please try to reinstall the application."
msgstr ""
-#. :KT~
#: resource.src
msgctxt ""
"resource.src\n"
@@ -301,7 +272,6 @@ msgid ""
"Please try to remove your user profile for the application."
msgstr ""
-#. %iT9
#: resource.src
msgctxt ""
"resource.src\n"
@@ -312,7 +282,6 @@ msgid ""
"Please try to remove your user profile for the application first or try to reinstall the application."
msgstr ""
-#. tgC]
#: resource.src
msgctxt ""
"resource.src\n"
@@ -321,7 +290,6 @@ msgctxt ""
msgid "Untitled"
msgstr ""
-#. ^E1@
#: resource.src
msgctxt ""
"resource.src\n"
@@ -330,7 +298,6 @@ msgctxt ""
msgid "Multiple Languages"
msgstr ""
-#. y-I{
#: resource.src
msgctxt ""
"resource.src\n"
@@ -339,7 +306,6 @@ msgctxt ""
msgid "None (Do not check spelling)"
msgstr ""
-#. J)Ua
#: resource.src
msgctxt ""
"resource.src\n"
@@ -348,7 +314,6 @@ msgctxt ""
msgid "Reset to Default Language"
msgstr ""
-#. L=+w
#: resource.src
msgctxt ""
"resource.src\n"
@@ -357,7 +322,6 @@ msgctxt ""
msgid "More..."
msgstr ""
-#. \Q`Z
#: resource.src
msgctxt ""
"resource.src\n"
@@ -366,7 +330,6 @@ msgctxt ""
msgid "Set Language for Selection"
msgstr ""
-#. @?yf
#: resource.src
msgctxt ""
"resource.src\n"
@@ -375,7 +338,6 @@ msgctxt ""
msgid "Set Language for Paragraph"
msgstr ""
-#. YA!N
#: resource.src
msgctxt ""
"resource.src\n"
diff --git a/source/ur/framework/source/services.po b/source/ur/framework/source/services.po
index 7d424f6a9bf..61386f7be30 100644
--- a/source/ur/framework/source/services.po
+++ b/source/ur/framework/source/services.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. v1C5
#: fwk_services.src
msgctxt ""
"fwk_services.src\n"
@@ -24,7 +23,6 @@ msgctxt ""
msgid "Create a new document"
msgstr ""
-#. ]WRA
#: fwk_services.src
msgctxt ""
"fwk_services.src\n"
@@ -34,7 +32,6 @@ msgctxt ""
msgid "~Templates..."
msgstr ""
-#. 28zC
#: fwk_services.src
msgctxt ""
"fwk_services.src\n"
@@ -44,7 +41,6 @@ msgctxt ""
msgid "~Open..."
msgstr ""
-#. 4bp*
#: fwk_services.src
msgctxt ""
"fwk_services.src\n"
@@ -54,7 +50,6 @@ msgctxt ""
msgid "Add new features to %PRODUCTNAME"
msgstr ""
-#. !BQ^
#: fwk_services.src
msgctxt ""
"fwk_services.src\n"
@@ -64,7 +59,6 @@ msgctxt ""
msgid "Get more information about %PRODUCTNAME"
msgstr ""
-#. #_21
#: fwk_services.src
msgctxt ""
"fwk_services.src\n"
diff --git a/source/ur/helpcontent2/source/auxiliary.po b/source/ur/helpcontent2/source/auxiliary.po
new file mode 100644
index 00000000000..274e06d900d
--- /dev/null
+++ b/source/ur/helpcontent2/source/auxiliary.po
@@ -0,0 +1,831 @@
+#. extracted from helpcontent2/source/auxiliary
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2012-11-30 12:18+0100\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: ur\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: LibreOffice\n"
+"X-Accelerator-Marker: ~\n"
+
+#: sbasic.tree
+msgctxt ""
+"sbasic.tree\n"
+"07\n"
+"help_section.text"
+msgid "Macros and Programming"
+msgstr ""
+
+#: sbasic.tree
+msgctxt ""
+"sbasic.tree\n"
+"0701\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sbasic.tree
+msgctxt ""
+"sbasic.tree\n"
+"0702\n"
+"node.text"
+msgid "Command Reference"
+msgstr ""
+
+#: sbasic.tree
+msgctxt ""
+"sbasic.tree\n"
+"070202\n"
+"node.text"
+msgid "Run-Time Functions, Statements, and Operators"
+msgstr ""
+
+#: sbasic.tree
+msgctxt ""
+"sbasic.tree\n"
+"070201\n"
+"node.text"
+msgid "Alphabetic List of Functions, Statements, and Operators"
+msgstr ""
+
+#: sbasic.tree
+msgctxt ""
+"sbasic.tree\n"
+"0703\n"
+"node.text"
+msgid "Guides"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"04\n"
+"help_section.text"
+msgid "Presentations and Drawings"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0401\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0402\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"040201\n"
+"node.text"
+msgid "Presentations (%PRODUCTNAME Impress)"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"04020101\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"04020102\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"040202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"04020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"04020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0403\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0404\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0405\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0406\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0407\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0408\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0409\n"
+"node.text"
+msgid "Text in Presentations and Drawings"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0410\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
+#: schart.tree
+msgctxt ""
+"schart.tree\n"
+"05\n"
+"help_section.text"
+msgid "Charts and Diagrams"
+msgstr ""
+
+#: schart.tree
+msgctxt ""
+"schart.tree\n"
+"0501\n"
+"node.text"
+msgid "General Information"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"02\n"
+"help_section.text"
+msgid "Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0201\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0202\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0203\n"
+"node.text"
+msgid "Creating Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0204\n"
+"node.text"
+msgid "Graphics in Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0205\n"
+"node.text"
+msgid "Tables in Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0206\n"
+"node.text"
+msgid "Objects in Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0207\n"
+"node.text"
+msgid "Sections and Frames in Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0208\n"
+"node.text"
+msgid "Tables of Contents and Indexes"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0209\n"
+"node.text"
+msgid "Fields in Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0210\n"
+"node.text"
+msgid "Navigating Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0211\n"
+"node.text"
+msgid "Calculating in Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0212\n"
+"node.text"
+msgid "Formatting Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"021201\n"
+"node.text"
+msgid "Templates and Styles"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0213\n"
+"node.text"
+msgid "Special Text Elements"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0214\n"
+"node.text"
+msgid "Automatic Functions"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0215\n"
+"node.text"
+msgid "Numbering and Lists"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0216\n"
+"node.text"
+msgid "Spellchecking, Thesaurus, and Languages"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0218\n"
+"node.text"
+msgid "Troubleshooting Tips"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0219\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0220\n"
+"node.text"
+msgid "Master Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0221\n"
+"node.text"
+msgid "Links and References"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0222\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0223\n"
+"node.text"
+msgid "Searching and Replacing"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"06\n"
+"help_section.text"
+msgid "HTML Documents"
+msgstr ""
+
+#: smath.tree
+msgctxt ""
+"smath.tree\n"
+"03\n"
+"help_section.text"
+msgid "Formulas"
+msgstr ""
+
+#: smath.tree
+msgctxt ""
+"smath.tree\n"
+"0301\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: smath.tree
+msgctxt ""
+"smath.tree\n"
+"0302\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: smath.tree
+msgctxt ""
+"smath.tree\n"
+"0303\n"
+"node.text"
+msgid "Working with Formulas"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"01\n"
+"help_section.text"
+msgid "Installation"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"10\n"
+"help_section.text"
+msgid "Common Help Topics"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1001\n"
+"node.text"
+msgid "General Information"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1002\n"
+"node.text"
+msgid "%PRODUCTNAME and Microsoft Office"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1004\n"
+"node.text"
+msgid "%PRODUCTNAME Options"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1005\n"
+"node.text"
+msgid "Wizards"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"100501\n"
+"node.text"
+msgid "Letter Wizard"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"100502\n"
+"node.text"
+msgid "Fax Wizard"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"100504\n"
+"node.text"
+msgid "Agenda Wizard"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"100505\n"
+"node.text"
+msgid "Presentation Wizard"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"100506\n"
+"node.text"
+msgid "HTML Export Wizard"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"100510\n"
+"node.text"
+msgid "Document Converter Wizard"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1006\n"
+"node.text"
+msgid "Configuring %PRODUCTNAME"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1007\n"
+"node.text"
+msgid "Working with the User Interface"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1008\n"
+"node.text"
+msgid "Printing, Faxing, Sending"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1009\n"
+"node.text"
+msgid "Drag & Drop"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1010\n"
+"node.text"
+msgid "Copy and Paste"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1012\n"
+"node.text"
+msgid "Charts and Diagrams"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1013\n"
+"node.text"
+msgid "Load, Save, Import, Export"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1014\n"
+"node.text"
+msgid "Links and References"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1015\n"
+"node.text"
+msgid "Document Version Tracking"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1016\n"
+"node.text"
+msgid "Labels and Business Cards"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1018\n"
+"node.text"
+msgid "Inserting External Data"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1019\n"
+"node.text"
+msgid "Automatic Functions"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1020\n"
+"node.text"
+msgid "Searching and Replacing"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"1021\n"
+"node.text"
+msgid "Guides"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"09\n"
+"help_section.text"
+msgid "Database Functionality"
+msgstr ""
+
+#: shared.tree
+msgctxt ""
+"shared.tree\n"
+"0901\n"
+"node.text"
+msgid "General Information"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"08\n"
+"help_section.text"
+msgid "Spreadsheets"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0801\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0802\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"080201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"080202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0803\n"
+"node.text"
+msgid "Functions Types and Operators"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0804\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0805\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0806\n"
+"node.text"
+msgid "Filtering and Sorting"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0807\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0808\n"
+"node.text"
+msgid "Data Ranges"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0809\n"
+"node.text"
+msgid "Pivot Table"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0810\n"
+"node.text"
+msgid "Scenarios"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0811\n"
+"node.text"
+msgid "References"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0812\n"
+"node.text"
+msgid "Viewing, Selecting, Copying"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0813\n"
+"node.text"
+msgid "Formulas and Calculations"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0814\n"
+"node.text"
+msgid "Protection"
+msgstr ""
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0815\n"
+"node.text"
+msgid "Miscellaneous"
+msgstr ""
diff --git a/source/ur/helpcontent2/source/text/sbasic/guide.po b/source/ur/helpcontent2/source/text/sbasic/guide.po
index 709789a448c..31e4b938398 100644
--- a/source/ur/helpcontent2/source/text/sbasic/guide.po
+++ b/source/ur/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. lyK]
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "Creating a Basic Dialog"
msgstr ""
-#. 5QGj
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -32,7 +30,6 @@ msgctxt ""
msgid "<bookmark_value>dialogs;creating Basic dialogs</bookmark_value>"
msgstr ""
-#. 7/Gq
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -42,7 +39,6 @@ msgctxt ""
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 ""
-#. I[pj
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -52,7 +48,6 @@ msgctxt ""
msgid "Choose <emph>Tools - Macros - Organize Dialogs</emph>, and then click <emph>New</emph>."
msgstr ""
-#. i4iR
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -62,7 +57,6 @@ msgctxt ""
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 ""
-#. g4sC
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -71,7 +65,6 @@ msgctxt ""
msgid "Click <emph>Edit</emph>. The Basic dialog editor opens and contains a blank dialog."
msgstr ""
-#. G]H:
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -81,7 +74,6 @@ msgctxt ""
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 ""
-#. R#P.
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -91,7 +83,6 @@ msgctxt ""
msgid "Click a tool and then drag in the dialog to create the control."
msgstr ""
-#. pa$)
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -100,7 +91,6 @@ msgctxt ""
msgid "Creating Controls in the Dialog Editor"
msgstr ""
-#. =H+1
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -109,7 +99,6 @@ msgctxt ""
msgid "<bookmark_value>controls; creating in the dialog editor</bookmark_value><bookmark_value>dialog editor;creating controls</bookmark_value>"
msgstr ""
-#. Z:9c
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -119,7 +108,6 @@ msgctxt ""
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 ""
-#. b]H\
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -129,7 +117,6 @@ msgctxt ""
msgid "Use the tools on the <emph>Toolbox </emph>of the BASIC dialog editor to add controls to your dialog."
msgstr ""
-#. (q+q
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -139,7 +126,6 @@ msgctxt ""
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 ""
-#. CTqE
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -149,7 +135,6 @@ msgctxt ""
msgid "Click a tool on the toolbar, for example, <emph>Button</emph>."
msgstr ""
-#. Z$eA
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
@@ -159,7 +144,6 @@ msgctxt ""
msgid "On the dialog, drag the button to the size you want."
msgstr ""
-#. :3jB
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -168,7 +152,6 @@ msgctxt ""
msgid "Programming Examples for Controls in the Dialog Editor"
msgstr ""
-#. 4OU5
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -177,7 +160,6 @@ msgctxt ""
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 ""
-#. ,1-3
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -187,7 +169,6 @@ msgctxt ""
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 ""
-#. gNsl
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -197,7 +178,6 @@ msgctxt ""
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 ""
-#. @VQ#
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -207,7 +187,6 @@ msgctxt ""
msgid "Be consistent with uppercase and lowercase letter when you attach a control to an object variable."
msgstr ""
-#. ;Zv/
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -217,7 +196,6 @@ msgctxt ""
msgid "Global Function for Loading Dialogs"
msgstr ""
-#. $.c[
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -227,7 +205,6 @@ msgctxt ""
msgid "Displaying a Dialog"
msgstr ""
-#. o@5@
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -236,7 +213,6 @@ msgctxt ""
msgid "REM global definition of variables"
msgstr ""
-#. r0wJ
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -246,7 +222,6 @@ msgctxt ""
msgid "Read or Edit Properties of Controls in the Program"
msgstr ""
-#. ]6.1
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -255,7 +230,6 @@ msgctxt ""
msgid "REM get dialog model"
msgstr ""
-#. [noW
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -264,7 +238,6 @@ msgctxt ""
msgid "REM display text of Label1"
msgstr ""
-#. I:c%
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -273,7 +246,6 @@ msgctxt ""
msgid "REM set new text for control Label1"
msgstr ""
-#. ^f!;
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -282,7 +254,6 @@ msgctxt ""
msgid "oLabel1.Text = \"New Files\""
msgstr ""
-#. j+5q
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -291,7 +262,6 @@ msgctxt ""
msgid "REM display model properties for the control CheckBox1"
msgstr ""
-#. 0K/R
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -300,7 +270,6 @@ msgctxt ""
msgid "REM set new state for CheckBox1 for model of control"
msgstr ""
-#. t-.)
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -309,7 +278,6 @@ msgctxt ""
msgid "REM display model properties for control CommandButton1"
msgstr ""
-#. MW#z
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -318,7 +286,6 @@ msgctxt ""
msgid "REM display properties of control CommandButton1"
msgstr ""
-#. #1@t
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -327,7 +294,6 @@ msgctxt ""
msgid "REM execute dialog"
msgstr ""
-#. SQ;/
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -336,7 +302,6 @@ msgctxt ""
msgid "End Sub"
msgstr ""
-#. oZMn
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -346,7 +311,6 @@ msgctxt ""
msgid "Add an Entry to a ListBox"
msgstr ""
-#. NVlH
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -355,7 +319,6 @@ msgctxt ""
msgid "REM adds a new entry to the ListBox"
msgstr ""
-#. !R)S
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -364,7 +327,6 @@ msgctxt ""
msgid "oListbox.additem(\"New Item\" & iCount,0)"
msgstr ""
-#. []3y
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -374,7 +336,6 @@ msgctxt ""
msgid "Remove an Entry from a ListBox"
msgstr ""
-#. W\?P
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
@@ -383,7 +344,6 @@ msgctxt ""
msgid "REM remove the first entry from the ListBox"
msgstr ""
-#. T)mS
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -392,7 +352,6 @@ msgctxt ""
msgid "Changing the Properties of Controls in the Dialog Editor"
msgstr ""
-#. ?XnX
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -401,7 +360,6 @@ msgctxt ""
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 ""
-#. r0LQ
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -411,7 +369,6 @@ msgctxt ""
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 ""
-#. mlL^
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -421,7 +378,6 @@ msgctxt ""
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 ""
-#. YrC3
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -431,7 +387,6 @@ msgctxt ""
msgid "To change the properties of a control in design mode, right-click the control, and then choose <emph>Properties</emph>."
msgstr ""
-#. 6c:g
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -440,7 +395,6 @@ msgctxt ""
msgid "Translation of Controls in the Dialog Editor"
msgstr ""
-#. I%m*
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -449,7 +403,6 @@ msgctxt ""
msgid "<bookmark_value>dialogs;translating</bookmark_value><bookmark_value>localizing dialogs</bookmark_value><bookmark_value>translating dialogs</bookmark_value>"
msgstr ""
-#. Zv\6
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -458,7 +411,6 @@ msgctxt ""
msgid "<variable id=\"translation\"><link href=\"text/sbasic/guide/translation.xhp\">Translation of Controls in the Dialog Editor</link></variable>"
msgstr ""
-#. ]%ki
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -467,7 +419,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">The Language toolbar in the Basic IDE dialog editor shows controls to enable and manage localizable dialogs.</ahelp>"
msgstr ""
-#. w39E
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -476,7 +427,6 @@ msgctxt ""
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 ""
-#. HsTg
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -485,7 +435,6 @@ msgctxt ""
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 ""
-#. k_)8
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -494,7 +443,6 @@ msgctxt ""
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 ""
-#. `vfU
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -503,7 +451,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog where you can add a language to the list.</ahelp>"
msgstr ""
-#. |z,=
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -512,7 +459,6 @@ msgctxt ""
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 ""
-#. trE)
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -521,7 +467,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a language in the list and click Default to set the language as default language.</ahelp>"
msgstr ""
-#. :o/z
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -530,7 +475,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">The default language will be used as a source for all other language strings.</ahelp>"
msgstr ""
-#. lOW%
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -539,7 +483,6 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Add UI languages for your dialog strings.</ahelp>"
msgstr ""
-#. [+~9
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -548,7 +491,6 @@ msgctxt ""
msgid "To enable localizable dialogs"
msgstr ""
-#. 4GEp
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -557,7 +499,6 @@ msgctxt ""
msgid "In the Basic IDE dialog editor, open the Language toolbar choosing <item type=\"menuitem\">View - Toolbars - Language</item>."
msgstr ""
-#. x)fS
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -566,7 +507,6 @@ msgctxt ""
msgid "If the current library already contains a localizable dialog, the Language toolbar is shown automatically."
msgstr ""
-#. P?77
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -575,7 +515,6 @@ msgctxt ""
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 ""
-#. GIYx
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -584,7 +523,6 @@ msgctxt ""
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 ""
-#. b]RP
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -593,7 +531,6 @@ msgctxt ""
msgid "Click Add in the dialog to add a language entry."
msgstr ""
-#. )oH3
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -602,7 +539,6 @@ msgctxt ""
msgid "This step enables all new dialogs to contain localizable string resources."
msgstr ""
-#. CrnQ
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -611,7 +547,6 @@ msgctxt ""
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 ""
-#. D-0^
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -620,7 +555,6 @@ msgctxt ""
msgid "You can also change the default language in the Manage User Interface Language dialog."
msgstr ""
-#. +NiO
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -629,7 +563,6 @@ msgctxt ""
msgid "Select a language."
msgstr ""
-#. 0X5h
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -638,7 +571,6 @@ msgctxt ""
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 ""
-#. Ks?r
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -647,7 +579,6 @@ msgctxt ""
msgid "Close the dialog or add additional languages."
msgstr ""
-#. +}jW
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -656,7 +587,6 @@ msgctxt ""
msgid "To edit localizable controls in your dialog"
msgstr ""
-#. [%BK
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -665,7 +595,6 @@ msgctxt ""
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 ""
-#. A%({
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -674,7 +603,6 @@ msgctxt ""
msgid "Switch the Current Language listbox to display the default language."
msgstr ""
-#. *][@
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -683,7 +611,6 @@ msgctxt ""
msgid "Insert any number of controls to your dialog and enter all strings you want."
msgstr ""
-#. NwKw
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -692,7 +619,6 @@ msgctxt ""
msgid "Select another language in the Current Language listbox."
msgstr ""
-#. 6c@g
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -701,7 +627,6 @@ msgctxt ""
msgid "Using the control's property dialogs, edit all strings to the other language."
msgstr ""
-#. pm!y
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -710,7 +635,6 @@ msgctxt ""
msgid "Repeat for all languages that you added."
msgstr ""
-#. )W13
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -719,7 +643,6 @@ msgctxt ""
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 ""
-#. !aKh
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -728,7 +651,6 @@ msgctxt ""
msgid "If no language matches the user's version, the user will see the default language strings."
msgstr ""
-#. TADC
#: translation.xhp
msgctxt ""
"translation.xhp\n"
@@ -737,7 +659,6 @@ msgctxt ""
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 ""
-#. lK5B
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
@@ -746,7 +667,6 @@ msgctxt ""
msgid "Opening a Dialog With Program Code"
msgstr ""
-#. %+,9
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
@@ -755,7 +675,6 @@ msgctxt ""
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 ""
-#. Z#rJ
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
@@ -765,7 +684,6 @@ msgctxt ""
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 ""
-#. 9W_=
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
@@ -775,7 +693,6 @@ msgctxt ""
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 ""
-#. m$G5
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
@@ -785,7 +702,6 @@ msgctxt ""
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 ""
-#. .gr9
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
@@ -795,7 +711,6 @@ msgctxt ""
msgid "Without using \"LoadDialog\" you can call the code as follows:"
msgstr ""
-#. 9mG;
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
diff --git a/source/ur/helpcontent2/source/text/sbasic/shared.po b/source/ur/helpcontent2/source/text/sbasic/shared.po
index a113aeb05f7..40a01a8b455 100644
--- a/source/ur/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ur/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-17 19:02+0200\n"
+"POT-Creation-Date: 2012-11-30 12:19+0100\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"
@@ -14,7 +14,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#. .7pA
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -23,7 +22,6 @@ msgctxt ""
msgid "General"
msgstr ""
-#. XWZl
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -33,7 +31,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/01170101.xhp\" name=\"General\">General</link>"
msgstr ""
-#. 5vRd
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -43,7 +40,6 @@ msgctxt ""
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 ""
-#. c$Bu
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -53,7 +49,6 @@ msgctxt ""
msgid "Alignment"
msgstr ""
-#. O@L;
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -63,7 +58,6 @@ msgctxt ""
msgid "<ahelp hid=\"HID_PROP_IMAGE_ALIGN\">Specify the alignment option for the selected control.</ahelp>"
msgstr ""
-#. |T2L
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -73,7 +67,6 @@ msgctxt ""
msgid "AutoFill"
msgstr ""
-#. rkR3
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -83,7 +76,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to enable the AutoFill function for the selected control. </ahelp>"
msgstr ""
-#. ZYQm
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -93,7 +85,6 @@ msgctxt ""
msgid "Background color"
msgstr ""
-#. ^Q2u
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -103,7 +94,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the background color for the current control.</ahelp>"
msgstr ""
-#. D;jl
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -113,7 +103,6 @@ msgctxt ""
msgid "Large change"
msgstr ""
-#. Fl}t
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -123,7 +112,6 @@ msgctxt ""
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 ""
-#. kCE$
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -133,7 +121,6 @@ msgctxt ""
msgid "Border"
msgstr ""
-#. %2RN
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -143,7 +130,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the border type for the current control.</ahelp>"
msgstr ""
-#. wCm5
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -153,7 +139,6 @@ msgctxt ""
msgid "Button type"
msgstr ""
-#. ybwY
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -163,7 +148,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select a button type. Button types determine what type of action is initiated.</ahelp>"
msgstr ""
-#. ,G\Z
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -173,7 +157,6 @@ msgctxt ""
msgid "Character set"
msgstr ""
-#. 4h]P
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -183,7 +166,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select the font to be used for displaying the contents of the current control.</ahelp>"
msgstr ""
-#. pQC6
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -193,7 +175,6 @@ msgctxt ""
msgid "Currency symbol"
msgstr ""
-#. 7ySZ
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -203,7 +184,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter the currency symbol to be used for currency controls.</ahelp>"
msgstr ""
-#. n7=T
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -212,7 +192,6 @@ msgctxt ""
msgid "Date"
msgstr ""
-#. Ca`/
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -221,7 +200,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the default date to be shown in the Date control.</ahelp>"
msgstr ""
-#. LTEm
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -231,7 +209,6 @@ msgctxt ""
msgid "Date format"
msgstr ""
-#. /;J9
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -241,7 +218,6 @@ msgctxt ""
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 ""
-#. 9BJ[
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -251,7 +227,6 @@ msgctxt ""
msgid "Date max."
msgstr ""
-#. RcPV
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -261,7 +236,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the upper limit for a date control.</ahelp>"
msgstr ""
-#. }`dD
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -271,7 +245,6 @@ msgctxt ""
msgid "Date min."
msgstr ""
-#. ~Zl=
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -281,7 +254,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the lower limit for a date control.</ahelp>"
msgstr ""
-#. `dgE
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -291,7 +263,6 @@ msgctxt ""
msgid "Decimal accuracy"
msgstr ""
-#. 3|+-
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -301,7 +272,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the number of decimal places displayed for a numerical or currency control.</ahelp>"
msgstr ""
-#. C4CH
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -311,7 +281,6 @@ msgctxt ""
msgid "Default button"
msgstr ""
-#. G,NM
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -321,7 +290,6 @@ msgctxt ""
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 ""
-#. 1;cZ
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -330,7 +298,6 @@ msgctxt ""
msgid "Delay"
msgstr ""
-#. #bM1
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -339,7 +306,6 @@ msgctxt ""
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 ""
-#. MCW+
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -349,7 +315,6 @@ msgctxt ""
msgid "Dropdown"
msgstr ""
-#. @^hH
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -359,7 +324,6 @@ msgctxt ""
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 ""
-#. dYO.
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -369,7 +333,6 @@ msgctxt ""
msgid "Enabled"
msgstr ""
-#. Uk81
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -379,7 +342,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to enable the control. If the control is disabled, it is grayed out in the dialog.</ahelp>"
msgstr ""
-#. c#Ib
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -389,7 +351,6 @@ msgctxt ""
msgid "Edit mask"
msgstr ""
-#. .{W?
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -399,7 +360,6 @@ msgctxt ""
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 ""
-#. 35~5
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -409,7 +369,6 @@ msgctxt ""
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 ""
-#. G*#j
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -419,7 +378,6 @@ msgctxt ""
msgid "Character"
msgstr ""
-#. `]CP
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -429,7 +387,6 @@ msgctxt ""
msgid "Meaning"
msgstr ""
-#. v:x(
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -439,7 +396,6 @@ msgctxt ""
msgid "L"
msgstr ""
-#. MYiQ
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -449,7 +405,6 @@ msgctxt ""
msgid "A text constant. This character cannot be modified by the user."
msgstr ""
-#. Q`?z
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -459,7 +414,6 @@ msgctxt ""
msgid "a"
msgstr ""
-#. %__%
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -469,7 +423,6 @@ msgctxt ""
msgid "The characters a-z can be entered here. If a capital letter is entered, it is automatically converted to a lowercase letter."
msgstr ""
-#. (skl
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -479,7 +432,6 @@ msgctxt ""
msgid "A"
msgstr ""
-#. O\iW
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -489,7 +441,6 @@ msgctxt ""
msgid "The characters A-Z can be entered here. If a lowercase letter is entered, it is automatically converted to a capital letter"
msgstr ""
-#. ^eoK
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -499,7 +450,6 @@ msgctxt ""
msgid "c"
msgstr ""
-#. dUKL
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -509,7 +459,6 @@ msgctxt ""
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 ""
-#. O.$_
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -519,7 +468,6 @@ msgctxt ""
msgid "C"
msgstr ""
-#. 3gnh
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -529,7 +477,6 @@ msgctxt ""
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 ""
-#. =Bz.
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -539,7 +486,6 @@ msgctxt ""
msgid "N"
msgstr ""
-#. U@jb
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -549,7 +495,6 @@ msgctxt ""
msgid "Only the characters 0-9 can be entered."
msgstr ""
-#. w`$|
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -559,7 +504,6 @@ msgctxt ""
msgid "x"
msgstr ""
-#. 0/%P
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -569,7 +513,6 @@ msgctxt ""
msgid "All printable characters can be entered."
msgstr ""
-#. KT/f
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -579,7 +522,6 @@ msgctxt ""
msgid "X"
msgstr ""
-#. aR(m
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -589,7 +531,6 @@ msgctxt ""
msgid "All printable characters can be entered. If a lowercase letter is used, it is automatically converted to a capital letter."
msgstr ""
-#. ^6$p
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -598,7 +539,6 @@ msgctxt ""
msgid "Editable"
msgstr ""
-#. H%KR
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -607,7 +547,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies whether the nodes of the tree control are editable.</ahelp>"
msgstr ""
-#. 4Y{A
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -616,7 +555,6 @@ msgctxt ""
msgid "The default value is FALSE."
msgstr ""
-#. /nmC
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -626,7 +564,6 @@ msgctxt ""
msgid "Graphics"
msgstr ""
-#. Ouj)
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -636,7 +573,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the source of the graphics for a button or an image control. Click \"...\" to select a file.</ahelp>"
msgstr ""
-#. M4Qq
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -646,7 +582,6 @@ msgctxt ""
msgid "Height"
msgstr ""
-#. hDlS
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -656,7 +591,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the height of the current control or the dialog.</ahelp>"
msgstr ""
-#. ibPC
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -666,7 +600,6 @@ msgctxt ""
msgid "Help text"
msgstr ""
-#. ^a##
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -676,7 +609,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter a help text that is displayed as a tip (bubble help) when the mouse rests over the control.</ahelp>"
msgstr ""
-#. i^|d
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -686,7 +618,6 @@ msgctxt ""
msgid "Help URL"
msgstr ""
-#. eT*L
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -696,7 +627,6 @@ msgctxt ""
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 ""
-#. xXrC
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -705,7 +635,6 @@ msgctxt ""
msgid "Set the environment variable HELP_DEBUG to 1 to view the Help-IDs as extended help tips."
msgstr ""
-#. y.\=
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -715,7 +644,6 @@ msgctxt ""
msgid "Incr./decrement value"
msgstr ""
-#. JeK#
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -725,7 +653,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the increment and decrement interval for spin button controls.</ahelp>"
msgstr ""
-#. b@8M
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -734,7 +661,6 @@ msgctxt ""
msgid "Invokes stop mode editing"
msgstr ""
-#. $*#h
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -743,7 +669,6 @@ msgctxt ""
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 ""
-#. ms=;
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -752,7 +677,6 @@ msgctxt ""
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 ""
-#. bZ.~
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -761,7 +685,6 @@ msgctxt ""
msgid "The default value is FALSE."
msgstr ""
-#. 5-?o
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -771,7 +694,6 @@ msgctxt ""
msgid "Label"
msgstr ""
-#. -4:w
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -781,7 +703,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies the label of the current control. The label is displayed along with the control.</ahelp>"
msgstr ""
-#. ,pBi
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -791,7 +712,6 @@ msgctxt ""
msgid "You can create multi-line <emph>labels</emph> by inserting manual line breaks in the label using <emph>Shift+Enter</emph>."
msgstr ""
-#. Ub9l
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -801,7 +721,6 @@ msgctxt ""
msgid "Line Count"
msgstr ""
-#. wv_a
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -811,7 +730,6 @@ msgctxt ""
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 ""
-#. y#FX
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -820,7 +738,6 @@ msgctxt ""
msgid "Scrollbar"
msgstr ""
-#. %IZA
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -829,7 +746,6 @@ msgctxt ""
msgid "Adds the scrollbar type that you specify to a text box."
msgstr ""
-#. Yj5D
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -839,7 +755,6 @@ msgctxt ""
msgid "Small change"
msgstr ""
-#. o#dN
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -849,7 +764,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the number of units to scroll when a user clicks an arrow on a scrollbar.</ahelp>"
msgstr ""
-#. d:a\
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -859,7 +773,6 @@ msgctxt ""
msgid "List entries"
msgstr ""
-#. $i_{
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -869,7 +782,6 @@ msgctxt ""
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 ""
-#. bKmu
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -879,7 +791,6 @@ msgctxt ""
msgid "Literal mask"
msgstr ""
-#. (d(*
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -889,7 +800,6 @@ msgctxt ""
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 ""
-#. ?ft9
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -899,7 +809,6 @@ msgctxt ""
msgid "Manual line break"
msgstr ""
-#. KU5W
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -909,7 +818,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to allow manual line breaks inside multiline controls.</ahelp>"
msgstr ""
-#. -E51
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -919,7 +827,6 @@ msgctxt ""
msgid "Max. text length"
msgstr ""
-#. wc-1
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -929,7 +836,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the maximum number of characters that the user can enter.</ahelp>"
msgstr ""
-#. y9h.
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -939,7 +845,6 @@ msgctxt ""
msgid "Multiline Input"
msgstr ""
-#. gjla
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -949,7 +854,6 @@ msgctxt ""
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 ""
-#. GQ8#
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -959,7 +863,6 @@ msgctxt ""
msgid "Multiselection"
msgstr ""
-#. 86Q`
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -969,7 +872,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to allow the selection of multiple entries in list controls.</ahelp>"
msgstr ""
-#. 1;2b
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -979,7 +881,6 @@ msgctxt ""
msgid "Name"
msgstr ""
-#. lCVG
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -989,7 +890,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Insert a name for the current control. This name is used to identify the control.</ahelp>"
msgstr ""
-#. +]f#
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -999,7 +899,6 @@ msgctxt ""
msgid "Order"
msgstr ""
-#. :Pd\
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1009,7 +908,6 @@ msgctxt ""
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 ""
-#. [;q$
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1019,7 +917,6 @@ msgctxt ""
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 ""
-#. :GC?
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1029,7 +926,6 @@ msgctxt ""
msgid "Orientation"
msgstr ""
-#. D6!3
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1039,7 +935,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the orientation for a scrollbar control.</ahelp>"
msgstr ""
-#. O]U6
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1049,7 +944,6 @@ msgctxt ""
msgid "Page (step)"
msgstr ""
-#. ;UH9
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1059,7 +953,6 @@ msgctxt ""
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 ""
-#. :NV?
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1069,7 +962,6 @@ msgctxt ""
msgid "Select <emph>Page (Step)</emph> = 0 to make a control visible on every dialog page."
msgstr ""
-#. 7C65
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1079,7 +971,6 @@ msgctxt ""
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 ""
-#. sc@d
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1089,7 +980,6 @@ msgctxt ""
msgid "Password characters"
msgstr ""
-#. Mx4n
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1099,7 +989,6 @@ msgctxt ""
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 ""
-#. /OEi
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1109,7 +998,6 @@ msgctxt ""
msgid "PositionX"
msgstr ""
-#. f]jA
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1119,7 +1007,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the distance of the current control from the left side of the dialog.</ahelp>"
msgstr ""
-#. C#UB
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1129,7 +1016,6 @@ msgctxt ""
msgid "PositionY"
msgstr ""
-#. ^ybM
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1139,7 +1025,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the distance of the current control from the top of the dialog.</ahelp>"
msgstr ""
-#. WB1z
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1149,7 +1034,6 @@ msgctxt ""
msgid "Prefix symbol"
msgstr ""
-#. t%Kc
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1159,7 +1043,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to display the currency symbol prefix in currency controls when a number was entered.</ahelp>"
msgstr ""
-#. ^gf5
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1169,7 +1052,6 @@ msgctxt ""
msgid "Print"
msgstr ""
-#. ?x=F
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1179,7 +1061,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to include the current control in a document's printout.</ahelp>"
msgstr ""
-#. H??@
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1189,7 +1070,6 @@ msgctxt ""
msgid "Progress value"
msgstr ""
-#. kmaZ
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1199,7 +1079,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify a progress value for a progress bar control.</ahelp>"
msgstr ""
-#. p9T|
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1209,7 +1088,6 @@ msgctxt ""
msgid "Progress value max."
msgstr ""
-#. F0HI
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1219,7 +1097,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the maximum value of a progress bar control.</ahelp>"
msgstr ""
-#. ##O:
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1229,7 +1106,6 @@ msgctxt ""
msgid "Progress value min."
msgstr ""
-#. E819
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1239,7 +1115,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the minimum value of a progress bar control.</ahelp>"
msgstr ""
-#. Rt:9
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1249,7 +1124,6 @@ msgctxt ""
msgid "Read-only"
msgstr ""
-#. l2Kb
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1259,7 +1133,6 @@ msgctxt ""
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 ""
-#. +WTD
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1268,7 +1141,6 @@ msgctxt ""
msgid "Repeat"
msgstr ""
-#. tWr0
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1277,7 +1149,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Repeats trigger events when you keep the mouse button pressed on a control such as a spin button.</ahelp>"
msgstr ""
-#. i|T9
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1286,7 +1157,6 @@ msgctxt ""
msgid "Root displayed"
msgstr ""
-#. BVN9
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1295,7 +1165,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies if the root node of the tree control is displayed.</ahelp>"
msgstr ""
-#. !M#:
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1304,7 +1173,6 @@ msgctxt ""
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 ""
-#. GO^^
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1313,7 +1181,6 @@ msgctxt ""
msgid "The default value is TRUE."
msgstr ""
-#. WST[
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1322,7 +1189,6 @@ msgctxt ""
msgid "Row height"
msgstr ""
-#. uOs5
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1331,7 +1197,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies the height of each row of a tree control, in pixels.</ahelp>"
msgstr ""
-#. CV(}
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1340,7 +1205,6 @@ msgctxt ""
msgid "If the specified value is less than or equal to zero, the row height is the maximum height of all rows."
msgstr ""
-#. =%J:
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1349,7 +1213,6 @@ msgctxt ""
msgid "The default value is 0."
msgstr ""
-#. 77_|
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1359,7 +1222,6 @@ msgctxt ""
msgid "Scale"
msgstr ""
-#. 0|#O
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1369,7 +1231,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Scales the image to fit the control size.</ahelp>"
msgstr ""
-#. P8oK
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1378,7 +1239,6 @@ msgctxt ""
msgid "Scrollbar"
msgstr ""
-#. %5K)
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1387,7 +1247,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Adds the scrollbar type that you specify to a text box.</ahelp>"
msgstr ""
-#. _.zK
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1397,7 +1256,6 @@ msgctxt ""
msgid "Scroll value"
msgstr ""
-#. g1(Z
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1407,7 +1265,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the initial value of a scrollbar control. This determines the position of the scrollbar slider.</ahelp>"
msgstr ""
-#. [a1p
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1417,7 +1274,6 @@ msgctxt ""
msgid "Scroll value max."
msgstr ""
-#. Dg7K
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1427,7 +1283,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the maximum value of a scrollbar control.</ahelp>"
msgstr ""
-#. H8$W
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1436,7 +1291,6 @@ msgctxt ""
msgid "Scroll value min."
msgstr ""
-#. @9F{
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1445,7 +1299,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the minimum value of a scrollbar control.</ahelp>"
msgstr ""
-#. E_7-
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1454,7 +1307,6 @@ msgctxt ""
msgid "Show handles"
msgstr ""
-#. PT-2
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1463,7 +1315,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies whether the handles of the nodes should be displayed.</ahelp>"
msgstr ""
-#. v%?Z
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1472,7 +1323,6 @@ msgctxt ""
msgid "The handles are dotted lines that visualize the hierarchy of the tree control."
msgstr ""
-#. Q-:]
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1481,7 +1331,6 @@ msgctxt ""
msgid "The default value is TRUE."
msgstr ""
-#. H(1\
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1490,7 +1339,6 @@ msgctxt ""
msgid "Show root handles"
msgstr ""
-#. (}+q
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1499,7 +1347,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies whether the handles of the nodes should also be displayed at root level.</ahelp>"
msgstr ""
-#. rqs$
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1508,7 +1355,6 @@ msgctxt ""
msgid "The default value is TRUE."
msgstr ""
-#. /%nh
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1517,7 +1363,6 @@ msgctxt ""
msgid "Selection"
msgstr ""
-#. 4.`(
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1526,7 +1371,6 @@ msgctxt ""
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 ""
-#. S=eZ
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1535,7 +1379,6 @@ msgctxt ""
msgid "Click the <emph>...</emph> button to open the <emph>Selection</emph> dialog."
msgstr ""
-#. qtTg
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1544,7 +1387,6 @@ msgctxt ""
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 ""
-#. MK0A
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1553,7 +1395,6 @@ msgctxt ""
msgid "Selection type"
msgstr ""
-#. AMKs
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1562,7 +1403,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies the selection mode that is enabled for this tree control.</ahelp>"
msgstr ""
-#. +wE2
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1572,7 +1412,6 @@ msgctxt ""
msgid "Spin Button"
msgstr ""
-#. (DiD
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1582,7 +1421,6 @@ msgctxt ""
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 ""
-#. .VqC
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1592,7 +1430,6 @@ msgctxt ""
msgid "State"
msgstr ""
-#. PO|T
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1602,7 +1439,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select the selection state of the current control.</ahelp>"
msgstr ""
-#. z1WB
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1612,7 +1448,6 @@ msgctxt ""
msgid "Strict format"
msgstr ""
-#. gAV`
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1622,7 +1457,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to only allow valid characters to be entered in a numerical, currency, date, or time control.</ahelp>"
msgstr ""
-#. KjPb
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1632,7 +1466,6 @@ msgctxt ""
msgid "Tabstop"
msgstr ""
-#. X*Q/
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1642,7 +1475,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select the focus behavior of the current control when using the <emph>Tab</emph> key.</ahelp>"
msgstr ""
-#. bBe=
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1652,7 +1484,6 @@ msgctxt ""
msgid "Default"
msgstr ""
-#. iv8U
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1662,7 +1493,6 @@ msgctxt ""
msgid "Only input controls receive the focus when using the <emph>Tab</emph> key. Controls without input like caption controls are omitted."
msgstr ""
-#. !/Xp
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1672,7 +1502,6 @@ msgctxt ""
msgid "No"
msgstr ""
-#. rjWw
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1682,7 +1511,6 @@ msgctxt ""
msgid "When using the tab key focusing skips the control."
msgstr ""
-#. pYmP
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1692,7 +1520,6 @@ msgctxt ""
msgid "Yes"
msgstr ""
-#. }o{U
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1702,7 +1529,6 @@ msgctxt ""
msgid "The control can be selected with the Tab key."
msgstr ""
-#. P5n1
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1712,7 +1538,6 @@ msgctxt ""
msgid "Thousands Separator"
msgstr ""
-#. qPkC
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1722,7 +1547,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select \"Yes\" to display thousands separator characters in numerical and currency controls.</ahelp>"
msgstr ""
-#. (_M_
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1732,7 +1556,6 @@ msgctxt ""
msgid "Time Format"
msgstr ""
-#. E`QZ
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1742,7 +1565,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select the format to be used for time controls.</ahelp>"
msgstr ""
-#. zhn6
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1752,7 +1574,6 @@ msgctxt ""
msgid "Time max."
msgstr ""
-#. 1[{r
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1762,7 +1583,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the maximum time value for a time control.</ahelp>"
msgstr ""
-#. ZnC}
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1772,7 +1592,6 @@ msgctxt ""
msgid "Time min."
msgstr ""
-#. q]^`
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1782,7 +1601,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the minimum time value for a time control.</ahelp>"
msgstr ""
-#. ~#YA
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1792,7 +1610,6 @@ msgctxt ""
msgid "Title"
msgstr ""
-#. B|ia
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1802,7 +1619,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the title of the dialog. Click the border of the dialog to select the dialog.</ahelp>"
msgstr ""
-#. i)c;
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1812,7 +1628,6 @@ msgctxt ""
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 ""
-#. T=V4
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1822,7 +1637,6 @@ msgctxt ""
msgid "Tristate"
msgstr ""
-#. +9aB
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1832,7 +1646,6 @@ msgctxt ""
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 ""
-#. aLGH
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1842,7 +1655,6 @@ msgctxt ""
msgid "Value"
msgstr ""
-#. `=;J
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1852,7 +1664,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the value for the current control.</ahelp>"
msgstr ""
-#. Ca`]
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1862,7 +1673,6 @@ msgctxt ""
msgid "Value max."
msgstr ""
-#. k]B\
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1872,7 +1682,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the maximum value for the current control.</ahelp>"
msgstr ""
-#. 3f7{
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1882,7 +1691,6 @@ msgctxt ""
msgid "Value min."
msgstr ""
-#. \xHZ
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1892,7 +1700,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the minimum value for the current control.</ahelp>"
msgstr ""
-#. =R1W
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1902,7 +1709,6 @@ msgctxt ""
msgid "Visible size"
msgstr ""
-#. :/7!
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1912,7 +1718,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the length of the slider of a scrollbar control.</ahelp>"
msgstr ""
-#. G;jd
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1922,7 +1727,6 @@ msgctxt ""
msgid "Width"
msgstr ""
-#. 6bKw
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -1932,7 +1736,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the width of the current control or dialog.</ahelp>"
msgstr ""
-#. XoGR
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -1941,7 +1744,6 @@ msgctxt ""
msgid "Blue Function [Runtime]"
msgstr ""
-#. =Cl5
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -1950,7 +1752,6 @@ msgctxt ""
msgid "<bookmark_value>Blue function</bookmark_value>"
msgstr ""
-#. !(8.
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -1960,7 +1761,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Blue Function [Runtime]\">Blue Function [Runtime]</link>"
msgstr ""
-#. DAQN
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -1970,7 +1770,6 @@ msgctxt ""
msgid "Returns the blue component of the specified color code."
msgstr ""
-#. 94UH
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -1980,7 +1779,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. \d#d
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -1990,7 +1788,6 @@ msgctxt ""
msgid "Blue (Color As Long)"
msgstr ""
-#. `T;0
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2000,7 +1797,6 @@ msgctxt ""
msgid "Return value:"
msgstr ""
-#. MF^g
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2010,7 +1806,6 @@ msgctxt ""
msgid "Integer"
msgstr ""
-#. kNc=
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2020,7 +1815,6 @@ msgctxt ""
msgid "Parameter:"
msgstr ""
-#. ^bG2
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2030,7 +1824,6 @@ msgctxt ""
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 ""
-#. e)}(
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2040,7 +1833,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. 8;~O
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2050,7 +1842,6 @@ msgctxt ""
msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
msgstr ""
-#. t?#N
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2060,7 +1851,6 @@ msgctxt ""
msgid "\"red= \" & Red(lVar) & Chr(13)&_"
msgstr ""
-#. 9f3.
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2070,7 +1860,6 @@ msgctxt ""
msgid "\"green= \" & Green(lVar) & Chr(13)&_"
msgstr ""
-#. 3%A,
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
@@ -2080,7 +1869,6 @@ msgctxt ""
msgid "\"blue= \" & Blue(lVar) & Chr(13) , 64,\"colors\""
msgstr ""
-#. QSX4
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2089,7 +1877,6 @@ msgctxt ""
msgid "Comparison Operators [Runtime]"
msgstr ""
-#. I_Ld
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2098,7 +1885,6 @@ msgctxt ""
msgid "<bookmark_value>comparison operators;%PRODUCTNAME Basic</bookmark_value><bookmark_value>operators;comparisons</bookmark_value>"
msgstr ""
-#. l#An
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2108,7 +1894,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Comparison Operators [Runtime]\">Comparison Operators [Runtime]</link>"
msgstr ""
-#. DU^=
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2118,7 +1903,6 @@ msgctxt ""
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 ""
-#. 2bxe
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2128,7 +1912,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. 7Z7p
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2138,7 +1921,6 @@ msgctxt ""
msgid "Result = Expression1 { = | < | > | <= | >= } Expression2"
msgstr ""
-#. U$L@
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2148,7 +1930,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. G.US
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2158,7 +1939,6 @@ msgctxt ""
msgid "<emph>Result:</emph> Boolean expression that specifies the result of the comparison (True, or False)"
msgstr ""
-#. rr*J
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2168,7 +1948,6 @@ msgctxt ""
msgid "<emph>Expression1, Expression2:</emph> Any numeric values or strings that you want to compare."
msgstr ""
-#. `5qH
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2178,7 +1957,6 @@ msgctxt ""
msgid "Comparison operators"
msgstr ""
-#. pREl
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2188,7 +1966,6 @@ msgctxt ""
msgid "= : Equal to"
msgstr ""
-#. +J3]
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2198,7 +1975,6 @@ msgctxt ""
msgid "< : Less than"
msgstr ""
-#. BEZR
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2208,7 +1984,6 @@ msgctxt ""
msgid "> : Greater than"
msgstr ""
-#. $uCg
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2218,7 +1993,6 @@ msgctxt ""
msgid "<= : Less than or equal to"
msgstr ""
-#. __DJ
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2228,7 +2002,6 @@ msgctxt ""
msgid ">= : Greater than or equal to"
msgstr ""
-#. 15\S
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2238,7 +2011,6 @@ msgctxt ""
msgid "<> : Not equal to"
msgstr ""
-#. Tw#9
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2248,7 +2020,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. gma+
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
@@ -2258,7 +2029,6 @@ msgctxt ""
msgid "Dim sRoot As String ' Root directory for file in and output"
msgstr ""
-#. bS?S
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2267,7 +2037,6 @@ msgctxt ""
msgid "Timer Function [Runtime]"
msgstr ""
-#. h22Q
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2276,7 +2045,6 @@ msgctxt ""
msgid "<bookmark_value>Timer function</bookmark_value>"
msgstr ""
-#. vpGo
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2286,7 +2054,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03030303.xhp\" name=\"Timer Function [Runtime]\">Timer Function [Runtime]</link>"
msgstr ""
-#. ;9X`
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2296,7 +2063,6 @@ msgctxt ""
msgid "Returns a value that specifies the number of seconds that have elapsed since midnight."
msgstr ""
-#. 2?:K
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2306,7 +2072,6 @@ msgctxt ""
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 ""
-#. EypB
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2316,7 +2081,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. I[2Z
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2326,7 +2090,6 @@ msgctxt ""
msgid "Timer"
msgstr ""
-#. n#?n
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2336,7 +2099,6 @@ msgctxt ""
msgid "Return value:"
msgstr ""
-#. 9s5}
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2346,7 +2108,6 @@ msgctxt ""
msgid "Date"
msgstr ""
-#. APE`
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2356,7 +2117,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. 0acV
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2366,7 +2126,6 @@ msgctxt ""
msgid "MsgBox lSec,0,\"Seconds since midnight\""
msgstr ""
-#. qX*3
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
@@ -2376,7 +2135,6 @@ msgctxt ""
msgid "MsgBox Right(\"00\" & lHour , 2) & \":\"& Right(\"00\" & lMin , 2) & \":\" & Right(\"00\" & lSec , 2) ,0,\"The time is\""
msgstr ""
-#. K3ma
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2385,7 +2143,6 @@ msgctxt ""
msgid "Dir Function [Runtime]"
msgstr ""
-#. d!$b
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2394,7 +2151,6 @@ msgctxt ""
msgid "<bookmark_value>Dir function</bookmark_value>"
msgstr ""
-#. 50[7
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2404,7 +2160,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020404.xhp\" name=\"Dir Function [Runtime]\">Dir Function [Runtime]</link>"
msgstr ""
-#. \h)B
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2414,7 +2169,6 @@ msgctxt ""
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 ""
-#. $=N|
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2424,7 +2178,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. g;2J
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2434,7 +2187,6 @@ msgctxt ""
msgid "Dir [(Text As String) [, Attrib As Integer]]"
msgstr ""
-#. L9k(
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2444,7 +2196,6 @@ msgctxt ""
msgid "Return value:"
msgstr ""
-#. L5WV
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2454,7 +2205,6 @@ msgctxt ""
msgid "String"
msgstr ""
-#. #J[c
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2464,7 +2214,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. 58@D
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2474,7 +2223,6 @@ msgctxt ""
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 ""
-#. [d6[
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2484,7 +2232,6 @@ msgctxt ""
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 ""
-#. pSkB
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2494,7 +2241,6 @@ msgctxt ""
msgid "0 : Normal files."
msgstr ""
-#. m\l(
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2504,7 +2250,6 @@ msgctxt ""
msgid "16 : Returns the name of the directory only."
msgstr ""
-#. hfrM
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2514,7 +2259,6 @@ msgctxt ""
msgid "Use this attribute to check if a file or directory exists, or to determine all files and folders in a specific directory."
msgstr ""
-#. :*Th
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2524,7 +2268,6 @@ msgctxt ""
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 ""
-#. ]S9T
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2534,7 +2277,6 @@ msgctxt ""
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 ""
-#. ^M5.
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2544,7 +2286,6 @@ msgctxt ""
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 ""
-#. ),T!
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2554,7 +2295,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. EHQ`
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2564,7 +2304,6 @@ msgctxt ""
msgid "' Displays all files and directories"
msgstr ""
-#. Vf8!
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2574,7 +2313,6 @@ msgctxt ""
msgid "sDir=\"Directories:\""
msgstr ""
-#. 9)..
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
@@ -2584,7 +2322,6 @@ msgctxt ""
msgid "' Get the directories"
msgstr ""
-#. )?Iv
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2593,7 +2330,6 @@ msgctxt ""
msgid "\"^\" Operator [Runtime]"
msgstr ""
-#. ;TFR
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2602,7 +2338,6 @@ msgctxt ""
msgid "<bookmark_value>\"^\" operator (mathematical)</bookmark_value>"
msgstr ""
-#. PO`7
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2612,7 +2347,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03070500.xhp\">\"^\" Operator [Runtime]</link>"
msgstr ""
-#. 0ml!
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2622,7 +2356,6 @@ msgctxt ""
msgid "Raises a number to a power."
msgstr ""
-#. 7:7?
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2632,7 +2365,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. x/-8
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2642,7 +2374,6 @@ msgctxt ""
msgid "Result = Expression ^ Exponent"
msgstr ""
-#. qr`@
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2652,7 +2383,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. eFhL
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2662,7 +2392,6 @@ msgctxt ""
msgid "<emph>Result:</emph> Any numerical expression that contains the result of the number raised to a power."
msgstr ""
-#. sf1J
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2672,7 +2401,6 @@ msgctxt ""
msgid "<emph>Expression:</emph> Numerical value that you want to raise to a power."
msgstr ""
-#. W@nm
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2682,7 +2410,6 @@ msgctxt ""
msgid "<emph>Exponent:</emph> The value of the power that you want to raise the expression to."
msgstr ""
-#. Xl0I
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2692,7 +2419,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. Een*
#: 03070500.xhp
msgctxt ""
"03070500.xhp\n"
@@ -2702,7 +2428,6 @@ msgctxt ""
msgid "Print Exp ( 23 * Log( 12.345 ) ) ' Raises by forming a logarithm"
msgstr ""
-#. J2U~
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2711,7 +2436,6 @@ msgctxt ""
msgid "Sgn Function [Runtime]"
msgstr ""
-#. g}_;
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2720,7 +2444,6 @@ msgctxt ""
msgid "<bookmark_value>Sgn function</bookmark_value>"
msgstr ""
-#. =pP}
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2730,7 +2453,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03080701.xhp\" name=\"Sgn Function [Runtime]\">Sgn Function [Runtime]</link>"
msgstr ""
-#. $EB%
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2740,7 +2462,6 @@ msgctxt ""
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 ""
-#. LDj/
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2750,7 +2471,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. !*t*
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2760,7 +2480,6 @@ msgctxt ""
msgid "Sgn (Number)"
msgstr ""
-#. V|mw
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2770,7 +2489,6 @@ msgctxt ""
msgid "Return value:"
msgstr ""
-#. y\C:
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2780,7 +2498,6 @@ msgctxt ""
msgid "Integer"
msgstr ""
-#. g_S:
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2790,7 +2507,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. yUgV
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2800,7 +2516,6 @@ msgctxt ""
msgid "<emph>Number:</emph> Numeric expression that determines the value that is returned by the function."
msgstr ""
-#. F^)(
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2810,7 +2525,6 @@ msgctxt ""
msgid "NumExpression"
msgstr ""
-#. 53x/
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2820,7 +2534,6 @@ msgctxt ""
msgid "Return value"
msgstr ""
-#. LVHP
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2830,7 +2543,6 @@ msgctxt ""
msgid "negative"
msgstr ""
-#. Eg9+
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2840,7 +2552,6 @@ msgctxt ""
msgid "Sgn returns -1."
msgstr ""
-#. WS)T
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2850,7 +2561,6 @@ msgctxt ""
msgid "0"
msgstr ""
-#. 9J?Y
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2860,7 +2570,6 @@ msgctxt ""
msgid "Sgn returns 0."
msgstr ""
-#. j[\j
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2870,7 +2579,6 @@ msgctxt ""
msgid "positive"
msgstr ""
-#. 5G}l
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2880,7 +2588,6 @@ msgctxt ""
msgid "Sgn returns 1."
msgstr ""
-#. m`V3
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2890,7 +2597,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. 9Ej\
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2900,7 +2606,6 @@ msgctxt ""
msgid "Print sgn(-10) ' returns -1"
msgstr ""
-#. {4m~
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2910,7 +2615,6 @@ msgctxt ""
msgid "Print sgn(0) ' returns 0"
msgstr ""
-#. r:k{
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
@@ -2920,7 +2624,6 @@ msgctxt ""
msgid "Print sgn(10) ' returns 1"
msgstr ""
-#. IqOm
#: 03090400.xhp
msgctxt ""
"03090400.xhp\n"
@@ -2929,7 +2632,6 @@ msgctxt ""
msgid "Further Statements"
msgstr ""
-#. u*9X
#: 03090400.xhp
msgctxt ""
"03090400.xhp\n"
@@ -2939,7 +2641,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Further Statements\">Further Statements</link>"
msgstr ""
-#. 0tqr
#: 03090400.xhp
msgctxt ""
"03090400.xhp\n"
@@ -2949,7 +2650,6 @@ msgctxt ""
msgid "Statements that do not belong to any of the other runtime categories are described here."
msgstr ""
-#. fShM
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -2958,7 +2658,6 @@ msgctxt ""
msgid "LBound Function [Runtime]"
msgstr ""
-#. $U(5
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -2967,7 +2666,6 @@ msgctxt ""
msgid "<bookmark_value>LBound function</bookmark_value>"
msgstr ""
-#. az{9
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -2977,7 +2675,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"LBound Function [Runtime]\">LBound Function [Runtime]</link>"
msgstr ""
-#. vG?)
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -2987,7 +2684,6 @@ msgctxt ""
msgid "Returns the lower boundary of an array."
msgstr ""
-#. ,i\]
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -2997,7 +2693,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. Ya;V
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3007,7 +2702,6 @@ msgctxt ""
msgid "LBound (ArrayName [, Dimension])"
msgstr ""
-#. 7D-M
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3017,7 +2711,6 @@ msgctxt ""
msgid "Return value:"
msgstr ""
-#. fx9)
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3027,7 +2720,6 @@ msgctxt ""
msgid "Integer"
msgstr ""
-#. RTlQ
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3037,7 +2729,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. M$WD
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3047,7 +2738,6 @@ msgctxt ""
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 ""
-#. mck}
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3057,7 +2747,6 @@ msgctxt ""
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 ""
-#. 9@:o
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3067,7 +2756,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. g@Og
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3077,7 +2765,6 @@ msgctxt ""
msgid "Print LBound(sVar()) ' Returns 10"
msgstr ""
-#. Ll%f
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3087,7 +2774,6 @@ msgctxt ""
msgid "Print UBound(sVar()) ' Returns 20"
msgstr ""
-#. ?P@L
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3097,7 +2783,6 @@ msgctxt ""
msgid "Print LBound(sVar(),2) ' Returns 5"
msgstr ""
-#. X%Di
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
@@ -3107,7 +2792,6 @@ msgctxt ""
msgid "Print UBound(sVar(),2) ' Returns 70"
msgstr ""
-#. (?7:
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3116,7 +2800,6 @@ msgctxt ""
msgid "UBound Function [Runtime]"
msgstr ""
-#. S/!!
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3125,7 +2808,6 @@ msgctxt ""
msgid "<bookmark_value>UBound function</bookmark_value>"
msgstr ""
-#. ,$5Y
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3135,7 +2817,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03103000.xhp\" name=\"UBound Function [Runtime]\">UBound Function [Runtime]</link>"
msgstr ""
-#. P!ad
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3145,7 +2826,6 @@ msgctxt ""
msgid "Returns the upper boundary of an array."
msgstr ""
-#. =5fw
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3155,7 +2835,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. ?%eL
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3165,7 +2844,6 @@ msgctxt ""
msgid "UBound (ArrayName [, Dimension])"
msgstr ""
-#. O0yV
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3175,7 +2853,6 @@ msgctxt ""
msgid "Return value:"
msgstr ""
-#. q$xu
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3185,7 +2862,6 @@ msgctxt ""
msgid "Integer"
msgstr ""
-#. +[T8
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3195,7 +2871,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. 4.O/
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3205,7 +2880,6 @@ msgctxt ""
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 ""
-#. 3l-3
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3215,7 +2889,6 @@ msgctxt ""
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 ""
-#. #CKR
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3225,7 +2898,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. -clZ
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3235,7 +2907,6 @@ msgctxt ""
msgid "Print LBound(sVar()) ' Returns 10"
msgstr ""
-#. X[Q3
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3245,7 +2916,6 @@ msgctxt ""
msgid "Print UBound(sVar()) ' Returns 20"
msgstr ""
-#. k:fN
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3255,7 +2925,6 @@ msgctxt ""
msgid "Print LBound(sVar(),2) ' Returns 5"
msgstr ""
-#. ;+)/
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
@@ -3265,7 +2934,6 @@ msgctxt ""
msgid "Print UBound(sVar(),2) ' Returns 70"
msgstr ""
-#. 7XzF
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
@@ -3274,7 +2942,6 @@ msgctxt ""
msgid "Public Statement [Runtime]"
msgstr ""
-#. PF3h
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
@@ -3283,7 +2950,6 @@ msgctxt ""
msgid "<bookmark_value>Public statement</bookmark_value>"
msgstr ""
-#. _2lr
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
@@ -3293,7 +2959,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03103400.xhp\" name=\"Public Statement [Runtime]\">Public Statement [Runtime]</link>"
msgstr ""
-#. ]qAA
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
@@ -3303,7 +2968,6 @@ msgctxt ""
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 ""
-#. Nm8f
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
@@ -3313,7 +2977,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. ypk$
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
@@ -3323,7 +2986,6 @@ msgctxt ""
msgid "Public VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
msgstr ""
-#. UqOq
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
@@ -3333,7 +2995,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. .l95
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3342,7 +3003,6 @@ msgctxt ""
msgid "CreateUnoValue Function [Runtime]"
msgstr ""
-#. `,o4
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3351,7 +3011,6 @@ msgctxt ""
msgid "<bookmark_value>CreateUnoValue function</bookmark_value>"
msgstr ""
-#. qAD*
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3361,7 +3020,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"CreateUnoValue Function [Runtime]\">CreateUnoValue Function [Runtime]</link>"
msgstr ""
-#. .rjF
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3371,7 +3029,6 @@ msgctxt ""
msgid "Returns an object that represents a strictly typed value referring to the Uno type system."
msgstr ""
-#. cvK%
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3381,7 +3038,6 @@ msgctxt ""
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 ""
-#. F$Xg
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3391,7 +3047,6 @@ msgctxt ""
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 ""
-#. -43$
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3401,7 +3056,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. /_:b
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3411,7 +3065,6 @@ msgctxt ""
msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) to get a byte sequence."
msgstr ""
-#. cx#[
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3421,7 +3074,6 @@ msgctxt ""
msgid "If CreateUnoValue cannot be converted to the specified Uno type, and error occurs. For the conversion, the TypeConverter service is used."
msgstr ""
-#. YC6#
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3431,7 +3083,6 @@ msgctxt ""
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 ""
-#. RU/F
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3441,7 +3092,6 @@ msgctxt ""
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 ""
-#. u4hQ
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
@@ -3451,7 +3101,6 @@ msgctxt ""
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 ""
-#. 9l0^
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3460,7 +3109,6 @@ msgctxt ""
msgid "Left Function [Runtime]"
msgstr ""
-#. Vi+b
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3469,7 +3117,6 @@ msgctxt ""
msgid "<bookmark_value>Left function</bookmark_value>"
msgstr ""
-#. n=BZ
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3479,7 +3126,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function [Runtime]\">Left Function [Runtime]</link>"
msgstr ""
-#. ba2?
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3489,7 +3135,6 @@ msgctxt ""
msgid "Returns the number of leftmost characters that you specify of a string expression."
msgstr ""
-#. 3yR:
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3499,7 +3144,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. )?m~
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3509,7 +3153,6 @@ msgctxt ""
msgid "Left (Text As String, n As Long)"
msgstr ""
-#. 0m-[
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3519,7 +3162,6 @@ msgctxt ""
msgid "Return value:"
msgstr ""
-#. .(s,
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3529,7 +3171,6 @@ msgctxt ""
msgid "String"
msgstr ""
-#. 7LzP
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3539,7 +3180,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. GQq^
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3549,7 +3189,6 @@ msgctxt ""
msgid "<emph>Text:</emph> Any string expression that you want to return the leftmost characters from."
msgstr ""
-#. 5|J)
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3559,7 +3198,6 @@ msgctxt ""
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 ""
-#. (peG
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3569,7 +3207,6 @@ msgctxt ""
msgid "The following example converts a date in YYYY.MM.DD format to MM/DD/YYYY format."
msgstr ""
-#. P(22
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3579,7 +3216,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. ,C]9
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
@@ -3589,7 +3225,6 @@ msgctxt ""
msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
msgstr ""
-#. ?4LT
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3598,7 +3233,6 @@ msgctxt ""
msgid "Name Statement [Runtime]"
msgstr ""
-#. NTgW
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3607,7 +3241,6 @@ msgctxt ""
msgid "<bookmark_value>Name statement</bookmark_value>"
msgstr ""
-#. )[6r
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3617,7 +3250,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020412.xhp\" name=\"Name Statement [Runtime]\">Name Statement [Runtime]</link>"
msgstr ""
-#. [-i[
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3627,7 +3259,6 @@ msgctxt ""
msgid "Renames an existing file or directory."
msgstr ""
-#. R5Q@
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3637,7 +3268,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. nEQQ
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3647,7 +3277,6 @@ msgctxt ""
msgid "Name OldName As String As NewName As String"
msgstr ""
-#. $\Ul
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3657,7 +3286,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. q]t\
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3667,7 +3295,6 @@ msgctxt ""
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 ""
-#. CVw=
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3677,7 +3304,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. +:6V
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
@@ -3687,7 +3313,6 @@ msgctxt ""
msgid "MsgBox \"File already exists\""
msgstr ""
-#. @4%H
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3696,7 +3321,6 @@ msgctxt ""
msgid "EqualUnoObjects Function [Runtime]"
msgstr ""
-#. unM\
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3705,7 +3329,6 @@ msgctxt ""
msgid "<bookmark_value>EqualUnoObjects function</bookmark_value>"
msgstr ""
-#. 3e/Q
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3715,7 +3338,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function [Runtime]\">EqualUnoObjects Function [Runtime]</link>"
msgstr ""
-#. =\Xa
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3725,7 +3347,6 @@ msgctxt ""
msgid "Returns True if the two specified Basic Uno objects represent the same Uno object instance."
msgstr ""
-#. )Hn^
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3735,7 +3356,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. ;;7P
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3745,7 +3365,6 @@ msgctxt ""
msgid "EqualUnoObjects( oObj1, oObj2 )"
msgstr ""
-#. _g7n
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3755,7 +3374,6 @@ msgctxt ""
msgid "Return value:"
msgstr ""
-#. `oJI
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3765,7 +3383,6 @@ msgctxt ""
msgid "Bool"
msgstr ""
-#. 9vf)
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3775,7 +3392,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. /qDZ
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3785,7 +3401,6 @@ msgctxt ""
msgid "// Copy of objects -> same instance"
msgstr ""
-#. Qi~Q
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3795,7 +3410,6 @@ msgctxt ""
msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
msgstr ""
-#. ?c?!
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3805,7 +3419,6 @@ msgctxt ""
msgid "oIntro2 = oIntrospection"
msgstr ""
-#. C9[!
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3815,7 +3428,6 @@ msgctxt ""
msgid "print EqualUnoObjects( oIntrospection, oIntro2 )"
msgstr ""
-#. (WP_
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3825,7 +3437,6 @@ msgctxt ""
msgid "// Copy of structs as value -> new instance"
msgstr ""
-#. YUL4
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3835,7 +3446,6 @@ msgctxt ""
msgid "Dim Struct1 as new com.sun.star.beans.Property"
msgstr ""
-#. kRos
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3845,7 +3455,6 @@ msgctxt ""
msgid "Struct2 = Struct1"
msgstr ""
-#. 8iE_
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
@@ -3855,7 +3464,6 @@ msgctxt ""
msgid "print EqualUnoObjects( Struct1, Struct2 )"
msgstr ""
-#. ;A.4
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3864,7 +3472,6 @@ msgctxt ""
msgid "FileAttr-Function [Runtime]"
msgstr ""
-#. 2%k9
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3873,7 +3480,6 @@ msgctxt ""
msgid "<bookmark_value>FileAttr function</bookmark_value>"
msgstr ""
-#. ={4K
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3883,7 +3489,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"FileAttr-Function [Runtime]\">FileAttr Function [Runtime]</link>"
msgstr ""
-#. !]o)
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3893,7 +3498,6 @@ msgctxt ""
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 ""
-#. .@pU
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3903,7 +3507,6 @@ msgctxt ""
msgid "If you use a 32-Bit operating system, you cannot use the FileAttr-Function to determine the file access number."
msgstr ""
-#. ]=r@
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3913,7 +3516,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr ""
-#. e_.0
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3923,7 +3525,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. `(9^
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3933,7 +3534,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr ""
-#. W|-~
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3943,7 +3543,6 @@ msgctxt ""
msgid "Return value:"
msgstr ""
-#. ihPc
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3953,7 +3552,6 @@ msgctxt ""
msgid "Integer"
msgstr ""
-#. JBlI
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3963,7 +3561,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. #ulr
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3973,7 +3570,6 @@ msgctxt ""
msgid "<emph>FileNumber:</emph> The number of the file that was opened with the Open statement."
msgstr ""
-#. lNet
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3983,7 +3579,6 @@ msgctxt ""
msgid "<emph>Attribute:</emph> Integer expression that indicates the type of file information that you want to return. The following values are possible:"
msgstr ""
-#. (R).
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -3993,7 +3588,6 @@ msgctxt ""
msgid "1: The FileAttr-Function indicates the access mode of the file."
msgstr ""
-#. ),R7
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4003,7 +3597,6 @@ msgctxt ""
msgid "2: The FileAttr-Function returns the file access number of the operating system."
msgstr ""
-#. M/|;
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4013,7 +3606,6 @@ msgctxt ""
msgid "If you specify a parameter attribute with a value of 1, the following return values apply:"
msgstr ""
-#. 0MhK
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4023,7 +3615,6 @@ msgctxt ""
msgid "1 - INPUT (file open for input)"
msgstr ""
-#. I(+L
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4033,7 +3624,6 @@ msgctxt ""
msgid "2 - OUTPUT (file open for output)"
msgstr ""
-#. n5WO
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4043,7 +3633,6 @@ msgctxt ""
msgid "4 - RANDOM (file open for random access)"
msgstr ""
-#. ^ULb
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4053,7 +3642,6 @@ msgctxt ""
msgid "8 - APPEND (file open for appending)"
msgstr ""
-#. jr;E
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4063,7 +3651,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr ""
-#. B$V4
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4073,7 +3660,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. mB.]
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4083,7 +3669,6 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr ""
-#. Bmbe
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4093,7 +3678,6 @@ msgctxt ""
msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
msgstr ""
-#. xk4N
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
@@ -4103,7 +3687,6 @@ msgctxt ""
msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
msgstr ""
-#. E0%9
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4112,7 +3695,6 @@ msgctxt ""
msgid "Randomize Statement [Runtime]"
msgstr ""
-#. VfN3
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4121,7 +3703,6 @@ msgctxt ""
msgid "<bookmark_value>Randomize statement</bookmark_value>"
msgstr ""
-#. Q*;%
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4131,7 +3712,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03080301.xhp\" name=\"Randomize Statement [Runtime]\">Randomize Statement [Runtime]</link>"
msgstr ""
-#. Tyy6
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4141,7 +3721,6 @@ msgctxt ""
msgid "Initializes the random-number generator."
msgstr ""
-#. HF,Y
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4151,7 +3730,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. 6v=g
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4161,7 +3739,6 @@ msgctxt ""
msgid "Randomize [Number]"
msgstr ""
-#. 622S
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4171,7 +3748,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. EP_^
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4181,7 +3757,6 @@ msgctxt ""
msgid "<emph>Number:</emph> Any integer value that initializes the random-number generator."
msgstr ""
-#. Q.O*
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4191,7 +3766,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. #$Bb
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4201,7 +3775,6 @@ msgctxt ""
msgid "iVar = Int((10 * Rnd) ) ' Range from 0 To 9"
msgstr ""
-#. (i,2
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
@@ -4211,7 +3784,6 @@ msgctxt ""
msgid "MsgBox sText,0,\"Spectral Distribution\""
msgstr ""
-#. qaF-
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4220,7 +3792,6 @@ msgctxt ""
msgid "DimArray Function [Runtime]"
msgstr ""
-#. Qfd|
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4229,7 +3800,6 @@ msgctxt ""
msgid "<bookmark_value>DimArray function</bookmark_value>"
msgstr ""
-#. 0FBv
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4239,7 +3809,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray Function [Runtime]\">DimArray Function [Runtime]</link>"
msgstr ""
-#. Shnq
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4249,7 +3818,6 @@ msgctxt ""
msgid "Returns a Variant array."
msgstr ""
-#. wL0y
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4259,7 +3827,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. EP#8
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4269,7 +3836,6 @@ msgctxt ""
msgid "DimArray ( Argument list)"
msgstr ""
-#. .TvI
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4279,7 +3845,6 @@ msgctxt ""
msgid "See also <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Array</link>"
msgstr ""
-#. fP[Q
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4289,7 +3854,6 @@ msgctxt ""
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 ""
-#. Fs%H
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4299,7 +3863,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. vpqI
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4309,7 +3872,6 @@ msgctxt ""
msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
msgstr ""
-#. ^^_[
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4319,7 +3881,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. UiOy
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
@@ -4329,7 +3890,6 @@ msgctxt ""
msgid "DimArray( 2, 2, 4 ) is the same as DIM a( 2, 2, 4 )"
msgstr ""
-#. sRD\
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4338,7 +3898,6 @@ msgctxt ""
msgid "TypeName Function; VarType Function[Runtime]"
msgstr ""
-#. ?G{^
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4347,7 +3906,6 @@ msgctxt ""
msgid "<bookmark_value>TypeName function</bookmark_value><bookmark_value>VarType function</bookmark_value>"
msgstr ""
-#. SyVt
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4357,7 +3915,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function[Runtime]\">TypeName Function; VarType Function[Runtime]</link>"
msgstr ""
-#. O.^c
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4367,7 +3924,6 @@ msgctxt ""
msgid "Returns a string (TypeName) or a numeric value (VarType) that contains information for a variable."
msgstr ""
-#. 1(0h
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4377,7 +3933,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. +*hA
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4387,7 +3942,6 @@ msgctxt ""
msgid "TypeName (Variable)VarType (Variable)"
msgstr ""
-#. 0Ydn
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4397,7 +3951,6 @@ msgctxt ""
msgid "Return value:"
msgstr ""
-#. E6aC
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4407,7 +3960,6 @@ msgctxt ""
msgid "String; Integer"
msgstr ""
-#. aoC_
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4417,7 +3969,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. x?rb
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4427,7 +3978,6 @@ msgctxt ""
msgid "<emph>Variable:</emph> The variable that you want to determine the type of. You can use the following values:"
msgstr ""
-#. mcd7
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4437,7 +3987,6 @@ msgctxt ""
msgid "key word"
msgstr ""
-#. Yx:-
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4447,7 +3996,6 @@ msgctxt ""
msgid "VarType"
msgstr ""
-#. i698
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4457,7 +4005,6 @@ msgctxt ""
msgid "Variable type"
msgstr ""
-#. TxUT
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4467,7 +4014,6 @@ msgctxt ""
msgid "Boolean"
msgstr ""
-#. !,V6
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4477,7 +4023,6 @@ msgctxt ""
msgid "11"
msgstr ""
-#. G~4(
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4487,7 +4032,6 @@ msgctxt ""
msgid "Boolean variable"
msgstr ""
-#. *O9O
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4497,7 +4041,6 @@ msgctxt ""
msgid "Date"
msgstr ""
-#. uLaD
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4507,7 +4050,6 @@ msgctxt ""
msgid "7"
msgstr ""
-#. 25)e
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4517,7 +4059,6 @@ msgctxt ""
msgid "Date variable"
msgstr ""
-#. CPLZ
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4527,7 +4068,6 @@ msgctxt ""
msgid "Double"
msgstr ""
-#. p3EX
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4537,7 +4077,6 @@ msgctxt ""
msgid "5"
msgstr ""
-#. WsVl
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4547,7 +4086,6 @@ msgctxt ""
msgid "Double floating point variable"
msgstr ""
-#. SIw-
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4557,7 +4095,6 @@ msgctxt ""
msgid "Integer"
msgstr ""
-#. 9rRf
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4567,7 +4104,6 @@ msgctxt ""
msgid "2"
msgstr ""
-#. \apP
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4577,7 +4113,6 @@ msgctxt ""
msgid "Integer variable"
msgstr ""
-#. L^Wp
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4587,7 +4122,6 @@ msgctxt ""
msgid "Long"
msgstr ""
-#. cft#
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4597,7 +4131,6 @@ msgctxt ""
msgid "3"
msgstr ""
-#. 4gq7
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4607,7 +4140,6 @@ msgctxt ""
msgid "Long integer variable"
msgstr ""
-#. \aBX
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4617,7 +4149,6 @@ msgctxt ""
msgid "Object"
msgstr ""
-#. 7(6i
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4627,7 +4158,6 @@ msgctxt ""
msgid "9"
msgstr ""
-#. pz-!
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4637,7 +4167,6 @@ msgctxt ""
msgid "Object variable"
msgstr ""
-#. T/r,
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4647,7 +4176,6 @@ msgctxt ""
msgid "Single"
msgstr ""
-#. Hp\v
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4657,7 +4185,6 @@ msgctxt ""
msgid "4"
msgstr ""
-#. )j\w
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4667,7 +4194,6 @@ msgctxt ""
msgid "Single floating-point variable"
msgstr ""
-#. /J!v
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4677,7 +4203,6 @@ msgctxt ""
msgid "String"
msgstr ""
-#. nf,l
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4687,7 +4212,6 @@ msgctxt ""
msgid "8"
msgstr ""
-#. mnx_
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4697,7 +4221,6 @@ msgctxt ""
msgid "String variable"
msgstr ""
-#. l!]e
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4707,7 +4230,6 @@ msgctxt ""
msgid "Variant"
msgstr ""
-#. PcCp
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4717,7 +4239,6 @@ msgctxt ""
msgid "12"
msgstr ""
-#. a,^Q
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4727,7 +4248,6 @@ msgctxt ""
msgid "Variant variable (can contain all types specified by the definition)"
msgstr ""
-#. xyd9
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4737,7 +4257,6 @@ msgctxt ""
msgid "Empty"
msgstr ""
-#. m(+\
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4747,7 +4266,6 @@ msgctxt ""
msgid "0"
msgstr ""
-#. J%N!
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4757,7 +4275,6 @@ msgctxt ""
msgid "Variable is not initialized"
msgstr ""
-#. _]}]
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4767,7 +4284,6 @@ msgctxt ""
msgid "Null"
msgstr ""
-#. *8BY
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4777,7 +4293,6 @@ msgctxt ""
msgid "1"
msgstr ""
-#. QRtd
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4787,7 +4302,6 @@ msgctxt ""
msgid "No valid data"
msgstr ""
-#. FyQa
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4797,7 +4311,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. n/Dl
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
@@ -4807,7 +4320,6 @@ msgctxt ""
msgid "TypeName(lVar) & \" \" & VarType(lVar),0,\"Some types In $[officename] Basic\""
msgstr ""
-#. OMUH
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4816,7 +4328,6 @@ msgctxt ""
msgid "Hour Function [Runtime]"
msgstr ""
-#. /\`E
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4825,7 +4336,6 @@ msgctxt ""
msgid "<bookmark_value>Hour function</bookmark_value>"
msgstr ""
-#. e:[[
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4835,7 +4345,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour Function [Runtime]\">Hour Function [Runtime]</link>"
msgstr ""
-#. 1Gq2
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4845,7 +4354,6 @@ msgctxt ""
msgid "Returns the hour from a time value that is generated by the TimeSerial or the TimeValue function."
msgstr ""
-#. J*+}
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4855,7 +4363,6 @@ msgctxt ""
msgid "Syntax:"
msgstr ""
-#. k4,E
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4865,7 +4372,6 @@ msgctxt ""
msgid "Hour (Number)"
msgstr ""
-#. @gPA
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4875,7 +4381,6 @@ msgctxt ""
msgid "Return value:"
msgstr ""
-#. S]R`
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4885,7 +4390,6 @@ msgctxt ""
msgid "Integer"
msgstr ""
-#. llUh
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4895,7 +4399,6 @@ msgctxt ""
msgid "Parameters:"
msgstr ""
-#. *JmV
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4905,7 +4408,6 @@ msgctxt ""
msgid "<emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the hour value."
msgstr ""
-#. ~VeE
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4915,7 +4417,6 @@ msgctxt ""
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 ""
-#. [sR.
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4925,7 +4426,6 @@ msgctxt ""
msgid "Print Hour(TimeSerial(12,30,41))"
msgstr ""
-#. q]+)
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4935,7 +4435,6 @@ msgctxt ""
msgid "returns the value 12."
msgstr ""
-#. TAk)
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4945,7 +4444,6 @@ msgctxt ""
msgid "Example:"
msgstr ""
-#. I8]m
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4955,7 +4453,6 @@ msgctxt ""
msgid "Sub ExampleHour"
msgstr ""
-#. Cpi-
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
@@ -4964,36566 +4461,3 @@ msgctxt ""
"help.text"
msgid "Print \"The current hour is \" & Hour( Now )"
msgstr ""
-
-#. D]#~
-#: 03030201.xhp
-msgctxt ""
-"03030201.xhp\n"
-"par_id3153145\n"
-"15\n"
-"help.text"
-msgid "End Sub"
-msgstr ""
-
-#. j%qT
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"tit\n"
-"help.text"
-msgid "End Statement [Runtime]"
-msgstr ""
-
-#. K~rM
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"bm_id3150771\n"
-"help.text"
-msgid "<bookmark_value>End statement</bookmark_value>"
-msgstr ""
-
-#. %@Kc
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"hd_id3150771\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"End Statement [Runtime]\">End Statement [Runtime]</link>"
-msgstr ""
-
-#. tIn\
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3153126\n"
-"2\n"
-"help.text"
-msgid "Ends a procedure or block."
-msgstr ""
-
-#. *P3P
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"hd_id3147264\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. SO;+
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3148552\n"
-"4\n"
-"help.text"
-msgid "End, End Function, End If, End Select, End Sub"
-msgstr ""
-
-#. A/2Q
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"hd_id3149456\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. g-$S
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3150398\n"
-"6\n"
-"help.text"
-msgid "Use the End statement as follows:"
-msgstr ""
-
-#. j}Im
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"hd_id3154366\n"
-"7\n"
-"help.text"
-msgid "Statement"
-msgstr ""
-
-#. K]c7
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3151043\n"
-"8\n"
-"help.text"
-msgid "End: Is not required, but can be entered anywhere within a procedure to end the program execution."
-msgstr ""
-
-#. [`6q
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3145171\n"
-"9\n"
-"help.text"
-msgid "End Function: Ends a <emph>Function</emph> statement."
-msgstr ""
-
-#. 0@vs
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3153192\n"
-"10\n"
-"help.text"
-msgid "End If: Marks the end of a <emph>If...Then...Else</emph> block."
-msgstr ""
-
-#. `kN?
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3148451\n"
-"11\n"
-"help.text"
-msgid "End Select: Marks the end of a <emph>Select Case</emph> block."
-msgstr ""
-
-#. n],8
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3155131\n"
-"12\n"
-"help.text"
-msgid "End Sub: Ends a <emph>Sub</emph> statement."
-msgstr ""
-
-#. k;j]
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"hd_id3146120\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. [TtR
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3152887\n"
-"19\n"
-"help.text"
-msgid "Print \"Number from 1 to 5\""
-msgstr ""
-
-#. ZkTf
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3148618\n"
-"21\n"
-"help.text"
-msgid "Print \"Number from 6 to 8\""
-msgstr ""
-
-#. jKo:
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3147436\n"
-"23\n"
-"help.text"
-msgid "Print \"Greater than 8\""
-msgstr ""
-
-#. fKkS
-#: 03090404.xhp
-msgctxt ""
-"03090404.xhp\n"
-"par_id3150418\n"
-"25\n"
-"help.text"
-msgid "Print \"Outside range 1 to 10\""
-msgstr ""
-
-#. CnCT
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"tit\n"
-"help.text"
-msgid "HasUnoInterfaces Function [Runtime]"
-msgstr ""
-
-#. I@SF
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"bm_id3149987\n"
-"help.text"
-msgid "<bookmark_value>HasUnoInterfaces function</bookmark_value>"
-msgstr ""
-
-#. KdX[
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"hd_id3149987\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"HasUnoInterfaces Function [Runtime]\">HasUnoInterfaces Function [Runtime]</link>"
-msgstr ""
-
-#. -S+W
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"par_id3151262\n"
-"2\n"
-"help.text"
-msgid "Tests if a Basic Uno object supports certain Uno interfaces."
-msgstr ""
-
-#. 0fNv
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"par_id3154232\n"
-"3\n"
-"help.text"
-msgid "Returns True, if <emph>all</emph> stated Uno interfaces are supported, otherwise False is returned."
-msgstr ""
-
-#. J1Ui
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"hd_id3150040\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. ApR+
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"par_id3155555\n"
-"5\n"
-"help.text"
-msgid "HasUnoInterfaces( oTest, Uno-Interface-Name 1 [, Uno-Interface-Name 2, ...])"
-msgstr ""
-
-#. Ynf?
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"hd_id3153345\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#. xYhO
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"par_id3148538\n"
-"7\n"
-"help.text"
-msgid "Bool"
-msgstr ""
-
-#. @\`M
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"hd_id3159157\n"
-"8\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. ]W)}
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"par_id3155419\n"
-"9\n"
-"help.text"
-msgid "<emph>oTest:</emph> the Basic Uno object that you want to test."
-msgstr ""
-
-#. _~xO
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"par_id3149236\n"
-"10\n"
-"help.text"
-msgid "<emph>Uno-Interface-Name:</emph> list of Uno interface names."
-msgstr ""
-
-#. c`dZ
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"hd_id3147574\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. -0KX
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"par_id3149580\n"
-"12\n"
-"help.text"
-msgid "bHas = HasUnoInterfaces( oTest, \"com.sun.star.beans.XIntrospection\" )"
-msgstr ""
-
-#. 7(of
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"tit\n"
-"help.text"
-msgid "Choose Function [Runtime]"
-msgstr ""
-
-#. ],sC
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"bm_id3143271\n"
-"help.text"
-msgid "<bookmark_value>Choose function</bookmark_value>"
-msgstr ""
-
-#. 5c$.
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"hd_id3143271\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03090402.xhp\" name=\"Choose Function [Runtime]\">Choose Function [Runtime]</link>"
-msgstr ""
-
-#. #)#q
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"par_id3149234\n"
-"2\n"
-"help.text"
-msgid "Returns a selected value from a list of arguments."
-msgstr ""
-
-#. RP,+
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"hd_id3148943\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. N@%}
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"par_id3147560\n"
-"4\n"
-"help.text"
-msgid "Choose (Index, Selection1[, Selection2, ... [,Selection_n]])"
-msgstr ""
-
-#. 177C
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"hd_id3154346\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. }-{$
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"par_id3148664\n"
-"6\n"
-"help.text"
-msgid "<emph>Index:</emph> A numeric expression that specifies the value to return."
-msgstr ""
-
-#. l4%N
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"par_id3150791\n"
-"7\n"
-"help.text"
-msgid "<emph>Selection1:</emph> Any expression that contains one of the possible choices."
-msgstr ""
-
-#. gga6
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"par_id3151043\n"
-"8\n"
-"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 ""
-
-#. arD[
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"par_id3153192\n"
-"9\n"
-"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 ""
-
-#. KpE;
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"par_id3156281\n"
-"10\n"
-"help.text"
-msgid "The following example uses the <emph>Choose</emph> function to select a string from several strings that form a menu:"
-msgstr ""
-
-#. p|(}
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"hd_id3150439\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. i(XK
-#: 03090402.xhp
-msgctxt ""
-"03090402.xhp\n"
-"par_id3156443\n"
-"20\n"
-"help.text"
-msgid "ChooseMenu = Choose(Index, \"Quick Format\", \"Save Format\", \"System Format\")"
-msgstr ""
-
-#. w\%=
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"tit\n"
-"help.text"
-msgid "Line Input # Statement [Runtime]"
-msgstr ""
-
-#. 4%%U
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"bm_id3153361\n"
-"help.text"
-msgid "<bookmark_value>Line Input statement</bookmark_value>"
-msgstr ""
-
-#. 3F2G
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"hd_id3153361\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020203.xhp\" name=\"Line Input # Statement [Runtime]\">Line Input # Statement [Runtime]</link>"
-msgstr ""
-
-#. Sj,.
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"par_id3156280\n"
-"2\n"
-"help.text"
-msgid "Reads strings from a sequential file into a variable."
-msgstr ""
-
-#. WG9N
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"hd_id3150447\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. g6^P
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"par_id3147229\n"
-"4\n"
-"help.text"
-msgid "Line Input #FileNumber As Integer, Var As String"
-msgstr ""
-
-#. NR%i
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"hd_id3145173\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. 4d2(
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"par_id3161832\n"
-"6\n"
-"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 ""
-
-#. x`yP
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"par_id3151119\n"
-"7\n"
-"help.text"
-msgid "<emph>var:</emph> The name of the variable that stores the result."
-msgstr ""
-
-#. QZLF
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"par_id3150010\n"
-"8\n"
-"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 ""
-
-#. 5f5D
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"hd_id3163711\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. z2G,
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"par_id3147124\n"
-"18\n"
-"help.text"
-msgid "Print #iNumber, \"This is a line of text\""
-msgstr ""
-
-#. NqRB
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"par_id3153415\n"
-"19\n"
-"help.text"
-msgid "Print #iNumber, \"This is another line of text\""
-msgstr ""
-
-#. D^+l
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Xor-Operator [Runtime]"
-msgstr ""
-
-#. pN|r
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"bm_id3156024\n"
-"help.text"
-msgid "<bookmark_value>Xor operator (logical)</bookmark_value>"
-msgstr ""
-
-#. ~:h!
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"hd_id3156024\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03060600.xhp\" name=\"Xor-Operator [Runtime]\">Xor-Operator [Runtime]</link>"
-msgstr ""
-
-#. )N(K
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"par_id3159414\n"
-"2\n"
-"help.text"
-msgid "Performs a logical Exclusive-Or combination of two expressions."
-msgstr ""
-
-#. dNxb
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"hd_id3153381\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. [ZzC
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"par_id3150400\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 Xor Expression2"
-msgstr ""
-
-#. zk]c
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"hd_id3153968\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. 2;jT
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"par_id3150448\n"
-"6\n"
-"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the combination."
-msgstr ""
-
-#. \P1L
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"par_id3125864\n"
-"7\n"
-"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to combine."
-msgstr ""
-
-#. Al(3
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"par_id3150439\n"
-"8\n"
-"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 ""
-
-#. 5g#d
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"par_id3153770\n"
-"9\n"
-"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 ""
-
-#. ?J_)
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"hd_id3153366\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. CZ/:
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"par_id3156442\n"
-"15\n"
-"help.text"
-msgid "vOut = vA > vB Xor vB > vC ' returns 0"
-msgstr ""
-
-#. !AeU
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"par_id3153191\n"
-"16\n"
-"help.text"
-msgid "vOut = vB > vA Xor vB > vC ' returns -1"
-msgstr ""
-
-#. _oB%
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"par_id3153144\n"
-"17\n"
-"help.text"
-msgid "vOut = vA > vB Xor vB > vD ' returns -1"
-msgstr ""
-
-#. (r9;
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"par_id3154944\n"
-"18\n"
-"help.text"
-msgid "vOut = (vB > vD Xor vB > vA) ' returns 0"
-msgstr ""
-
-#. !q+O
-#: 03060600.xhp
-msgctxt ""
-"03060600.xhp\n"
-"par_id3148455\n"
-"19\n"
-"help.text"
-msgid "vOut = vB Xor vA ' returns 2"
-msgstr ""
-
-#. [8xy
-#: 03080600.xhp
-msgctxt ""
-"03080600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Absolute Values"
-msgstr ""
-
-#. CFRg
-#: 03080600.xhp
-msgctxt ""
-"03080600.xhp\n"
-"hd_id3146958\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"Absolute Values\">Absolute Values</link>"
-msgstr ""
-
-#. 8[BE
-#: 03080600.xhp
-msgctxt ""
-"03080600.xhp\n"
-"par_id3150771\n"
-"2\n"
-"help.text"
-msgid "This function returns absolute values."
-msgstr ""
-
-#. A\R;
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefLng Statement [Runtime]"
-msgstr ""
-
-#. 3p/6
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"bm_id3148538\n"
-"help.text"
-msgid "<bookmark_value>DefLng statement</bookmark_value>"
-msgstr ""
-
-#. DoPV
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"hd_id3148538\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03101600.xhp\" name=\"DefLng Statement [Runtime]\">DefLng Statement [Runtime]</link>"
-msgstr ""
-
-#. 1@1o
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"par_id3149514\n"
-"2\n"
-"help.text"
-msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
-msgstr ""
-
-#. f3F7
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"hd_id3150504\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. rnc^
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"par_id3145609\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr ""
-
-#. .M8j
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"hd_id3154760\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. G0oR
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"par_id3145069\n"
-"6\n"
-"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
-msgstr ""
-
-#. RXhJ
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"par_id3150791\n"
-"7\n"
-"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr ""
-
-#. z:PX
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"par_id3148798\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr ""
-
-#. S)|I
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"par_id3154686\n"
-"9\n"
-"help.text"
-msgid "<emph>DefLng:</emph> Long"
-msgstr ""
-
-#. oV$?
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"hd_id3153192\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. zOm(
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"par_id3154124\n"
-"12\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr ""
-
-#. $FJP
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"par_id3145273\n"
-"22\n"
-"help.text"
-msgid "lCount=123456789 ' lCount is an implicit long integer variable"
-msgstr ""
-
-#. 7iSf
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Using Variables"
-msgstr ""
-
-#. *_Q0
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"bm_id3149346\n"
-"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 ""
-
-#. vWaT
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3149346\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01020100.xhp\" name=\"Using Variables\">Using Variables</link>"
-msgstr ""
-
-#. B(#a
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154346\n"
-"3\n"
-"help.text"
-msgid "The following describes the basic use of variables in $[officename] Basic."
-msgstr ""
-
-#. ?r1z
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3153361\n"
-"4\n"
-"help.text"
-msgid "Naming Conventions for Variable Identifiers"
-msgstr ""
-
-#. ]zOw
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3148797\n"
-"5\n"
-"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 ""
-
-#. t=1?
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3156422\n"
-"6\n"
-"help.text"
-msgid "Examples for variable identifiers:"
-msgstr ""
-
-#. K9H=
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3156441\n"
-"126\n"
-"help.text"
-msgid "Correct"
-msgstr ""
-
-#. 5mq*
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3149664\n"
-"127\n"
-"help.text"
-msgid "Correct"
-msgstr ""
-
-#. (r(r
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3146119\n"
-"128\n"
-"help.text"
-msgid "Correct"
-msgstr ""
-
-#. oz,B
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3153876\n"
-"11\n"
-"help.text"
-msgid "Not valid, variable with space must be enclosed in square brackets"
-msgstr ""
-
-#. *!V7
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154510\n"
-"15\n"
-"help.text"
-msgid "Correct"
-msgstr ""
-
-#. 7OMI
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3150330\n"
-"129\n"
-"help.text"
-msgid "Not valid, special characters are not allowed"
-msgstr ""
-
-#. pfz+
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154254\n"
-"130\n"
-"help.text"
-msgid "Not valid, variable may not begin with a number"
-msgstr ""
-
-#. WV@O
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3149256\n"
-"131\n"
-"help.text"
-msgid "Not valid, punctuation marks are not allowed"
-msgstr ""
-
-#. Chom
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3146317\n"
-"17\n"
-"help.text"
-msgid "Declaring Variables"
-msgstr ""
-
-#. sQ)3
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3150299\n"
-"18\n"
-"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 ""
-
-#. BWL/
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154118\n"
-"140\n"
-"help.text"
-msgid "Examples for variable declarations:"
-msgstr ""
-
-#. Gv^n
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3150982\n"
-"132\n"
-"help.text"
-msgid "Declares the variable \"a\" as a String"
-msgstr ""
-
-#. 5b;?
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3150343\n"
-"133\n"
-"help.text"
-msgid "Declares the variable \"a\" as a String"
-msgstr ""
-
-#. A)ZY
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3155507\n"
-"22\n"
-"help.text"
-msgid "Declares one variable as a String and one as an Integer"
-msgstr ""
-
-#. rA]-
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_idN10859\n"
-"help.text"
-msgid "Declares c as a Boolean variable that can be TRUE or FALSE"
-msgstr ""
-
-#. Em/U
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3150519\n"
-"23\n"
-"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 ""
-
-#. yxDI
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154527\n"
-"134\n"
-"help.text"
-msgid "Declares \"a\" as a String"
-msgstr ""
-
-#. X#o[
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3153064\n"
-"135\n"
-"help.text"
-msgid "Type-declaration missing: \"a$=\""
-msgstr ""
-
-#. lsZ,
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3144770\n"
-"26\n"
-"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 ""
-
-#. .1oZ
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3149331\n"
-"27\n"
-"help.text"
-msgid "Forcing Variable Declarations"
-msgstr ""
-
-#. ~Ahq
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3149443\n"
-"28\n"
-"help.text"
-msgid "To force declaration of variables, use the following command:"
-msgstr ""
-
-#. pn/d
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3155072\n"
-"30\n"
-"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 ""
-
-#. J)%h
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3154614\n"
-"34\n"
-"help.text"
-msgid "Variable Types"
-msgstr ""
-
-#. v{i?
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3155383\n"
-"35\n"
-"help.text"
-msgid "$[officename] Basic supports four variable classes:"
-msgstr ""
-
-#. ?Jp$
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3153972\n"
-"36\n"
-"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 ""
-
-#. oZ8_
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3159226\n"
-"37\n"
-"help.text"
-msgid "<emph>String</emph> variables contain character strings."
-msgstr ""
-
-#. N5Du
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3145217\n"
-"38\n"
-"help.text"
-msgid "<emph>Boolean</emph> variables contain either the TRUE or the FALSE value."
-msgstr ""
-
-#. @S^l
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154762\n"
-"39\n"
-"help.text"
-msgid "<emph>Object</emph> variables can store objects of various types, like tables and documents within a document."
-msgstr ""
-
-#. xdv@
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3153805\n"
-"40\n"
-"help.text"
-msgid "Integer Variables"
-msgstr ""
-
-#. Ja/?
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3146966\n"
-"41\n"
-"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 ""
-
-#. b_wk
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3147546\n"
-"45\n"
-"help.text"
-msgid "Long Integer Variables"
-msgstr ""
-
-#. Ya\^
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3151193\n"
-"46\n"
-"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 ""
-
-#. f60_
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id7596972\n"
-"help.text"
-msgid "Decimal Variables"
-msgstr ""
-
-#. [?[O
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id2649311\n"
-"help.text"
-msgid "Decimal variables can take positive or negative numbers or zero. Accuracy is up to 29 digits."
-msgstr ""
-
-#. Wpq_
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id7617114\n"
-"help.text"
-msgid "You can use plus (+) or minus (-) signs as prefixes for decimal numbers (with or without spaces)."
-msgstr ""
-
-#. F+^9
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id1593676\n"
-"help.text"
-msgid "If a decimal number is assigned to an integer variable, %PRODUCTNAME Basic rounds the figure up or down."
-msgstr ""
-
-#. xW{R
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3147500\n"
-"50\n"
-"help.text"
-msgid "Single Variables"
-msgstr ""
-
-#. j]p#
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3153070\n"
-"51\n"
-"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 ""
-
-#. Szb]
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3155753\n"
-"54\n"
-"help.text"
-msgid "Double Variables"
-msgstr ""
-
-#. pk`~
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3150953\n"
-"55\n"
-"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 ""
-
-#. ?iH/
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3155747\n"
-"95\n"
-"help.text"
-msgid "Currency Variables"
-msgstr ""
-
-#. %}.a
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3153337\n"
-"96\n"
-"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 ""
-
-#. YRb5
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3148742\n"
-"58\n"
-"help.text"
-msgid "String Variables"
-msgstr ""
-
-#. %l5[
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3151393\n"
-"59\n"
-"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 ""
-
-#. o)nB
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3150534\n"
-"62\n"
-"help.text"
-msgid "Boolean Variables"
-msgstr ""
-
-#. G4Id
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3145632\n"
-"63\n"
-"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 ""
-
-#. WnT|
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3149722\n"
-"65\n"
-"help.text"
-msgid "Date Variables"
-msgstr ""
-
-#. U_I^
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3159116\n"
-"66\n"
-"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 ""
-
-#. SN6t
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3148732\n"
-"68\n"
-"help.text"
-msgid "Initial Variable Values"
-msgstr ""
-
-#. s^lU
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154549\n"
-"69\n"
-"help.text"
-msgid "As soon as the variable has been declared, it is automatically set to the \"Null\" value. Note the following conventions:"
-msgstr ""
-
-#. }UFk
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3143222\n"
-"70\n"
-"help.text"
-msgid "<emph>Numeric</emph> variables are automatically assigned the value \"0\" as soon as they are declared."
-msgstr ""
-
-#. KW#C
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3150693\n"
-"71\n"
-"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 ""
-
-#. ?[2V
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154807\n"
-"72\n"
-"help.text"
-msgid "<emph>String variables</emph> are assigned an empty-string (\"\") when they are declared."
-msgstr ""
-
-#. kz=I
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3153936\n"
-"83\n"
-"help.text"
-msgid "Arrays"
-msgstr ""
-
-#. 5kH+
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3148736\n"
-"84\n"
-"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 ""
-
-#. 3l+-
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3149546\n"
-"85\n"
-"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 ""
-
-#. QEV+
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154567\n"
-"136\n"
-"help.text"
-msgid "21 elements numbered from 0 to 20"
-msgstr ""
-
-#. VNpI
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154397\n"
-"137\n"
-"help.text"
-msgid "30 elements (a matrix of 6 x 5 elements)"
-msgstr ""
-
-#. l:~!
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3149690\n"
-"138\n"
-"help.text"
-msgid "21 elements numbered from 5 to 25"
-msgstr ""
-
-#. =$V\
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3153113\n"
-"89\n"
-"help.text"
-msgid "21 elements (including 0), numbered from -15 to 5"
-msgstr ""
-
-#. DH\j
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3153005\n"
-"90\n"
-"help.text"
-msgid "The index range can include positive as well as negative numbers."
-msgstr ""
-
-#. uG-I
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3154507\n"
-"91\n"
-"help.text"
-msgid "Constants"
-msgstr ""
-
-#. GHjG
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3156357\n"
-"92\n"
-"help.text"
-msgid "Constants have a fixed value. They are only defined once in the program and cannot be redefined later:"
-msgstr ""
-
-#. V=3Z
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefObj Statement [Runtime]"
-msgstr ""
-
-#. 2}^e
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"bm_id3149811\n"
-"help.text"
-msgid "<bookmark_value>DefObj statement</bookmark_value>"
-msgstr ""
-
-#. 0,G/
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"hd_id3149811\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"DefObj Statement [Runtime]\">DefObj Statement [Runtime]</link>"
-msgstr ""
-
-#. 2eMY
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3147573\n"
-"2\n"
-"help.text"
-msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
-msgstr ""
-
-#. 4buU
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"hd_id3150504\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 9rmz
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3147530\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr ""
-
-#. RO1W
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"hd_id3153896\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. -.hY
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3148552\n"
-"6\n"
-"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
-msgstr ""
-
-#. tKg+
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3150358\n"
-"7\n"
-"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr ""
-
-#. p=G|
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3148798\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr ""
-
-#. F/41
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3150769\n"
-"9\n"
-"help.text"
-msgid "<emph>DefObj:</emph> Object"
-msgstr ""
-
-#. iQKO
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"hd_id3156212\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. bGmG
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3153969\n"
-"12\n"
-"help.text"
-msgid "REM Prefix definitions for variable types:"
-msgstr ""
-
-#. I.%M
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3156424\n"
-"13\n"
-"help.text"
-msgid "DefBool b"
-msgstr ""
-
-#. 9ok(
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3159254\n"
-"14\n"
-"help.text"
-msgid "DefDate t"
-msgstr ""
-
-#. 0U5I
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3150440\n"
-"15\n"
-"help.text"
-msgid "DefDbL d"
-msgstr ""
-
-#. !ajZ
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3161832\n"
-"16\n"
-"help.text"
-msgid "DefInt i"
-msgstr ""
-
-#. _``1
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3145365\n"
-"17\n"
-"help.text"
-msgid "DefLng l"
-msgstr ""
-
-#. 5tub
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3149481\n"
-"18\n"
-"help.text"
-msgid "DefObj o"
-msgstr ""
-
-#. [EE4
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3152886\n"
-"19\n"
-"help.text"
-msgid "DefVar v"
-msgstr ""
-
-#. LpU|
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Let Statement [Runtime]"
-msgstr ""
-
-#. JP!%
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"bm_id3147242\n"
-"help.text"
-msgid "<bookmark_value>Let statement</bookmark_value>"
-msgstr ""
-
-#. UW)@
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"hd_id3147242\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03103100.xhp\" name=\"Let Statement [Runtime]\">Let Statement [Runtime]</link>"
-msgstr ""
-
-#. %B.X
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"par_id3149233\n"
-"2\n"
-"help.text"
-msgid "Assigns a value to a variable."
-msgstr ""
-
-#. *AiS
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"hd_id3153127\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. g:~C
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"par_id3154285\n"
-"4\n"
-"help.text"
-msgid "[Let] VarName=Expression"
-msgstr ""
-
-#. fkYg
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"hd_id3148944\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. 3*j%
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"par_id3147560\n"
-"6\n"
-"help.text"
-msgid "<emph>VarName:</emph> Variable that you want to assign a value to. Value and variable type must be compatible."
-msgstr ""
-
-#. xgrr
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"par_id3148451\n"
-"7\n"
-"help.text"
-msgid "As in most BASIC dialects, the keyword <emph>Let</emph> is optional."
-msgstr ""
-
-#. 3AA_
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"hd_id3145785\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. {TLR
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"par_id3152939\n"
-"12\n"
-"help.text"
-msgid "MsgBox Len(sText) ' returns 9"
-msgstr ""
-
-#. LVS9
-#: 03010000.xhp
-msgctxt ""
-"03010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Screen I/O Functions"
-msgstr ""
-
-#. !9t?
-#: 03010000.xhp
-msgctxt ""
-"03010000.xhp\n"
-"hd_id3156280\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03010000.xhp\" name=\"Screen I/O Functions\">Screen I/O Functions</link>"
-msgstr ""
-
-#. pL.R
-#: 03010000.xhp
-msgctxt ""
-"03010000.xhp\n"
-"par_id3153770\n"
-"2\n"
-"help.text"
-msgid "This section describes the Runtime Functions used to call dialogs for the input and output of user entries."
-msgstr ""
-
-#. HJTA
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateUnoService Function [Runtime]"
-msgstr ""
-
-#. T`0z
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"bm_id3150682\n"
-"help.text"
-msgid "<bookmark_value>CreateUnoService function</bookmark_value>"
-msgstr ""
-
-#. zlm6
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"hd_id3150682\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03131600.xhp\" name=\"CreateUnoService Function [Runtime]\">CreateUnoService Function [Runtime]</link>"
-msgstr ""
-
-#. FJsP
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"par_id3152924\n"
-"2\n"
-"help.text"
-msgid "Instantiates a Uno service with the ProcessServiceManager."
-msgstr ""
-
-#. rpp?
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"hd_id3152801\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. $T?e
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"par_id3153346\n"
-"4\n"
-"help.text"
-msgid "oService = CreateUnoService( Uno service name )"
-msgstr ""
-
-#. ,Go$
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"par_idN1060F\n"
-"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 ""
-
-#. .j-A
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"hd_id3151111\n"
-"5\n"
-"help.text"
-msgid "Examples:"
-msgstr ""
-
-#. g#Au
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"par_id3154046\n"
-"6\n"
-"help.text"
-msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
-msgstr ""
-
-#. o1Ol
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"bm_id8334604\n"
-"help.text"
-msgid "<bookmark_value>filepicker;API service</bookmark_value>"
-msgstr ""
-
-#. cG5h
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"par_idN10625\n"
-"help.text"
-msgid "The following code uses a service to open a file open dialog:"
-msgstr ""
-
-#. D`n4
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"par_idN1062B\n"
-"help.text"
-msgid "fName = FileOpenDialog (\"Please select a file\")"
-msgstr ""
-
-#. VE1e
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"par_idN10630\n"
-"help.text"
-msgid "Print \"file chosen: \"+fName"
-msgstr ""
-
-#. {);3
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"tit\n"
-"help.text"
-msgid "Month Function [Runtime]"
-msgstr ""
-
-#. K:Be
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"bm_id3153127\n"
-"help.text"
-msgid "<bookmark_value>Month function</bookmark_value>"
-msgstr ""
-
-#. /\J|
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"hd_id3153127\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month Function [Runtime]\">Month Function [Runtime]</link>"
-msgstr ""
-
-#. .1^_
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"par_id3148550\n"
-"2\n"
-"help.text"
-msgid "Returns the month of a year from a serial date that is generated by the DateSerial or the DateValue function."
-msgstr ""
-
-#. j{O,
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"hd_id3145068\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. GAF\
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"par_id3150398\n"
-"4\n"
-"help.text"
-msgid "Month (Number)"
-msgstr ""
-
-#. 9s-q
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"hd_id3154366\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#. p9KR
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"par_id3154125\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr ""
-
-#. R!ih
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"hd_id3150768\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. Sa{1
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"par_id3156423\n"
-"8\n"
-"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 ""
-
-#. 0Xg1
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"par_id3153770\n"
-"9\n"
-"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 ""
-
-#. ;aol
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"par_id3145366\n"
-"11\n"
-"help.text"
-msgid "returns the value 12."
-msgstr ""
-
-#. WX|`
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"hd_id3146923\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 8fN[
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"par_id3149664\n"
-"14\n"
-"help.text"
-msgid "MsgBox \"\" & Month(Now) ,64,\"The current month\""
-msgstr ""
-
-#. v9ET
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"tit\n"
-"help.text"
-msgid "GoSub...Return Statement [Runtime]"
-msgstr ""
-
-#. m`+2
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"bm_id3147242\n"
-"help.text"
-msgid "<bookmark_value>GoSub...Return statement</bookmark_value>"
-msgstr ""
-
-#. IL\]
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"hd_id3147242\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03090301.xhp\" name=\"GoSub...Return Statement [Runtime]\">GoSub...Return Statement [Runtime]</link>"
-msgstr ""
-
-#. -khL
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3145316\n"
-"2\n"
-"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 ""
-
-#. g=V;
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"hd_id3145609\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. r,Mz
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3145069\n"
-"4\n"
-"help.text"
-msgid "see Parameters"
-msgstr ""
-
-#. N)@v
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"hd_id3147265\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. NZi;
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3148664\n"
-"6\n"
-"help.text"
-msgid "Sub/Function"
-msgstr ""
-
-#. h^c@
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3150400\n"
-"7\n"
-"help.text"
-msgid "statement block"
-msgstr ""
-
-#. s5{;
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3154140\n"
-"8\n"
-"help.text"
-msgid "Label"
-msgstr ""
-
-#. $\cJ
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3150869\n"
-"9\n"
-"help.text"
-msgid "statement block"
-msgstr ""
-
-#. l+Ce
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3154909\n"
-"10\n"
-"help.text"
-msgid "GoSub Label"
-msgstr ""
-
-#. +MY2
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3153969\n"
-"11\n"
-"help.text"
-msgid "Exit Sub/Function"
-msgstr ""
-
-#. /Elh
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3154685\n"
-"12\n"
-"help.text"
-msgid "Label:"
-msgstr ""
-
-#. !:4(
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3145786\n"
-"13\n"
-"help.text"
-msgid "statement block"
-msgstr ""
-
-#. [5lC
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3159252\n"
-"14\n"
-"help.text"
-msgid "Return"
-msgstr ""
-
-#. Q?*l
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3154321\n"
-"15\n"
-"help.text"
-msgid "End Sub/Function"
-msgstr ""
-
-#. rTVx
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3147318\n"
-"16\n"
-"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 ""
-
-#. O,Aj
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3153190\n"
-"17\n"
-"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 ""
-
-#. $l2Z
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3145799\n"
-"19\n"
-"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 ""
-
-#. @q^9
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"hd_id3156284\n"
-"20\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. rvNV
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3146970\n"
-"25\n"
-"help.text"
-msgid "iInputa = Int(InputBox$ \"Enter the first number: \",\"NumberInput\"))"
-msgstr ""
-
-#. +/PP
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3150329\n"
-"26\n"
-"help.text"
-msgid "iInputb = Int(InputBox$ \"Enter the second number: \",\"NumberInput\"))"
-msgstr ""
-
-#. 7T}D
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3154756\n"
-"29\n"
-"help.text"
-msgid "Print \"The square root of\";iInputa;\" is\";iInputc"
-msgstr ""
-
-#. DVmo
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3147340\n"
-"32\n"
-"help.text"
-msgid "Print \"The square root of\";iInputb;\" is\";iInputc"
-msgstr ""
-
-#. R#O|
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"tit\n"
-"help.text"
-msgid "Stop Statement [Runtime]"
-msgstr ""
-
-#. oQ=*
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"bm_id3153311\n"
-"help.text"
-msgid "<bookmark_value>Stop statement</bookmark_value>"
-msgstr ""
-
-#. !]1g
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153311\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03090408.xhp\" name=\"Stop Statement [Runtime]\">Stop Statement [Runtime]</link>"
-msgstr ""
-
-#. AKbS
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"par_id3154142\n"
-"2\n"
-"help.text"
-msgid "Stops the execution of the Basic program."
-msgstr ""
-
-#. KL+x
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. JqKE
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"par_id3156023\n"
-"4\n"
-"help.text"
-msgid "Stop"
-msgstr ""
-
-#. R`wE
-#: 03090408.xhp
-msgctxt ""
-"03090408.xhp\n"
-"hd_id3156344\n"
-"5\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. +R]U
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"tit\n"
-"help.text"
-msgid "RGB Function [Runtime]"
-msgstr ""
-
-#. Kr,C
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3150792\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB Function [Runtime]\">RGB Function [Runtime]</link>"
-msgstr ""
-
-#. 5%dE
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3150447\n"
-"2\n"
-"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 ""
-
-#. 3MXR
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3147229\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. `dC1
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3155132\n"
-"4\n"
-"help.text"
-msgid "RGB (Red, Green, Blue)"
-msgstr ""
-
-#. K:?4
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3156442\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#. cpy,
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3159153\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr ""
-
-#. {#Nu
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3154013\n"
-"7\n"
-"help.text"
-msgid "Parameter:"
-msgstr ""
-
-#. bQra
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3152597\n"
-"8\n"
-"help.text"
-msgid "<emph>Red</emph>: Any integer expression that represents the red component (0-255) of the composite color."
-msgstr ""
-
-#. Xc##
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3146974\n"
-"9\n"
-"help.text"
-msgid "<emph>Green</emph>: Any integer expression that represents the green component (0-255) of the composite color."
-msgstr ""
-
-#. .j@o
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3151113\n"
-"10\n"
-"help.text"
-msgid "<emph>Blue</emph>: Any integer expression that represents the blue component (0-255) of the composite color."
-msgstr ""
-
-#. 3P{K
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3147435\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. vcX,
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3145647\n"
-"15\n"
-"help.text"
-msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
-msgstr ""
-
-#. k~*r
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3154491\n"
-"16\n"
-"help.text"
-msgid "\"red= \" & red(lVar) & Chr(13)&_"
-msgstr ""
-
-#. UW.U
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3149401\n"
-"17\n"
-"help.text"
-msgid "\"green= \" & green(lVar) & Chr(13)&_"
-msgstr ""
-
-#. M3|T
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3150716\n"
-"18\n"
-"help.text"
-msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
-msgstr ""
-
-#. KzPt
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsNull Function [Runtime]"
-msgstr ""
-
-#. pV7J
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"bm_id3155555\n"
-"help.text"
-msgid "<bookmark_value>IsNull function</bookmark_value><bookmark_value>Null value</bookmark_value>"
-msgstr ""
-
-#. -89b
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"hd_id3155555\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03102600.xhp\" name=\"IsNull Function [Runtime]\">IsNull Function [Runtime]</link>"
-msgstr ""
-
-#. WLEP
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"par_id3146957\n"
-"2\n"
-"help.text"
-msgid "Tests if a Variant contains the special Null value, indicating that the variable does not contain data."
-msgstr ""
-
-#. nC;n
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"hd_id3150670\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. ?W.r
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"par_id3150984\n"
-"4\n"
-"help.text"
-msgid "IsNull (Var)"
-msgstr ""
-
-#. =_kG
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"hd_id3149514\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#. Z|G*
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"par_id3145609\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr ""
-
-#. @j8$
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"hd_id3149669\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. QKst
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"par_id3159414\n"
-"8\n"
-"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 ""
-
-#. =\zw
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"par_idN1062A\n"
-"help.text"
-msgid "<emph>Null</emph> - This value is used for a variant data sub type without valid contents."
-msgstr ""
-
-#. (#+S
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"hd_id3153381\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. %fYR
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"tit\n"
-"help.text"
-msgid "\"+\" Operator [Runtime]"
-msgstr ""
-
-#. 8E|G
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"bm_id3145316\n"
-"help.text"
-msgid "<bookmark_value>\"+\" operator (mathematical)</bookmark_value>"
-msgstr ""
-
-#. 4I-6
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"hd_id3145316\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03070300.xhp\">\"+\" Operator [Runtime]</link>"
-msgstr ""
-
-#. ]X.;
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"par_id3145068\n"
-"2\n"
-"help.text"
-msgid "Adds or combines two expressions."
-msgstr ""
-
-#. ]SUO
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"hd_id3144500\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. v*Xr
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"par_id3150358\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 + Expression2"
-msgstr ""
-
-#. AM~E
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"hd_id3150400\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. v*.C
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"par_id3154123\n"
-"6\n"
-"help.text"
-msgid "<emph>Result:</emph> Any numerical expression that contains the result of the addition."
-msgstr ""
-
-#. X(k}
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"par_id3150870\n"
-"7\n"
-"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to combine or to add."
-msgstr ""
-
-#. Di)B
-#: 03070300.xhp
-msgctxt ""
-"03070300.xhp\n"
-"hd_id3153969\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 0IUo
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"tit\n"
-"help.text"
-msgid "Trim Function [Runtime]"
-msgstr ""
-
-#. wg;!
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"bm_id3150616\n"
-"help.text"
-msgid "<bookmark_value>Trim function</bookmark_value>"
-msgstr ""
-
-#. Q~P7
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"hd_id3150616\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120311.xhp\" name=\"Trim Function [Runtime]\">Trim Function [Runtime]</link>"
-msgstr ""
-
-#. XmKB
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"par_id3149177\n"
-"2\n"
-"help.text"
-msgid "Removes all leading and trailing spaces from a string expression."
-msgstr ""
-
-#. wO,N
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"hd_id3159157\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. XgN9
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"par_id3155341\n"
-"4\n"
-"help.text"
-msgid "Trim( Text As String )"
-msgstr ""
-
-#. |/U9
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"hd_id3155388\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#. Y\lo
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"par_id3143228\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr ""
-
-#. $K(E
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"hd_id3145609\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. D:!6
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"par_id3159414\n"
-"8\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string expression."
-msgstr ""
-
-#. ^`=5
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"hd_id3148663\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. pdie
-#: 03000000.xhp
-msgctxt ""
-"03000000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Run-Time Functions"
-msgstr ""
-
-#. Um+=
-#: 03000000.xhp
-msgctxt ""
-"03000000.xhp\n"
-"hd_id3152895\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Run-Time Functions\">Run-Time Functions</link></variable>"
-msgstr ""
-
-#. [=O*
-#: 03000000.xhp
-msgctxt ""
-"03000000.xhp\n"
-"par_id3148983\n"
-"2\n"
-"help.text"
-msgid "This section describes the Runtime Functions of <item type=\"productname\">%PRODUCTNAME</item> Basic."
-msgstr ""
-
-#. ^o2k
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Open Statement[Runtime]"
-msgstr ""
-
-#. oh8p
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"bm_id3150791\n"
-"help.text"
-msgid "<bookmark_value>Open statement</bookmark_value>"
-msgstr ""
-
-#. C;y%
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"hd_id3150791\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open Statement[Runtime]\">Open Statement[Runtime]</link>"
-msgstr ""
-
-#. =P.0
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3150769\n"
-"2\n"
-"help.text"
-msgid "Opens a data channel."
-msgstr ""
-
-#. azng
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"hd_id3147230\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. $2J3
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3154124\n"
-"4\n"
-"help.text"
-msgid "Open FileName As String [For Mode] [Access IOMode] [Protected] As [#]FileNumber As Integer [Len = DatasetLength]"
-msgstr ""
-
-#. pi/N
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"hd_id3156280\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. #4l1
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3155132\n"
-"6\n"
-"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 ""
-
-#. !:(y
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3149262\n"
-"7\n"
-"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 ""
-
-#. $@pH
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3154014\n"
-"8\n"
-"help.text"
-msgid "<emph>IOMode:</emph> Keyword that defines the access type. Valid values: Read (read-only), Write (write-only), Read Write (both)."
-msgstr ""
-
-#. \S@%
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3150011\n"
-"9\n"
-"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 ""
-
-#. xfEG
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3153190\n"
-"10\n"
-"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 ""
-
-#. kEX/
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3151115\n"
-"11\n"
-"help.text"
-msgid "<emph>DatasetLength:</emph> For random access files, set the length of the records."
-msgstr ""
-
-#. .~/,
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3153418\n"
-"12\n"
-"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 ""
-
-#. ~eP5
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"hd_id3149123\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. ,gmO
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3154705\n"
-"22\n"
-"help.text"
-msgid "Print #iNumber, \"This is a line of text\""
-msgstr ""
-
-#. \mCg
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id3146916\n"
-"23\n"
-"help.text"
-msgid "Print #iNumber, \"This is another line of text\""
-msgstr ""
-
-#. @i*-
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"tit\n"
-"help.text"
-msgid "\"*\" Operator [Runtime]"
-msgstr ""
-
-#. 3Kg2
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"bm_id3147573\n"
-"help.text"
-msgid "<bookmark_value>\"*\" operator (mathematical)</bookmark_value>"
-msgstr ""
-
-#. b{C7
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"hd_id3147573\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03070200.xhp\">\"*\" Operator [Runtime]</link>"
-msgstr ""
-
-#. X^t!
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"par_id3154347\n"
-"2\n"
-"help.text"
-msgid "Multiplies two values."
-msgstr ""
-
-#. D%GK
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"hd_id3148946\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. =?sL
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"par_id3150358\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 * Expression2"
-msgstr ""
-
-#. g(U0
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"hd_id3150400\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. ?Ai]
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"par_id3154365\n"
-"6\n"
-"help.text"
-msgid "<emph>Result:</emph> Any numeric expression that records the result of a multiplication."
-msgstr ""
-
-#. *b=j
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"par_id3154685\n"
-"7\n"
-"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to multiply."
-msgstr ""
-
-#. O?|q
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"hd_id3153968\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. vJHv
-#: 03020000.xhp
-msgctxt ""
-"03020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "File I/O Functions"
-msgstr ""
-
-#. jU8B
-#: 03020000.xhp
-msgctxt ""
-"03020000.xhp\n"
-"hd_id3156344\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020000.xhp\" name=\"File I/O Functions\">File I/O Functions</link>"
-msgstr ""
-
-#. ).GC
-#: 03020000.xhp
-msgctxt ""
-"03020000.xhp\n"
-"par_id3153360\n"
-"2\n"
-"help.text"
-msgid "Use File I/O functions to create and manage user-defined (data) files."
-msgstr ""
-
-#. ZA%2
-#: 03020000.xhp
-msgctxt ""
-"03020000.xhp\n"
-"par_id3150398\n"
-"3\n"
-"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 ""
-
-#. Cak%
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"tit\n"
-"help.text"
-msgid "CStr Function [Runtime]"
-msgstr ""
-
-#. k6hG
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"bm_id3146958\n"
-"help.text"
-msgid "<bookmark_value>CStr function</bookmark_value>"
-msgstr ""
-
-#. `*bT
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3146958\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03101000.xhp\" name=\"CStr Function [Runtime]\">CStr Function [Runtime]</link>"
-msgstr ""
-
-#. Yx%M
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3147574\n"
-"2\n"
-"help.text"
-msgid "Converts any numeric expression to a string expression."
-msgstr ""
-
-#. \p[]
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3148473\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. t:38
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3145315\n"
-"4\n"
-"help.text"
-msgid "CStr (Expression)"
-msgstr ""
-
-#. |HL{
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3153062\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#. 9Wke
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3153897\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr ""
-
-#. )*p5
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3154760\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. K3k;
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3149457\n"
-"8\n"
-"help.text"
-msgid "<emph>Expression:</emph> Any valid string or numeric expression that you want to convert."
-msgstr ""
-
-#. U#^w
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3150358\n"
-"9\n"
-"help.text"
-msgid "Expression Types and Conversion Returns"
-msgstr ""
-
-#. %r-Q
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3153192\n"
-"10\n"
-"help.text"
-msgid "Boolean :"
-msgstr ""
-
-#. I8^5
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3156422\n"
-"11\n"
-"help.text"
-msgid "String that evaluates to either <emph>True</emph> or <emph>False</emph>."
-msgstr ""
-
-#. [gqK
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3147287\n"
-"12\n"
-"help.text"
-msgid "Date :"
-msgstr ""
-
-#. 7nG%
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3155411\n"
-"13\n"
-"help.text"
-msgid "String that contains the date and time."
-msgstr ""
-
-#. rVu*
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3147428\n"
-"14\n"
-"help.text"
-msgid "Null :"
-msgstr ""
-
-#. l3xa
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3150486\n"
-"15\n"
-"help.text"
-msgid "Run-time error."
-msgstr ""
-
-#. ;_!0
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3153953\n"
-"16\n"
-"help.text"
-msgid "Empty :"
-msgstr ""
-
-#. cW8`
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3155306\n"
-"17\n"
-"help.text"
-msgid "String without any characters."
-msgstr ""
-
-#. R}9k
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3149260\n"
-"18\n"
-"help.text"
-msgid "Any :"
-msgstr ""
-
-#. kER;
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3152938\n"
-"19\n"
-"help.text"
-msgid "Corresponding number as string."
-msgstr ""
-
-#. 3fo:
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3155738\n"
-"20\n"
-"help.text"
-msgid "Zeros at the end of a floating-point number are not included in the returned string."
-msgstr ""
-
-#. 3G`K
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"hd_id3154729\n"
-"21\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. Kbb9
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"tit\n"
-"help.text"
-msgid "Close Statement [Runtime]"
-msgstr ""
-
-#. ^%-1
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"bm_id3157896\n"
-"help.text"
-msgid "<bookmark_value>Close statement</bookmark_value>"
-msgstr ""
-
-#. R%Pj
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"hd_id3157896\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020101.xhp\" name=\"Close Statement [Runtime]\">Close Statement [Runtime]</link>"
-msgstr ""
-
-#. FBba
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"par_id3147573\n"
-"2\n"
-"help.text"
-msgid "Closes a specified file that was opened with the Open statement."
-msgstr ""
-
-#. AJyg
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"hd_id3156344\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. (ga}
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"par_id3147265\n"
-"4\n"
-"help.text"
-msgid "Close FileNumber As Integer[, FileNumber2 As Integer[,...]]"
-msgstr ""
-
-#. ]]v(
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"hd_id3153379\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. %9vG
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"par_id3150791\n"
-"6\n"
-"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 ""
-
-#. ;OB}
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"hd_id3153192\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. HWS^
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"par_id3153727\n"
-"16\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr ""
-
-#. S^If
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"par_id3147350\n"
-"17\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr ""
-
-#. J-xp
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsObject Function [Runtime]"
-msgstr ""
-
-#. $_sD
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"bm_id3149346\n"
-"help.text"
-msgid "<bookmark_value>IsObject function</bookmark_value>"
-msgstr ""
-
-#. 4DMM
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"hd_id3149346\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function [Runtime]\">IsObject Function [Runtime]</link>"
-msgstr ""
-
-#. *`Qe
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"par_id3148538\n"
-"2\n"
-"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 ""
-
-#. M}Hd
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"hd_id3149234\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. Ug:7
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"par_id3154285\n"
-"4\n"
-"help.text"
-msgid "IsObject (ObjectVar)"
-msgstr ""
-
-#. U@a\
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"hd_id3148685\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#. VXS)
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"par_id3156024\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr ""
-
-#. pE@5
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"hd_id3148947\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. HLT%
-#: 03102800.xhp
-msgctxt ""
-"03102800.xhp\n"
-"par_id3148552\n"
-"8\n"
-"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 ""
-
-#. 17eZ
-#: 03132500.xhp
-msgctxt ""
-"03132500.xhp\n"
-"tit\n"
-"help.text"
-msgid "GetDefaultContext Function [Runtime]"
-msgstr ""
-
-#. 3DR#
-#: 03132500.xhp
-msgctxt ""
-"03132500.xhp\n"
-"bm_id4761192\n"
-"help.text"
-msgid "<bookmark_value>GetDefaultContext function</bookmark_value>"
-msgstr ""
-
-#. @Fg6
-#: 03132500.xhp
-msgctxt ""
-"03132500.xhp\n"
-"par_idN10580\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03132500.xhp\">GetDefaultContext Function [Runtime]</link>"
-msgstr ""
-
-#. m%?-
-#: 03132500.xhp
-msgctxt ""
-"03132500.xhp\n"
-"par_idN10590\n"
-"help.text"
-msgid "Returns the default context of the process service factory, if existent, else returns a null reference."
-msgstr ""
-
-#. PO,p
-#: 03132500.xhp
-msgctxt ""
-"03132500.xhp\n"
-"par_idN10593\n"
-"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 ""
-
-#. r/)l
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"tit\n"
-"help.text"
-msgid "Atn Function [Runtime]"
-msgstr ""
-
-#. q\jk
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"bm_id3150616\n"
-"help.text"
-msgid "<bookmark_value>Atn function</bookmark_value>"
-msgstr ""
-
-#. +GH6
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"hd_id3150616\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080101.xhp\" name=\"Atn Function [Runtime]\">Atn Function [Runtime]</link>"
-msgstr ""
-
-#. CbCh
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3149346\n"
-"2\n"
-"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 ""
-
-#. D/0U
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3143271\n"
-"3\n"
-"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 ""
-
-#. O7gj
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3145315\n"
-"4\n"
-"help.text"
-msgid "Atn(side opposite the angle/side adjacent to angle)= Alpha"
-msgstr ""
-
-#. 9R-)
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"hd_id3149669\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. .rkX
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3148947\n"
-"6\n"
-"help.text"
-msgid "Atn (Number)"
-msgstr ""
-
-#. L14@
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"hd_id3148664\n"
-"7\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#. c0f4
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3150359\n"
-"8\n"
-"help.text"
-msgid "Double"
-msgstr ""
-
-#. +c4n
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"hd_id3148798\n"
-"9\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. ]FX$
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3156212\n"
-"10\n"
-"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 ""
-
-#. a0Xe
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3153192\n"
-"11\n"
-"help.text"
-msgid "To convert radians to degrees, multiply radians by 180/pi."
-msgstr ""
-
-#. _eOA
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3147230\n"
-"12\n"
-"help.text"
-msgid "degree=(radian*180)/pi"
-msgstr ""
-
-#. kVMZ
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3125864\n"
-"13\n"
-"help.text"
-msgid "radian=(degree*pi)/180"
-msgstr ""
-
-#. 5*)~
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3159252\n"
-"14\n"
-"help.text"
-msgid "Pi is here the fixed circle constant with the rounded value 3.14159."
-msgstr ""
-
-#. =vZ*
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"hd_id3153142\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 1e5A
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3146985\n"
-"16\n"
-"help.text"
-msgid "' The following example calculates for a right-angled triangle"
-msgstr ""
-
-#. 3K2Z
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3145750\n"
-"17\n"
-"help.text"
-msgid "' the angle Alpha from the tangent of the angle Alpha:"
-msgstr ""
-
-#. ZNfv
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3151112\n"
-"19\n"
-"help.text"
-msgid "' rounded Pi = 3.14159 Is a predefined constant"
-msgstr ""
-
-#. i|p3
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3149262\n"
-"22\n"
-"help.text"
-msgid "d1 = InputBox$ (\"Enter the length of the side adjacent to the angle: \",\"Adjacent\")"
-msgstr ""
-
-#. i-O:
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3149482\n"
-"23\n"
-"help.text"
-msgid "d2 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"Opposite\")"
-msgstr ""
-
-#. 3QX,
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3155415\n"
-"24\n"
-"help.text"
-msgid "Print \"The Alpha angle is\"; (atn (d2/d1) * 180 / Pi); \" degrees\""
-msgstr ""
-
-#. Y]g,
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"tit\n"
-"help.text"
-msgid "Rnd Function [Runtime]"
-msgstr ""
-
-#. 9h1a
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"bm_id3148685\n"
-"help.text"
-msgid "<bookmark_value>Rnd function</bookmark_value>"
-msgstr ""
-
-#. d_O2
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"hd_id3148685\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080302.xhp\" name=\"Rnd Function [Runtime]\">Rnd Function [Runtime]</link>"
-msgstr ""
-
-#. VJ=E
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3149669\n"
-"2\n"
-"help.text"
-msgid "Returns a random number between 0 and 1."
-msgstr ""
-
-#. =$?*
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"hd_id3153897\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. J]-D
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3150543\n"
-"4\n"
-"help.text"
-msgid "Rnd [(Expression)]"
-msgstr ""
-
-#. b%Be
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"hd_id3149655\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#. J.KZ
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3154365\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr ""
-
-#. 8N^h
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"hd_id3154909\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. iT;#
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3125864\n"
-"8\n"
-"help.text"
-msgid "<emph>Expression:</emph> Any numeric expression."
-msgstr ""
-
-#. lCsH
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3155306\n"
-"12\n"
-"help.text"
-msgid "<emph>Omitted:</emph> Returns the next random number in the sequence."
-msgstr ""
-
-#. 3{CQ
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3147318\n"
-"14\n"
-"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 ""
-
-#. ldKx
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"hd_id3151118\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. ]a?w
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3147124\n"
-"21\n"
-"help.text"
-msgid "Print \"Number from 1 to 5\""
-msgstr ""
-
-#. #=!1
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3154943\n"
-"23\n"
-"help.text"
-msgid "Print \"Number from 6 to 8\""
-msgstr ""
-
-#. FOsi
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3151074\n"
-"25\n"
-"help.text"
-msgid "Print \"Greater than 8\""
-msgstr ""
-
-#. U2GQ
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3155602\n"
-"27\n"
-"help.text"
-msgid "Print \"Outside range 1 to 10\""
-msgstr ""
-
-#. [n%G
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Str Function [Runtime]"
-msgstr ""
-
-#. IOtT
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"bm_id3143272\n"
-"help.text"
-msgid "<bookmark_value>Str function</bookmark_value>"
-msgstr ""
-
-#. nW)+
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"hd_id3143272\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120103.xhp\" name=\"Str Function [Runtime]\">Str Function [Runtime]</link>"
-msgstr ""
-
-#. LBCo
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"par_id3155100\n"
-"2\n"
-"help.text"
-msgid "Converts a numeric expression into a string."
-msgstr ""
-
-#. ;N(d
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"hd_id3109850\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. ZfkW
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"par_id3149497\n"
-"4\n"
-"help.text"
-msgid "Str (Expression)"
-msgstr ""
-
-#. {3YZ
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"hd_id3150040\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#. #/[J
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"par_id3146117\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr ""
-
-#. !]6a
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"hd_id3155805\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. ?qvH
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"par_id3149178\n"
-"8\n"
-"help.text"
-msgid "<emph>Expression: </emph>Any numeric expression."
-msgstr ""
-
-#. 6\:B
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"par_id3146958\n"
-"9\n"
-"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 ""
-
-#. q,*)
-#: 03120103.xhp
-msgctxt ""
-"03120103.xhp\n"
-"hd_id3155419\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. [*^m
-#: 03030300.xhp
-msgctxt ""
-"03030300.xhp\n"
-"tit\n"
-"help.text"
-msgid "System Date and Time"
-msgstr ""
-
-#. 8-^;
-#: 03030300.xhp
-msgctxt ""
-"03030300.xhp\n"
-"hd_id3154923\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030300.xhp\" name=\"System Date and Time\">System Date and Time</link>"
-msgstr ""
-
-#. j,o.
-#: 03030300.xhp
-msgctxt ""
-"03030300.xhp\n"
-"par_id3149457\n"
-"2\n"
-"help.text"
-msgid "The following functions and statements set or return the system date and time."
-msgstr ""
-
-#. ,NB(
-#: 03090200.xhp
-msgctxt ""
-"03090200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Loops"
-msgstr ""
-
-#. .^ji
-#: 03090200.xhp
-msgctxt ""
-"03090200.xhp\n"
-"hd_id3153990\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Loops\">Loops</link>"
-msgstr ""
-
-#. @h#c
-#: 03090200.xhp
-msgctxt ""
-"03090200.xhp\n"
-"par_id3147226\n"
-"2\n"
-"help.text"
-msgid "The following statements execute loops."
-msgstr ""
-
-#. *sgM
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Mathematical Operators"
-msgstr ""
-
-#. 2]J?
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"hd_id3149234\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Mathematical Operators\">Mathematical Operators</link>"
-msgstr ""
-
-#. .!j@
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"par_id3145068\n"
-"2\n"
-"help.text"
-msgid "The following mathematical operators are supported in $[officename] Basic."
-msgstr ""
-
-#. B`Lr
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"par_id3148552\n"
-"3\n"
-"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 ""
-
-#. :/W3
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"tit\n"
-"help.text"
-msgid "Do...Loop Statement [Runtime]"
-msgstr ""
-
-#. e$j,
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"bm_id3156116\n"
-"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 ""
-
-#. @i,T
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"hd_id3156116\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop Statement [Runtime]\">Do...Loop Statement [Runtime]</link>"
-msgstr ""
-
-#. GJA-
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3109850\n"
-"2\n"
-"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 ""
-
-#. 9@2U
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"hd_id3149119\n"
-"3\n"
-"help.text"
-msgid "Syntax"
-msgstr ""
-
-#. rZ;L
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3155150\n"
-"4\n"
-"help.text"
-msgid "Do [{While | Until} condition = True]"
-msgstr ""
-
-#. :`Me
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3154422\n"
-"5\n"
-"help.text"
-msgid "statement block"
-msgstr ""
-
-#. ]ZSs
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3150789\n"
-"6\n"
-"help.text"
-msgid "[Exit Do]"
-msgstr ""
-
-#. rpFU
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3155805\n"
-"7\n"
-"help.text"
-msgid "statement block"
-msgstr ""
-
-#. CLjv
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3145090\n"
-"8\n"
-"help.text"
-msgid "Loop"
-msgstr ""
-
-#. AcGd
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3154749\n"
-"9\n"
-"help.text"
-msgid "or"
-msgstr ""
-
-#. #x=?
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3150503\n"
-"10\n"
-"help.text"
-msgid "Do"
-msgstr ""
-
-#. lvU~
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149762\n"
-"11\n"
-"help.text"
-msgid "statement block"
-msgstr ""
-
-#. (%+z
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3150984\n"
-"12\n"
-"help.text"
-msgid "[Exit Do]"
-msgstr ""
-
-#. b6i`
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3143228\n"
-"13\n"
-"help.text"
-msgid "statement block"
-msgstr ""
-
-#. +mO!
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149235\n"
-"14\n"
-"help.text"
-msgid "Loop [{While | Until} condition = True]"
-msgstr ""
-
-#. (3f9
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"hd_id3156024\n"
-"15\n"
-"help.text"
-msgid "Parameters/Elements"
-msgstr ""
-
-#. InF[
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3156344\n"
-"16\n"
-"help.text"
-msgid "<emph>Condition:</emph> A comparison, numeric or string expression, that evaluates either True or False."
-msgstr ""
-
-#. x#jG
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149669\n"
-"17\n"
-"help.text"
-msgid "<emph>Statement block:</emph> Statements that you want to repeat while or until the condition is True."
-msgstr ""
-
-#. 2F%_
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3150791\n"
-"18\n"
-"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 ""
-
-#. IPB[
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"hd_id3154366\n"
-"19\n"
-"help.text"
-msgid "Syntax"
-msgstr ""
-
-#. hX*9
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3145171\n"
-"20\n"
-"help.text"
-msgid "Do While condition = True"
-msgstr ""
-
-#. XMK%
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149203\n"
-"21\n"
-"help.text"
-msgid "...statement block"
-msgstr ""
-
-#. @0)A
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3125864\n"
-"22\n"
-"help.text"
-msgid "Loop"
-msgstr ""
-
-#. hZl_
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3154124\n"
-"24\n"
-"help.text"
-msgid "The statement block between the Do While and the Loop statements is repeated so long as the condition is true."
-msgstr ""
-
-#. zT*4
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3153968\n"
-"25\n"
-"help.text"
-msgid "Do Until condition = True"
-msgstr ""
-
-#. lq$s
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3154909\n"
-"26\n"
-"help.text"
-msgid "...statement block"
-msgstr ""
-
-#. C_f7
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3159151\n"
-"27\n"
-"help.text"
-msgid "Loop"
-msgstr ""
-
-#. W$_c
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3150440\n"
-"29\n"
-"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 ""
-
-#. 6aAC
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3153952\n"
-"30\n"
-"help.text"
-msgid "Do"
-msgstr ""
-
-#. k=.h
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3147349\n"
-"31\n"
-"help.text"
-msgid "...statement block"
-msgstr ""
-
-#. /}7q
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3159153\n"
-"32\n"
-"help.text"
-msgid "Loop While condition = True"
-msgstr ""
-
-#. O+N3
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3146985\n"
-"34\n"
-"help.text"
-msgid "The statement block between the Do and the Loop statements repeats so long as the condition is true."
-msgstr ""
-
-#. J26Q
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3150488\n"
-"35\n"
-"help.text"
-msgid "Do"
-msgstr ""
-
-#. (JAy
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3153189\n"
-"36\n"
-"help.text"
-msgid "...statement block"
-msgstr ""
-
-#. GB=b
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3155411\n"
-"37\n"
-"help.text"
-msgid "Loop Until condition = True"
-msgstr ""
-
-#. ?1C:
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3151117\n"
-"39\n"
-"help.text"
-msgid "The statement block between the Do and the Loop statements repeats until the condition is true."
-msgstr ""
-
-#. C+M4
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149484\n"
-"41\n"
-"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 ""
-
-#. p3gw
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149262\n"
-"42\n"
-"help.text"
-msgid "Do..."
-msgstr ""
-
-#. 3e]@
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149298\n"
-"43\n"
-"help.text"
-msgid "statements"
-msgstr ""
-
-#. Qb]G
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3145646\n"
-"44\n"
-"help.text"
-msgid "If condition = True Then Exit Do"
-msgstr ""
-
-#. XMQA
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3154490\n"
-"45\n"
-"help.text"
-msgid "statements"
-msgstr ""
-
-#. 5coq
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3153159\n"
-"46\n"
-"help.text"
-msgid "Loop..."
-msgstr ""
-
-#. m9Br
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"hd_id3147396\n"
-"47\n"
-"help.text"
-msgid "Example"
-msgstr ""
-
-#. !\Fi
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"tit\n"
-"help.text"
-msgid "Oct Function [Runtime]"
-msgstr ""
-
-#. mjyo
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"bm_id3155420\n"
-"help.text"
-msgid "<bookmark_value>Oct function</bookmark_value>"
-msgstr ""
-
-#. A~X1
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"hd_id3155420\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080802.xhp\" name=\"Oct Function [Runtime]\">Oct Function [Runtime]</link>"
-msgstr ""
-
-#. K\qP
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"par_id3154924\n"
-"2\n"
-"help.text"
-msgid "Returns the octal value of a number."
-msgstr ""
-
-#. lz4$
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"hd_id3148947\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. RI|m
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"par_id3150543\n"
-"4\n"
-"help.text"
-msgid "Oct (Number)"
-msgstr ""
-
-#. =2eN
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"hd_id3153360\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#. bm]m
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"par_id3154138\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr ""
-
-#. 93{R
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"hd_id3156422\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. B2SA
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"par_id3150768\n"
-"8\n"
-"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to convert to an octal value."
-msgstr ""
-
-#. qh[G
-#: 03080802.xhp
-msgctxt ""
-"03080802.xhp\n"
-"hd_id3148672\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. `u63
-#: 03080400.xhp
-msgctxt ""
-"03080400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Square Root Calculation"
-msgstr ""
-
-#. }c;b
-#: 03080400.xhp
-msgctxt ""
-"03080400.xhp\n"
-"hd_id3148946\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080400.xhp\" name=\"Square Root Calculation\">Square Root Calculation</link>"
-msgstr ""
-
-#. 7kF7
-#: 03080400.xhp
-msgctxt ""
-"03080400.xhp\n"
-"par_id3159414\n"
-"2\n"
-"help.text"
-msgid "Use this function to calculate square roots."
-msgstr ""
-
-#. S+*4
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"tit\n"
-"help.text"
-msgid "CDateFromIso Function [Runtime]"
-msgstr ""
-
-#. in.X
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"bm_id3153127\n"
-"help.text"
-msgid "<bookmark_value>CdateFromIso function</bookmark_value>"
-msgstr ""
-
-#. }DV7
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"hd_id3153127\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030108.xhp\" name=\"CDateFromIso Function [Runtime]\">CDateFromIso Function [Runtime]</link>"
-msgstr ""
-
-#. -?%r
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"par_id3148550\n"
-"2\n"
-"help.text"
-msgid "Returns the internal date number from a string that contains a date in ISO format."
-msgstr ""
-
-#. !IH*
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"hd_id3148947\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. E3il
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"par_id3150400\n"
-"4\n"
-"help.text"
-msgid "CDateFromIso(String)"
-msgstr ""
-
-#. [8nn
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"hd_id3154367\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#. _`..
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"par_id3156212\n"
-"6\n"
-"help.text"
-msgid "Internal date number"
-msgstr ""
-
-#. F`a0
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"hd_id3125864\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. n6B$
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"par_id3154685\n"
-"8\n"
-"help.text"
-msgid "<emph>String:</emph> A string that contains a date in ISO format. The year may have two or four digits."
-msgstr ""
-
-#. Y,bJ
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"hd_id3150439\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. GHP4
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"par_id3147318\n"
-"10\n"
-"help.text"
-msgid "dateval = CDateFromIso(\"20021231\")"
-msgstr ""
-
-#. dT5[
-#: 03030108.xhp
-msgctxt ""
-"03030108.xhp\n"
-"par_id3146921\n"
-"11\n"
-"help.text"
-msgid "returns 12/31/2002 in the date format of your system"
-msgstr ""
-
-#. [N0}
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"tit\n"
-"help.text"
-msgid "CCur Function [Runtime]"
-msgstr ""
-
-#. /8-(
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"bm_id8926053\n"
-"help.text"
-msgid "<bookmark_value>CCur function</bookmark_value>"
-msgstr ""
-
-#. z8m-
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN10541\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03100050.xhp\">CCur Function [Runtime]</link>"
-msgstr ""
-
-#. 0E|k
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN10545\n"
-"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 ""
-
-#. A::U
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN10548\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. CP?2
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105E8\n"
-"help.text"
-msgid "CCur(Expression)"
-msgstr ""
-
-#. (K]+
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105EB\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#. :]F|
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105EF\n"
-"help.text"
-msgid "Currency"
-msgstr ""
-
-#. ^wEW
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105F2\n"
-"help.text"
-msgid "Parameter:"
-msgstr ""
-
-#. gnWA
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105F6\n"
-"help.text"
-msgid "Expression: Any string or numeric expression that you want to convert."
-msgstr ""
-
-#. TfF6
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"tit\n"
-"help.text"
-msgid "Tan Function [Runtime]"
-msgstr ""
-
-#. [S:-
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"bm_id3148550\n"
-"help.text"
-msgid "<bookmark_value>Tan function</bookmark_value>"
-msgstr ""
-
-#. /r#Z
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3148550\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080104.xhp\" name=\"Tan Function [Runtime]\">Tan Function [Runtime]</link>"
-msgstr ""
-
-#. }l.o
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3148663\n"
-"2\n"
-"help.text"
-msgid "Determines the tangent of an angle. The angle is specified in radians."
-msgstr ""
-
-#. m7{0
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3153379\n"
-"3\n"
-"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 ""
-
-#. WssQ
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3154366\n"
-"4\n"
-"help.text"
-msgid "Tan(Alpha) = side opposite the angle/side adjacent to angle"
-msgstr ""
-
-#. %mi1
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3145174\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 95\G
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3151042\n"
-"6\n"
-"help.text"
-msgid "Tan (Number)"
-msgstr ""
-
-#. ?1w`
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3156214\n"
-"7\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#. oh-c
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3156281\n"
-"8\n"
-"help.text"
-msgid "Double"
-msgstr ""
-
-#. ~Uw3
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3155132\n"
-"9\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. 1x[M
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3145786\n"
-"10\n"
-"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the tangent for (in radians)."
-msgstr ""
-
-#. K9hI
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3153728\n"
-"11\n"
-"help.text"
-msgid "To convert degrees to radians, multiply by Pi/180. To convert radians to degrees, multiply by 180/Pi."
-msgstr ""
-
-#. N69$
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3155414\n"
-"12\n"
-"help.text"
-msgid "degrees=(radiant*180)/Pi"
-msgstr ""
-
-#. [Fi%
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3146975\n"
-"13\n"
-"help.text"
-msgid "radiant=(degrees*Pi)/180"
-msgstr ""
-
-#. JKbQ
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3147434\n"
-"14\n"
-"help.text"
-msgid "Pi is approximately 3.141593."
-msgstr ""
-
-#. 7d_A
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"hd_id3149483\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 5bIL
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3148646\n"
-"16\n"
-"help.text"
-msgid "' In this example, the following entry is possible for a right-angled triangle:"
-msgstr ""
-
-#. $[De
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3150012\n"
-"17\n"
-"help.text"
-msgid "' The side opposite the angle and the angle (in degrees) to calculate the length of the side adjacent to the angle:"
-msgstr ""
-
-#. ]^13
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3153158\n"
-"19\n"
-"help.text"
-msgid "' Pi = 3.1415926 is a pre-defined variable"
-msgstr ""
-
-#. 6o]0
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3145252\n"
-"22\n"
-"help.text"
-msgid "d1 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"opposite\")"
-msgstr ""
-
-#. *8,+
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3149582\n"
-"23\n"
-"help.text"
-msgid "dAlpha = InputBox$ (\"Enter the Alpha angle (in degrees): \",\"Alpha\")"
-msgstr ""
-
-#. `Q;/
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3154016\n"
-"24\n"
-"help.text"
-msgid "Print \"the length of the side adjacent the angle is\"; (d1 / tan (dAlpha * Pi / 180))"
-msgstr ""
-
-#. gcZ]
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"tit\n"
-"help.text"
-msgid "CDate Function [Runtime]"
-msgstr ""
-
-#. }Zs(
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"bm_id3150772\n"
-"help.text"
-msgid "<bookmark_value>CDate function</bookmark_value>"
-msgstr ""
-
-#. {s,C
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"hd_id3150772\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate Function [Runtime]\">CDate Function [Runtime]</link>"
-msgstr ""
-
-#. x7R4
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"par_id3150986\n"
-"2\n"
-"help.text"
-msgid "Converts any string or numeric expression to a date value."
-msgstr ""
-
-#. n(:O
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"hd_id3148944\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. JW1h
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"par_id3148947\n"
-"4\n"
-"help.text"
-msgid "CDate (Expression)"
-msgstr ""
-
-#. O?Gd
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"hd_id3148552\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#. Jt+q
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"par_id3159414\n"
-"6\n"
-"help.text"
-msgid "Date"
-msgstr ""
-
-#. [k.3
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"hd_id3153525\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. DQkH
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"par_id3150359\n"
-"8\n"
-"help.text"
-msgid "<emph>Expression:</emph> Any string or numeric expression that you want to convert."
-msgstr ""
-
-#. Wb)j
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"par_id3125864\n"
-"9\n"
-"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 ""
-
-#. Z`fK
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"hd_id3156422\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. ~3|D
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Events"
-msgstr ""
-
-#. Ux5S
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3155506\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Events\">Events</link>"
-msgstr ""
-
-#. I?cC
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3146114\n"
-"2\n"
-"help.text"
-msgid "Define event assignments for the selected control or dialog. The available events depend on the type of control selected."
-msgstr ""
-
-#. 8IQ=
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3145387\n"
-"16\n"
-"help.text"
-msgid "When receiving focus"
-msgstr ""
-
-#. E2Wp
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3155090\n"
-"17\n"
-"help.text"
-msgid "<ahelp hid=\"HID_EVT_FOCUSGAINED\">This event takes place if a control receives the focus.</ahelp>"
-msgstr ""
-
-#. IJ5a
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3152892\n"
-"18\n"
-"help.text"
-msgid "When losing focus"
-msgstr ""
-
-#. [y0i
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3153305\n"
-"19\n"
-"help.text"
-msgid "<ahelp hid=\"HID_EVT_FOCUSLOST\">This event takes place if a control loses the focus.</ahelp>"
-msgstr ""
-
-#. F5-`
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3152896\n"
-"20\n"
-"help.text"
-msgid "Key pressed"
-msgstr ""
-
-#. btkI
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3148837\n"
-"21\n"
-"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 ""
-
-#. 0@=f
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3146869\n"
-"43\n"
-"help.text"
-msgid "Key released"
-msgstr ""
-
-#. Dl4B
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3155267\n"
-"44\n"
-"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 ""
-
-#. iIXD
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3159096\n"
-"41\n"
-"help.text"
-msgid "Modified"
-msgstr ""
-
-#. H}L]
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3156019\n"
-"42\n"
-"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 ""
-
-#. gI$B
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3144508\n"
-"10\n"
-"help.text"
-msgid "Text modified"
-msgstr ""
-
-#. s#6o
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3148608\n"
-"11\n"
-"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 ""
-
-#. IQ7U
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3159207\n"
-"8\n"
-"help.text"
-msgid "Item status changed"
-msgstr ""
-
-#. |y?q
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3155097\n"
-"9\n"
-"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 ""
-
-#. G%=4
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3151304\n"
-"26\n"
-"help.text"
-msgid "Mouse inside"
-msgstr ""
-
-#. @(2r
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3152871\n"
-"27\n"
-"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEENTERED\">This event takes place when the mouse enters the control.</ahelp>"
-msgstr ""
-
-#. n08F
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3146778\n"
-"30\n"
-"help.text"
-msgid "Mouse moved while key pressed"
-msgstr ""
-
-#. w@z.
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3150403\n"
-"31\n"
-"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEDRAGGED\">This event takes place when the mouse is dragged while a key is pressed.</ahelp>"
-msgstr ""
-
-#. LZkk
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3150210\n"
-"32\n"
-"help.text"
-msgid "Mouse moved"
-msgstr ""
-
-#. ~{aF
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3149697\n"
-"33\n"
-"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEMOVED\">This event takes place when the mouse moves over the control.</ahelp>"
-msgstr ""
-
-#. ^-)l
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3145216\n"
-"22\n"
-"help.text"
-msgid "Mouse button pressed"
-msgstr ""
-
-#. ymJi
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3155914\n"
-"23\n"
-"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 ""
-
-#. zyg$
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3148899\n"
-"24\n"
-"help.text"
-msgid "Mouse button released"
-msgstr ""
-
-#. fHfa
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3153812\n"
-"25\n"
-"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 ""
-
-#. uaC/
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3153556\n"
-"28\n"
-"help.text"
-msgid "Mouse outside"
-msgstr ""
-
-#. S_i.
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3153013\n"
-"29\n"
-"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when the mouse leaves the control.</ahelp>"
-msgstr ""
-
-#. lReL
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3155759\n"
-"45\n"
-"help.text"
-msgid "While adjusting"
-msgstr ""
-
-#. |b/v
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"par_id3156364\n"
-"46\n"
-"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when a scrollbar is being dragged.</ahelp>"
-msgstr ""
-
-#. :Hll
-#: 01050200.xhp
-msgctxt ""
-"01050200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Call Stack Window (Calls)"
-msgstr ""
-
-#. edOd
-#: 01050200.xhp
-msgctxt ""
-"01050200.xhp\n"
-"hd_id3146794\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01050200.xhp\" name=\"Call Stack Window (Calls)\">Call Stack Window (Calls)</link>"
-msgstr ""
-
-#. j2`X
-#: 01050200.xhp
-msgctxt ""
-"01050200.xhp\n"
-"par_id3150400\n"
-"2\n"
-"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 ""
-
-#. C5SF
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"tit\n"
-"help.text"
-msgid "TwipsPerPixelY Function [Runtime]"
-msgstr ""
-
-#. qWke
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"bm_id3150040\n"
-"help.text"
-msgid "<bookmark_value>TwipsPerPixelY function</bookmark_value>"
-msgstr ""
-
-#. [w*P
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"hd_id3150040\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03131400.xhp\" name=\"TwipsPerPixelY Function [Runtime]\">TwipsPerPixelY Function [Runtime]</link>"
-msgstr ""
-
-#. h{;+
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"par_id3154186\n"
-"2\n"
-"help.text"
-msgid "Returns the number of twips that represent the height of a pixel."
-msgstr ""
-
-#. bZ,I
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"hd_id3145090\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. @6C%
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"par_id3153681\n"
-"4\n"
-"help.text"
-msgid "n = TwipsPerPixelY"
-msgstr ""
-
-#. jXDd
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"hd_id3148473\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#. MU~A
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"par_id3154306\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr ""
-
-#. :!j*
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"hd_id3149235\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. sM03
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"par_id3154142\n"
-"9\n"
-"help.text"
-msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
-msgstr ""
-
-#. $f[{
-#: 03120100.xhp
-msgctxt ""
-"03120100.xhp\n"
-"tit\n"
-"help.text"
-msgid "ASCII/ANSI Conversion in Strings"
-msgstr ""
-
-#. 8U+W
-#: 03120100.xhp
-msgctxt ""
-"03120100.xhp\n"
-"hd_id3147443\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120100.xhp\" name=\"ASCII/ANSI Conversion in Strings\">ASCII/ANSI Conversion in Strings</link>"
-msgstr ""
-
-#. 6%oo
-#: 03120100.xhp
-msgctxt ""
-"03120100.xhp\n"
-"par_id3159201\n"
-"2\n"
-"help.text"
-msgid "The following functions convert strings to and from ASCII or ANSI code."
-msgstr ""
-
-#. bJmh
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"tit\n"
-"help.text"
-msgid "With Statement [Runtime]"
-msgstr ""
-
-#. ,Z,]
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"bm_id3153311\n"
-"help.text"
-msgid "<bookmark_value>With statement</bookmark_value>"
-msgstr ""
-
-#. Sm9q
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"hd_id3153311\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement [Runtime]\">With Statement [Runtime]</link>"
-msgstr ""
-
-#. KEC+
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"par_id3159158\n"
-"2\n"
-"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 ""
-
-#. N)0;
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"hd_id3156153\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 5#@T
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"par_id3145609\n"
-"4\n"
-"help.text"
-msgid "With Object Statement block End With"
-msgstr ""
-
-#. [Was
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"hd_id3154924\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. uqI:
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"par_id3147560\n"
-"6\n"
-"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr ""
-
-#. !hRV
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"tit\n"
-"help.text"
-msgid "DatePart Function [Runtime]"
-msgstr ""
-
-#. 1P:_
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"bm_id249946\n"
-"help.text"
-msgid "<bookmark_value>DatePart function</bookmark_value>"
-msgstr ""
-
-#. !yPV
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN10542\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030130.xhp\">DatePart Function [Runtime]</link>"
-msgstr ""
-
-#. 4Ls0
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN10546\n"
-"help.text"
-msgid "The DatePart function returns a specified part of a date."
-msgstr ""
-
-#. /)oc
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN10549\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. l{?W
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN105E8\n"
-"help.text"
-msgid "DatePart (Add, Date [, Week_start [, Year_start]])"
-msgstr ""
-
-#. %#$1
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN105EB\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#. Yb[S
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN105EF\n"
-"help.text"
-msgid "A Variant containing a date."
-msgstr ""
-
-#. b:?M
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN105F2\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. $LDQ
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN105F6\n"
-"help.text"
-msgid "<emph>Add</emph> - A string expression from the following table, specifying the date interval."
-msgstr ""
-
-#. DL=1
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN10604\n"
-"help.text"
-msgid "<emph>Date</emph> - The date from which the result is calculated."
-msgstr ""
-
-#. NiG(
-#: 03030130.xhp
-msgctxt ""
-"03030130.xhp\n"
-"par_idN10611\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. j35K
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefSng Statement [Runtime]"
-msgstr ""
-
-#. `I:S
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"bm_id2445142\n"
-"help.text"
-msgid "<bookmark_value>DefSng statement</bookmark_value>"
-msgstr ""
-
-#. aQb3
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN10577\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03101130.xhp\">DefSng Statement [Runtime]</link>"
-msgstr ""
-
-#. _sNL
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN10587\n"
-"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 ""
-
-#. uYgM
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN1058A\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. `k8]
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN1058E\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr ""
-
-#. _2E+
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN10591\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. 0s.8
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN10595\n"
-"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
-msgstr ""
-
-#. !%A8
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN1059C\n"
-"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr ""
-
-#. =.wI
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN105A3\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr ""
-
-#. `O\:
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN105AA\n"
-"help.text"
-msgid "<emph>DefSng:</emph> Single"
-msgstr ""
-
-#. Bq~%
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN105B1\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. Cr3[
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN105B5\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr ""
-
-#. [\`7
-#: 03101130.xhp
-msgctxt ""
-"03101130.xhp\n"
-"par_idN105D3\n"
-"help.text"
-msgid "sSng=Single ' sSng is an implicit single variable"
-msgstr ""
-
-#. HBzx
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"tit\n"
-"help.text"
-msgid "LTrim Function [Runtime]"
-msgstr ""
-
-#. zrj8
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"bm_id3147574\n"
-"help.text"
-msgid "<bookmark_value>LTrim function</bookmark_value>"
-msgstr ""
-
-#. I);E
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"hd_id3147574\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function [Runtime]\">LTrim Function [Runtime]</link>"
-msgstr ""
-
-#. vYor
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"par_id3145316\n"
-"2\n"
-"help.text"
-msgid "Removes all leading spaces at the start of a string expression."
-msgstr ""
-
-#. E=YQ
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"hd_id3154924\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. +|8Z
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"par_id3148552\n"
-"4\n"
-"help.text"
-msgid "LTrim (Text As String)"
-msgstr ""
-
-#. ;Ze4
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"hd_id3156344\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#. Nx^I
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"par_id3151056\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr ""
-
-#. [RQQ
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"hd_id3150543\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. yBn[
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"par_id3150792\n"
-"8\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string expression."
-msgstr ""
-
-#. #/P/
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"par_id3125863\n"
-"9\n"
-"help.text"
-msgid "Use this function to remove spaces at the beginning of a string expression."
-msgstr ""
-
-#. 6dZt
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"hd_id3145419\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. fZPT
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Print Statement [Runtime]"
-msgstr ""
-
-#. )qPs
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"bm_id3147230\n"
-"help.text"
-msgid "<bookmark_value>Print statement</bookmark_value>"
-msgstr ""
-
-#. UcmK
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"hd_id3147230\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03010103.xhp\" name=\"Print Statement [Runtime]\">Print Statement [Runtime]</link>"
-msgstr ""
-
-#. tT5t
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"par_id3156281\n"
-"2\n"
-"help.text"
-msgid "Outputs the specified strings or numeric expressions to a dialog or to a file."
-msgstr ""
-
-#. 1hZ.
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"hd_id3145785\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. ,0Np
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"par_id3153188\n"
-"4\n"
-"help.text"
-msgid "Print [#FileName,] Expression1[{;|,} [Spc(Number As Integer);] [Tab(pos As Integer);] [Expression2[...]]"
-msgstr ""
-
-#. bM9_
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"hd_id3147348\n"
-"5\n"
-"help.text"
-msgid "Parameter:"
-msgstr ""
-
-#. E?%J
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"par_id2508621\n"
-"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 ""
-
-#. @|3H
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"par_id3163712\n"
-"6\n"
-"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 ""
-
-#. DS.p
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"par_id3153092\n"
-"7\n"
-"help.text"
-msgid "<emph>Number</emph>: Number of spaces to be inserted by the <emph>Spc</emph> function."
-msgstr ""
-
-#. F-+^
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"par_id3145364\n"
-"8\n"
-"help.text"
-msgid "<emph>Pos</emph>: Spaces are inserted until the specified position."
-msgstr ""
-
-#. Z5LL
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"par_id3154319\n"
-"9\n"
-"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 ""
-
-#. 4b(G
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"par_id3145272\n"
-"10\n"
-"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 ""
-
-#. ?sPd
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"par_id3154011\n"
-"11\n"
-"help.text"
-msgid "If the expression to be printed exceeds a certain length, the display will automatically wrap to the next line."
-msgstr ""
-
-#. l|{~
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"par_id3146969\n"
-"12\n"
-"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 ""
-
-#. kCI%
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"hd_id3146912\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. Q[;^
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Control and Dialog Properties"
-msgstr ""
-
-#. ]#S@
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"bm_id3153379\n"
-"help.text"
-msgid "<bookmark_value>controls; properties</bookmark_value><bookmark_value>properties; controls and dialogs</bookmark_value><bookmark_value>dialogs; properties</bookmark_value>"
-msgstr ""
-
-#. l=7M
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"hd_id3153379\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01170100.xhp\" name=\"Control and Dialog Properties\">Control and Dialog Properties</link>"
-msgstr ""
-
-#. $ABS
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3156280\n"
-"2\n"
-"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 ""
-
-#. Umir
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"hd_id3151043\n"
-"20\n"
-"help.text"
-msgid "Entering Data in the Properties Dialog"
-msgstr ""
-
-#. |Txh
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3153771\n"
-"3\n"
-"help.text"
-msgid "The following key combinations apply to enter data in multiline fields or combo boxes of the <emph>Properties</emph> dialog:"
-msgstr ""
-
-#. S\Qj
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3150010\n"
-"18\n"
-"help.text"
-msgid "Keys"
-msgstr ""
-
-#. D`[n
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3147317\n"
-"19\n"
-"help.text"
-msgid "Effects"
-msgstr ""
-
-#. VN5[
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3146121\n"
-"4\n"
-"help.text"
-msgid "Alt+Down Arrow"
-msgstr ""
-
-#. fEOJ
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3149581\n"
-"5\n"
-"help.text"
-msgid "Opens a combo box"
-msgstr ""
-
-#. Cb`/
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3147394\n"
-"6\n"
-"help.text"
-msgid "Alt+Up Arrow"
-msgstr ""
-
-#. K}L}
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3148455\n"
-"7\n"
-"help.text"
-msgid "Closes a combo box"
-msgstr ""
-
-#. +Uv9
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3154511\n"
-"8\n"
-"help.text"
-msgid "Shift+Enter"
-msgstr ""
-
-#. *0oQ
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3146971\n"
-"9\n"
-"help.text"
-msgid "Inserts a line break in multiline fields."
-msgstr ""
-
-#. W-6i
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3146914\n"
-"10\n"
-"help.text"
-msgid "(UpArrow)"
-msgstr ""
-
-#. Hv1-
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3153714\n"
-"11\n"
-"help.text"
-msgid "Goes to the previous line."
-msgstr ""
-
-#. SLl7
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3159266\n"
-"12\n"
-"help.text"
-msgid "(DownArrow)"
-msgstr ""
-
-#. spSZ
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3146314\n"
-"13\n"
-"help.text"
-msgid "Goes to the next line."
-msgstr ""
-
-#. cbH!
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3149255\n"
-"14\n"
-"help.text"
-msgid "Enter"
-msgstr ""
-
-#. iQ|)
-#: 01170100.xhp
-msgctxt ""
-"01170100.xhp\n"
-"par_id3149566\n"
-"15\n"
-"help.text"
-msgid "Applies the changes made to a field and places the cursor into the next field."
-msgstr ""
-
-#. (n`h
-#: 03080100.xhp
-msgctxt ""
-"03080100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Trigonometric Functions"
-msgstr ""
-
-#. BkZp
-#: 03080100.xhp
-msgctxt ""
-"03080100.xhp\n"
-"hd_id3159201\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"Trigonometric Functions\">Trigonometric Functions</link>"
-msgstr ""
-
-#. MU,7
-#: 03080100.xhp
-msgctxt ""
-"03080100.xhp\n"
-"par_id3149180\n"
-"2\n"
-"help.text"
-msgid "The following are the trigonometric functions that are supported in $[officename] Basic."
-msgstr ""
-
-#. ^ei1
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"tit\n"
-"help.text"
-msgid "CVErr Function [Runtime]"
-msgstr ""
-
-#. dCVe
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"bm_id531022\n"
-"help.text"
-msgid "<bookmark_value>CVErr function</bookmark_value>"
-msgstr ""
-
-#. =_Mc
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN1054B\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03100080.xhp\">CVErr Function [Runtime]</link>"
-msgstr ""
-
-#. +8`V
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN1055B\n"
-"help.text"
-msgid "Converts a string expression or numeric expression to a variant expression of the sub type \"Error\"."
-msgstr ""
-
-#. TN3\
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN1055E\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. ?[2V
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN10562\n"
-"help.text"
-msgid "CVErr(Expression)"
-msgstr ""
-
-#. 6j/J
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN10565\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#. R%IE
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN10569\n"
-"help.text"
-msgid "Variant."
-msgstr ""
-
-#. ?v+)
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN1056C\n"
-"help.text"
-msgid "Parameter:"
-msgstr ""
-
-#. )W!L
-#: 03100080.xhp
-msgctxt ""
-"03100080.xhp\n"
-"par_idN10570\n"
-"help.text"
-msgid "Expression: Any string or numeric expression that you want to convert."
-msgstr ""
-
-#. WSFa
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"tit\n"
-"help.text"
-msgid "Fix Function [Runtime]"
-msgstr ""
-
-#. l$91
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"bm_id3159201\n"
-"help.text"
-msgid "<bookmark_value>Fix function</bookmark_value>"
-msgstr ""
-
-#. !$(P
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"hd_id3159201\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Fix Function [Runtime]\">Fix Function [Runtime]</link>"
-msgstr ""
-
-#. xJt-
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"par_id3149346\n"
-"2\n"
-"help.text"
-msgid "Returns the integer value of a numeric expression by removing the fractional part of the number."
-msgstr ""
-
-#. irMA
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"hd_id3155419\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 8#o#
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"par_id3156152\n"
-"4\n"
-"help.text"
-msgid "Fix (Expression)"
-msgstr ""
-
-#. $(|D
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"hd_id3154923\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#. jT:=
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"par_id3148947\n"
-"6\n"
-"help.text"
-msgid "Double"
-msgstr ""
-
-#. Wqkp
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"hd_id3154760\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. x(eQ
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"par_id3149457\n"
-"8\n"
-"help.text"
-msgid "<emph>Expression:</emph> Numeric expression that you want to return the integer value for."
-msgstr ""
-
-#. e^=*
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"hd_id3150447\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. lYf=
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"par_id3156214\n"
-"11\n"
-"help.text"
-msgid "Print Fix(3.14159) ' returns 3."
-msgstr ""
-
-#. ;Rx(
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"par_id3154217\n"
-"12\n"
-"help.text"
-msgid "Print Fix(0) ' returns 0."
-msgstr ""
-
-#. u26{
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"par_id3145786\n"
-"13\n"
-"help.text"
-msgid "Print Fix(-3.14159) ' returns -3."
-msgstr ""
-
-#. YTKq
-#: 03090300.xhp
-msgctxt ""
-"03090300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Jumps"
-msgstr ""
-
-#. Rv8O
-#: 03090300.xhp
-msgctxt ""
-"03090300.xhp\n"
-"hd_id3151262\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Jumps\">Jumps</link>"
-msgstr ""
-
-#. R#RU
-#: 03090300.xhp
-msgctxt ""
-"03090300.xhp\n"
-"par_id3148983\n"
-"2\n"
-"help.text"
-msgid "The following statements execute jumps."
-msgstr ""
-
-#. n;)I
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateUnoStruct Function [Runtime]"
-msgstr ""
-
-#. 502o
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"bm_id3150499\n"
-"help.text"
-msgid "<bookmark_value>CreateUnoStruct function</bookmark_value>"
-msgstr ""
-
-#. a.bH
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"hd_id3150499\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"CreateUnoStruct Function [Runtime]\">CreateUnoStruct Function [Runtime]</link>"
-msgstr ""
-
-#. (C@o
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"par_id3150713\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Creates an instance of a Uno structure type.</ahelp>"
-msgstr ""
-
-#. ZwlF
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"par_id3147226\n"
-"3\n"
-"help.text"
-msgid "Use the following structure for your statement:"
-msgstr ""
-
-#. h\7!
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"par_id3149177\n"
-"4\n"
-"help.text"
-msgid "Dim oStruct as new com.sun.star.beans.Property"
-msgstr ""
-
-#. z1(L
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"hd_id3156153\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. 9E`I
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"par_id3155341\n"
-"6\n"
-"help.text"
-msgid "oStruct = CreateUnoStruct( Uno type name )"
-msgstr ""
-
-#. ]woP
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"hd_id3145316\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. qQvA
-#: 03131500.xhp
-msgctxt ""
-"03131500.xhp\n"
-"par_id3149762\n"
-"8\n"
-"help.text"
-msgid "oStruct = CreateUnoStruct( \"com.sun.star.beans.Property\" )"
-msgstr ""
-
-#. i=dC
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"tit\n"
-"help.text"
-msgid "Time Statement [Runtime]"
-msgstr ""
-
-#. x*lu
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"bm_id3145090\n"
-"help.text"
-msgid "<bookmark_value>Time statement</bookmark_value>"
-msgstr ""
-
-#. g}(P
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"hd_id3145090\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030302.xhp\">Time Statement [Runtime]</link>"
-msgstr ""
-
-#. Jak/
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"par_id3150984\n"
-"2\n"
-"help.text"
-msgid "This function returns the current system time as a string in the format \"HH:MM:SS\"."
-msgstr ""
-
-#. a@V8
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"hd_id3154346\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. s2`n
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"par_id3149670\n"
-"4\n"
-"help.text"
-msgid "Time"
-msgstr ""
-
-#. J,)]
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"hd_id3150792\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. b@LT
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"par_id3149656\n"
-"6\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the new time in the format \"HH:MM:SS\"."
-msgstr ""
-
-#. @)s_
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"hd_id3145173\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 7Cq.
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"par_id3150870\n"
-"9\n"
-"help.text"
-msgid "MsgBox Time,0,\"The time is\""
-msgstr ""
-
-#. ]$C(
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateUnoDialog Function [Runtime]"
-msgstr ""
-
-#. 3*oC
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"bm_id3150040\n"
-"help.text"
-msgid "<bookmark_value>CreateUnoDialog function</bookmark_value>"
-msgstr ""
-
-#. g`ed
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"hd_id3150040\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"CreateUnoDialog Function [Runtime]\">CreateUnoDialog Function [Runtime]</link>"
-msgstr ""
-
-#. F7Zw
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3154186\n"
-"2\n"
-"help.text"
-msgid "Creates a Basic Uno object that represents a Uno dialog control during Basic runtime."
-msgstr ""
-
-#. Ykf@
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3153750\n"
-"3\n"
-"help.text"
-msgid "Dialogs are defined in the dialog libraries. To display a dialog, a \"live\" dialog must be created from the library."
-msgstr ""
-
-#. y5qZ
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3153681\n"
-"4\n"
-"help.text"
-msgid "See <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
-msgstr ""
-
-#. [K\b
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"hd_id3154286\n"
-"5\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. PLCm
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3159176\n"
-"6\n"
-"help.text"
-msgid "CreateUnoDialog( oDlgDesc )"
-msgstr ""
-
-#. X4@g
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"hd_id3143270\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. hac8
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3159157\n"
-"8\n"
-"help.text"
-msgid "' Get dialog description from the dialog library"
-msgstr ""
-
-#. vCm@
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3149234\n"
-"9\n"
-"help.text"
-msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
-msgstr ""
-
-#. r3pC
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3154923\n"
-"10\n"
-"help.text"
-msgid "' generate \"live\" dialog"
-msgstr ""
-
-#. .TL0
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3149670\n"
-"11\n"
-"help.text"
-msgid "oDlgControl = CreateUnoDialog( oDlgDesc )"
-msgstr ""
-
-#. @EM$
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3148550\n"
-"12\n"
-"help.text"
-msgid "' display \"live\" dialog"
-msgstr ""
-
-#. J$1J
-#: 03131800.xhp
-msgctxt ""
-"03131800.xhp\n"
-"par_id3154072\n"
-"13\n"
-"help.text"
-msgid "oDlgControl.execute"
-msgstr ""
-
-#. ZVi@
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsEmpty Function [Runtime]"
-msgstr ""
-
-#. pqV.
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"bm_id3153394\n"
-"help.text"
-msgid "<bookmark_value>IsEmpty function</bookmark_value>"
-msgstr ""
-
-#. b:re
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"hd_id3153394\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03102400.xhp\" name=\"IsEmpty Function [Runtime]\">IsEmpty Function [Runtime]</link>"
-msgstr ""
-
-#. qydL
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"par_id3163045\n"
-"2\n"
-"help.text"
-msgid "Tests if a Variant variable contains the Empty value. The Empty value indicates that the variable is not initialized."
-msgstr ""
-
-#. }mrZ
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"hd_id3159158\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. x*F2
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"par_id3153126\n"
-"4\n"
-"help.text"
-msgid "IsEmpty (Var)"
-msgstr ""
-
-#. w}(z
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"hd_id3148685\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#. r])T
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"par_id3156344\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr ""
-
-#. SphW
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"hd_id3148947\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. ,us0
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"par_id3154347\n"
-"8\n"
-"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 ""
-
-#. Fucq
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"hd_id3154138\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. 75.3
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"par_id3154863\n"
-"13\n"
-"help.text"
-msgid "Print IsEmpty(sVar) ' Returns True"
-msgstr ""
-
-#. }+5~
-#: 03030200.xhp
-msgctxt ""
-"03030200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Converting Time Values"
-msgstr ""
-
-#. XGNX
-#: 03030200.xhp
-msgctxt ""
-"03030200.xhp\n"
-"hd_id3147226\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"Converting Time Values\">Converting Time Values</link>"
-msgstr ""
-
-#. a]fQ
-#: 03030200.xhp
-msgctxt ""
-"03030200.xhp\n"
-"par_id3149415\n"
-"2\n"
-"help.text"
-msgid "The following functions convert time values to calculable numbers."
-msgstr ""
-
-#. lJ[z
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"tit\n"
-"help.text"
-msgid "CLng Function [Runtime]"
-msgstr ""
-
-#. Oyf~
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"bm_id3153311\n"
-"help.text"
-msgid "<bookmark_value>CLng function</bookmark_value>"
-msgstr ""
-
-#. R6CJ
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"hd_id3153311\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03100600.xhp\" name=\"CLng Function [Runtime]\">CLng Function [Runtime]</link>"
-msgstr ""
-
-#. nVOl
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"par_id3148686\n"
-"2\n"
-"help.text"
-msgid "Converts any string or numeric expression to a long integer."
-msgstr ""
-
-#. .*c}
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"hd_id3145315\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. qL-M
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"par_id3147573\n"
-"4\n"
-"help.text"
-msgid "CLng (Expression)"
-msgstr ""
-
-#. ffak
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"hd_id3145610\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
-#. ;d)Q
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"par_id3153897\n"
-"6\n"
-"help.text"
-msgid "Long"
-msgstr ""
-
-#. =1Th
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"hd_id3154760\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#. IOqN
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"par_id3159414\n"
-"8\n"
-"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 ""
-
-#. HVfa
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"par_id3150358\n"
-"9\n"
-"help.text"
-msgid "This function always rounds the fractional part of a number to the nearest integer."
-msgstr ""
-
-#. tiiv
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"hd_id3154216\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. RtH#
-#: main0211.xhp
-msgctxt ""
-"main0211.xhp\n"
-"tit\n"
-"help.text"
-msgid "Macro Toolbar"
-msgstr ""
-
-#. XjG*
-#: main0211.xhp
-msgctxt ""
-"main0211.xhp\n"
-"bm_id3150543\n"
-"help.text"
-msgid "<bookmark_value>toolbars; Basic IDE</bookmark_value><bookmark_value>macro toolbar</bookmark_value>"
-msgstr ""
-
-#. VE@V
-#: main0211.xhp
-msgctxt ""
-"main0211.xhp\n"
-"hd_id3150543\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\">Macro Toolbar</link>"
-msgstr ""
-
-#. B\IC
-#: main0211.xhp
-msgctxt ""
-"main0211.xhp\n"
-"par_id3147288\n"
-"2\n"
-"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".uno:MacroBarVisible\">The <emph>Macro Toolbar </emph>contains commands to create, edit, and run macros.</ahelp>"
-msgstr ""
-
-#. ~lN^
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"tit\n"
-"help.text"
-msgid "\"-\" Operator [Runtime]"
-msgstr ""
-
-#. cM=j
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"bm_id3156042\n"
-"help.text"
-msgid "<bookmark_value>\"-\" operator (mathematical)</bookmark_value>"
-msgstr ""
-
-#. a.B$
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"hd_id3156042\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03070100.xhp\">\"-\" Operator [Runtime]</link>"
-msgstr ""
-
-#. k\GP
-#: 03070100.xhp
-msgctxt ""
-"03070100.xhp\n"
-"par_id3153345\n"
-"2\n"
-"help.text"